@openez-graph/cli 0.11.0 → 0.12.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 CHANGED
@@ -5,6 +5,47 @@ 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.12.0] - 2026-08-06
9
+
10
+ ### Added
11
+
12
+ - `openez remove` CLI command with confirmation prompt, indexed-data summary, and `--yes`/`--id` options
13
+ - `remove_workspace` MCP tool with `confirm: true` guard and watcher cleanup
14
+ - Pin/unpin toggle on workspaces page with in-flight disable and error display
15
+ - Delete confirmation dialog with ARIA dialog semantics (role, aria-modal, aria-labelledby), focus trap, Escape-to-close, and focus restore
16
+ - `pin_order` monotonic column for deterministic pinned-workspace ordering regardless of wall-clock resolution
17
+ - Delete dialog surfaces partial-failure warnings (data dir not removed) instead of silently closing
18
+ - Indexed doc/chunk counts shown in CLI remove confirmation screen
19
+
20
+ ### Changed
21
+
22
+ - Workspace removal now closes the native DB handle before deleting `.openez`, preventing EBUSY on Windows
23
+ - Removal order changed: close DB → delete data dir → unregister, so failed cleanup stays retryable
24
+ - `pathExists` in remove-workspace only catches ENOENT; other stat errors are reported as warnings
25
+ - MCP `remove_workspace` resolves relative paths with `path.resolve` for consistency with CLI and other MCP tools
26
+ - Pin/delete action buttons are now siblings of the workspace link instead of nested inside it (valid HTML)
27
+ - Web server delete handler closes cached workspace DB handle before removal
28
+ - Race-safe registry column migration (try/catch + re-check on ALTER TABLE)
29
+ - Registry DB cache cleared on initialization failure
30
+
31
+ ### Fixed
32
+
33
+ - `closeWorkspaceDb` now calls `.close()` on the native better-sqlite3 handle instead of only dropping the cache entry
34
+ - Delete mutation throws on `{ success: false }` responses, preventing dialog close on server-side failure
35
+ - Pin mutation throws on `{ success: false }` responses, preventing silent failure
36
+ - Delete handler returns HTTP 500 on catch instead of implicit 200
37
+ - Pin handler validates request body with safe `.catch()` for malformed JSON
38
+ - Dialog text overflow with long workspace paths (break-all on code, break-words on paragraphs)
39
+ - MCP auto-sync watcher closed when its workspace is removed, preventing stale reindex attempts
40
+
41
+ ## [0.11.1] - 2026-08-06
42
+
43
+ ### Fixed
44
+
45
+ - Writing phase performance bottleneck: symbol, import, and wikilink node upserts batched per file instead of N individual queries
46
+ - Embedding provider and model now logged at indexing startup for visibility
47
+ - Progress logs added for post-writing phases (embedding batches, FTS rebuild, call edge resolution)
48
+
8
49
  ## [0.11.0] - 2026-08-06
9
50
 
10
51
  ### Added
@@ -146,6 +187,8 @@ Remediation release — index/graph correctness, data protection, and web flow f
146
187
  - Error handling and validation for import path extraction
147
188
  - CLI npm packaging
148
189
 
190
+ [0.12.0]: https://github.com/asta-nguyen/openez-graph/compare/v0.11.1...v0.12.0
191
+ [0.11.1]: https://github.com/asta-nguyen/openez-graph/compare/v0.11.0...v0.11.1
149
192
  [0.11.0]: https://github.com/asta-nguyen/openez-graph/compare/v0.10.0...v0.11.0
150
193
  [0.10.0]: https://github.com/asta-nguyen/openez-graph/compare/fbcad4f...HEAD
151
194
  [0.9.1]: https://github.com/asta-nguyen/openez-graph/compare/fbcad4f...HEAD