@openez-graph/cli 0.10.0 → 0.11.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (3) hide show
  1. package/dist/CHANGELOG.md +31 -0
  2. package/dist/cli.cjs +4368 -3519
  3. package/package.json +6 -2
package/dist/CHANGELOG.md CHANGED
@@ -5,6 +5,35 @@ All notable changes to OpenEZ Graph are documented in this file.
5
5
  The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/),
6
6
  and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
7
7
 
8
+ ## [0.11.1] - 2026-08-06
9
+
10
+ ### Fixed
11
+
12
+ - Writing phase performance bottleneck: symbol, import, and wikilink node upserts batched per file instead of N individual queries
13
+ - Embedding provider and model now logged at indexing startup for visibility
14
+ - Progress logs added for post-writing phases (embedding batches, FTS rebuild, call edge resolution)
15
+
16
+ ## [0.11.0] - 2026-08-06
17
+
18
+ ### Added
19
+
20
+ - Tree-sitter AST parsing for Python, Go, and Rust via `web-tree-sitter` (WASM) with regex fallback
21
+ - `CodeParser` interface and parser-registry pattern — pluggable parser dispatch via `getParserForPath()` + `parseDocument()`
22
+ - Six parser implementations: `TsMorphParser`, `TreeSitterParser`, `MarkdownParser`, `ConfigParser`, `FallbackParser`, and `parser-registry` dispatcher
23
+ - `language` and `parser` fields on symbol graph node metadata
24
+ - `confidence` field on call edge metadata (`medium` for ts-morph, `low` for tree-sitter/regex)
25
+ - 27 new tests (14 parser-registry + 13 tree-sitter parser)
26
+
27
+ ### Changed
28
+
29
+ - `chunkDocument()` in `index-workspace.ts` reduced from ~150 lines of per-language branching to a 12-line delegate to `parseDocument()`
30
+ - Python/Go/Rust indexing upgraded from regex-only to tree-sitter AST with automatic regex fallback
31
+ - CLI bundles `web-tree-sitter` WASM grammars for Python, Go, and Rust
32
+
33
+ ### Fixed
34
+
35
+ - Call edges now track originating parser for confidence attribution
36
+
8
37
  ## [0.10.0] - 2026-08-05
9
38
 
10
39
  ### Fixed
@@ -125,6 +154,8 @@ Remediation release — index/graph correctness, data protection, and web flow f
125
154
  - Error handling and validation for import path extraction
126
155
  - CLI npm packaging
127
156
 
157
+ [0.11.1]: https://github.com/asta-nguyen/openez-graph/compare/v0.11.0...v0.11.1
158
+ [0.11.0]: https://github.com/asta-nguyen/openez-graph/compare/v0.10.0...v0.11.0
128
159
  [0.10.0]: https://github.com/asta-nguyen/openez-graph/compare/fbcad4f...HEAD
129
160
  [0.9.1]: https://github.com/asta-nguyen/openez-graph/compare/fbcad4f...HEAD
130
161
  [0.9.0]: https://github.com/asta-nguyen/openez-graph/compare/fbcad4f...HEAD