Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 0 additions & 8 deletions .changeset/fix-link-resolution-unicode-and-anchors.md

This file was deleted.

7 changes: 0 additions & 7 deletions .changeset/fix-property-value-filter.md

This file was deleted.

2 changes: 2 additions & 0 deletions packages/base-ast/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
# @aliou/obsdx-base-ast

## 0.1.1

## 0.1.0

### Minor Changes
Expand Down
2 changes: 1 addition & 1 deletion packages/base-ast/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@aliou/obsdx-base-ast",
"version": "0.1.0",
"version": "0.1.1",
"description": "Obsidian Base syntax parsing for obsdx",
"license": "MIT",
"type": "module",
Expand Down
6 changes: 6 additions & 0 deletions packages/base-engine/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
# @aliou/obsdx-base-engine

## 0.1.1

### Patch Changes

- @aliou/obsdx-base-ast@0.1.1

## 0.1.0

### Minor Changes
Expand Down
2 changes: 1 addition & 1 deletion packages/base-engine/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@aliou/obsdx-base-engine",
"version": "0.1.0",
"version": "0.1.1",
"description": "Obsidian Base query execution for obsdx",
"license": "MIT",
"type": "module",
Expand Down
18 changes: 18 additions & 0 deletions packages/cli/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
# @aliou/obsdx-cli

## 0.1.1

### Patch Changes

- 7902780: Fix link resolution for NFC/NFD Unicode mismatches and self-referencing anchor links

- Normalize all link resolution indexes and lookups to NFC, so wikilinks written in NFC resolve correctly against files stored as NFD (e.g., macOS APFS).
- Self-referencing anchor links (`[text](#fragment)`, `[[#heading]]`) now resolve to their source file instead of being marked unresolved.

- fc35986: Fix property value filtering for booleans and numbers

The `properties files --name <name> --value <value>` command now correctly matches boolean and numeric property values. Previously, `--value true` was compared as the JSON string `"true"` instead of the JSON boolean `true`, causing matches to fail. The SQL query now uses a dual comparison (`json_quote(?) or ?`) so both JSON-quoted strings and raw JSON primitives match correctly.

- @aliou/obsdx-base-ast@0.1.1
- @aliou/obsdx-base-engine@0.1.1
- @aliou/obsdx-index@0.1.1
2 changes: 1 addition & 1 deletion packages/cli/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@aliou/obsdx-cli",
"version": "0.1.0",
"version": "0.1.1",
"description": "Headless Obsidian vault intelligence CLI",
"private": true,
"type": "module",
Expand Down
6 changes: 6 additions & 0 deletions packages/index/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
# @aliou/obsdx-index

## 0.1.1

### Patch Changes

- @aliou/obsdx-base-ast@0.1.1

## 0.1.0

### Minor Changes
Expand Down
2 changes: 1 addition & 1 deletion packages/index/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@aliou/obsdx-index",
"version": "0.1.0",
"version": "0.1.1",
"description": "Vault index abstraction for obsdx",
"license": "MIT",
"type": "module",
Expand Down