@openez-graph/cli 0.10.0 → 0.11.0
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.
- package/dist/CHANGELOG.md +22 -0
- package/dist/cli.cjs +4282 -3529
- package/package.json +6 -2
package/dist/CHANGELOG.md
CHANGED
|
@@ -5,6 +5,27 @@ 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.0] - 2026-08-06
|
|
9
|
+
|
|
10
|
+
### Added
|
|
11
|
+
|
|
12
|
+
- Tree-sitter AST parsing for Python, Go, and Rust via `web-tree-sitter` (WASM) with regex fallback
|
|
13
|
+
- `CodeParser` interface and parser-registry pattern — pluggable parser dispatch via `getParserForPath()` + `parseDocument()`
|
|
14
|
+
- Six parser implementations: `TsMorphParser`, `TreeSitterParser`, `MarkdownParser`, `ConfigParser`, `FallbackParser`, and `parser-registry` dispatcher
|
|
15
|
+
- `language` and `parser` fields on symbol graph node metadata
|
|
16
|
+
- `confidence` field on call edge metadata (`medium` for ts-morph, `low` for tree-sitter/regex)
|
|
17
|
+
- 27 new tests (14 parser-registry + 13 tree-sitter parser)
|
|
18
|
+
|
|
19
|
+
### Changed
|
|
20
|
+
|
|
21
|
+
- `chunkDocument()` in `index-workspace.ts` reduced from ~150 lines of per-language branching to a 12-line delegate to `parseDocument()`
|
|
22
|
+
- Python/Go/Rust indexing upgraded from regex-only to tree-sitter AST with automatic regex fallback
|
|
23
|
+
- CLI bundles `web-tree-sitter` WASM grammars for Python, Go, and Rust
|
|
24
|
+
|
|
25
|
+
### Fixed
|
|
26
|
+
|
|
27
|
+
- Call edges now track originating parser for confidence attribution
|
|
28
|
+
|
|
8
29
|
## [0.10.0] - 2026-08-05
|
|
9
30
|
|
|
10
31
|
### Fixed
|
|
@@ -125,6 +146,7 @@ Remediation release — index/graph correctness, data protection, and web flow f
|
|
|
125
146
|
- Error handling and validation for import path extraction
|
|
126
147
|
- CLI npm packaging
|
|
127
148
|
|
|
149
|
+
[0.11.0]: https://github.com/asta-nguyen/openez-graph/compare/v0.10.0...v0.11.0
|
|
128
150
|
[0.10.0]: https://github.com/asta-nguyen/openez-graph/compare/fbcad4f...HEAD
|
|
129
151
|
[0.9.1]: https://github.com/asta-nguyen/openez-graph/compare/fbcad4f...HEAD
|
|
130
152
|
[0.9.0]: https://github.com/asta-nguyen/openez-graph/compare/fbcad4f...HEAD
|