@openez-graph/cli 1.0.1 → 1.0.3

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 CHANGED
@@ -5,7 +5,28 @@ 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
- ## [Unreleased]
8
+ ## [1.0.3] - 2026-08-08
9
+
10
+ ### Fixed
11
+
12
+ - **Registry `graph_status` not updated after graph build** — `_buildGraphInternal` built the graph correctly but never updated the registry's `graph_status`/`node_count`/`edge_count`, so the web UI showed 0 nodes and 0 edges even though the workspace DB had the data. Now updates the registry after a successful build.
13
+
14
+ ### Contributors
15
+
16
+ - **Asta Nguyen** — [@asta-nguyen](https://github.com/asta-nguyen)
17
+ - **JoeJoe** — [@JoeJoeflyn](https://github.com/JoeJoeflyn)
18
+
19
+ ## [1.0.2] - 2026-08-08
20
+
21
+ ### Fixed
22
+
23
+ - **Graph build produced 0 symbol nodes and 0 edges** — `oxc-parser` (NAPI-RS native binding) was not declared in CLI `dependencies` and was not listed in tsup `external`, so `require("oxc-parser")` failed silently in the bundled CLI, falling back to line-based chunking with 0 symbols. Added `oxc-parser` to `dependencies` and `oxc-parser` + `@oxc-parser/binding-*` to tsup `external` so the native binding resolves from `node_modules` at runtime.
24
+ - **Registry `graph_status` not updated after graph build** — `_buildGraphInternal` built the graph correctly but never updated the registry's `graph_status`/`node_count`/`edge_count`, so the web UI showed 0 nodes and 0 edges even though the workspace DB had the data. Now updates the registry after a successful build.
25
+
26
+ ### Contributors
27
+
28
+ - **Asta Nguyen** — [@asta-nguyen](https://github.com/asta-nguyen)
29
+ - **JoeJoe** — [@JoeJoeflyn](https://github.com/JoeJoeflyn)
9
30
 
10
31
  ## [1.0.1] - 2026-08-08
11
32
 
@@ -213,6 +234,8 @@ Remediation release — index/graph correctness, data protection, and web flow f
213
234
  - Error handling and validation for import path extraction
214
235
  - CLI npm packaging
215
236
 
237
+ [1.0.3]: https://github.com/asta-nguyen/openez-graph/compare/v1.0.2...v1.0.3
238
+ [1.0.2]: https://github.com/asta-nguyen/openez-graph/compare/v1.0.1...v1.0.2
216
239
  [1.0.1]: https://github.com/asta-nguyen/openez-graph/compare/v1.0.0...v1.0.1
217
240
  [0.12.0]: https://github.com/asta-nguyen/openez-graph/compare/v0.11.1...v0.12.0
218
241
  [0.11.1]: https://github.com/asta-nguyen/openez-graph/compare/v0.11.0...v0.11.1