@openez-graph/cli 0.11.1 → 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 +34 -0
- package/dist/cli.cjs +492 -133
- package/dist/web/assets/{WorkspaceGraph-D_mQPqES.js → WorkspaceGraph-C7MlKPGF.js} +1 -1
- package/dist/web/assets/index-B3TSJ0_K.css +1 -0
- package/dist/web/assets/{index-CrgdwyMi.js → index-BMNDu0y4.js} +76 -71
- package/dist/web/index.html +2 -2
- package/package.json +1 -1
- package/dist/web/assets/index-C43ewFKS.css +0 -1
package/dist/CHANGELOG.md
CHANGED
|
@@ -5,6 +5,39 @@ 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
|
+
|
|
8
41
|
## [0.11.1] - 2026-08-06
|
|
9
42
|
|
|
10
43
|
### Fixed
|
|
@@ -154,6 +187,7 @@ Remediation release — index/graph correctness, data protection, and web flow f
|
|
|
154
187
|
- Error handling and validation for import path extraction
|
|
155
188
|
- CLI npm packaging
|
|
156
189
|
|
|
190
|
+
[0.12.0]: https://github.com/asta-nguyen/openez-graph/compare/v0.11.1...v0.12.0
|
|
157
191
|
[0.11.1]: https://github.com/asta-nguyen/openez-graph/compare/v0.11.0...v0.11.1
|
|
158
192
|
[0.11.0]: https://github.com/asta-nguyen/openez-graph/compare/v0.10.0...v0.11.0
|
|
159
193
|
[0.10.0]: https://github.com/asta-nguyen/openez-graph/compare/fbcad4f...HEAD
|