Skip to content
Merged
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
7 changes: 0 additions & 7 deletions .changeset/base-requires-context.md

This file was deleted.

7 changes: 0 additions & 7 deletions .changeset/extract-index-package.md

This file was deleted.

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

## 0.1.0

### Minor Changes

- e109dd9: Add `requiresContext` boolean field to `BaseView` indicating whether a view needs a `--context` reference. Views require context when their filters, base-level filters, or any formula references the `this` keyword. Detection uses AST walking to avoid false positives from string/regex literals. `parseBase` now resolves context requirements internally. Improved `base inspect` human output to show properties, formulas, filters, and per-view details including context requirements.
- b1efd6b: Add `@aliou/obsdx-index` package containing the shared vault index abstraction: domain types, write DTOs (`MarkdownIndexInput`, `BaseIndexInput`), and the `VaultIndexStore` interface. The SQLite implementation now lives behind `openSqliteVaultIndex` in the CLI.

## 0.0.7

### Patch 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.0.7",
"version": "0.1.0",
"description": "Obsidian Base syntax parsing for obsdx",
"license": "MIT",
"type": "module",
Expand Down
13 changes: 13 additions & 0 deletions packages/base-engine/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,18 @@
# @aliou/obsdx-base-engine

## 0.1.0

### Minor Changes

- b1efd6b: Add `@aliou/obsdx-index` package containing the shared vault index abstraction: domain types, write DTOs (`MarkdownIndexInput`, `BaseIndexInput`), and the `VaultIndexStore` interface. The SQLite implementation now lives behind `openSqliteVaultIndex` in the CLI.

### Patch Changes

- e109dd9: Add `requiresContext` boolean field to `BaseView` indicating whether a view needs a `--context` reference. Views require context when their filters, base-level filters, or any formula references the `this` keyword. Detection uses AST walking to avoid false positives from string/regex literals. `parseBase` now resolves context requirements internally. Improved `base inspect` human output to show properties, formulas, filters, and per-view details including context requirements.
- Updated dependencies [e109dd9]
- Updated dependencies [b1efd6b]
- @aliou/obsdx-base-ast@0.1.0

## 0.0.7

### Patch 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.0.7",
"version": "0.1.0",
"description": "Obsidian Base query execution for obsdx",
"license": "MIT",
"type": "module",
Expand Down
14 changes: 14 additions & 0 deletions packages/index/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
# @aliou/obsdx-index

## 0.1.0

### Minor Changes

- b1efd6b: Add `@aliou/obsdx-index` package containing the shared vault index abstraction: domain types, write DTOs (`MarkdownIndexInput`, `BaseIndexInput`), and the `VaultIndexStore` interface. The SQLite implementation now lives behind `openSqliteVaultIndex` in the CLI.

### Patch Changes

- e109dd9: Add `requiresContext` boolean field to `BaseView` indicating whether a view needs a `--context` reference. Views require context when their filters, base-level filters, or any formula references the `this` keyword. Detection uses AST walking to avoid false positives from string/regex literals. `parseBase` now resolves context requirements internally. Improved `base inspect` human output to show properties, formulas, filters, and per-view details including context requirements.
- Updated dependencies [e109dd9]
- Updated dependencies [b1efd6b]
- @aliou/obsdx-base-ast@0.1.0
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.0.6",
"version": "0.1.0",
"description": "Vault index abstraction for obsdx",
"license": "MIT",
"type": "module",
Expand Down