dsh-claude-move 0.2.2 → 0.2.4
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/CHANGELOG.md +12 -0
- package/README.es.md +285 -291
- package/README.hi.md +285 -292
- package/README.md +285 -317
- package/README.pt.md +285 -291
- package/README.zh.md +285 -311
- package/client/client.js +7 -3
- package/index.mjs +20 -10
- package/package.json +68 -4
package/CHANGELOG.md
CHANGED
|
@@ -2,6 +2,18 @@
|
|
|
2
2
|
|
|
3
3
|
All notable changes to this project are documented here. The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/); versions follow [SemVer](https://semver.org/).
|
|
4
4
|
|
|
5
|
+
## [0.2.4] - 2026-08-19
|
|
6
|
+
|
|
7
|
+
### Changed
|
|
8
|
+
|
|
9
|
+
- `package.json#dshWorkshop.lifecycle.activation` upgraded from `restart-profile` to `hot-reload`: with the panel routes riding the plugin fiber since 0.2.3, dispose-and-reactivate is fully clean. Proven by a Loader-level hot-reload composition test that drives `Include.refresh()` — the same transaction the HMR watcher triggers — through an `enableWebPanel` true → false → true cycle against a duplicate-strict mock `webServer`, asserting the routes unload with the fiber and re-register without a duplicate route.
|
|
10
|
+
|
|
11
|
+
## [0.2.3] - 2026-08-19
|
|
12
|
+
|
|
13
|
+
### Fixed
|
|
14
|
+
|
|
15
|
+
- The web panel routes now unload with the plugin fiber: the five `/api/claude-move/*` route disposers ride one `ctx.effect`, so a config hot-reload or disable followed by a remount no longer throws `duplicate exact route` (the host route table previously kept handlers closed over the unloaded fiber). The route tests now simulate fiber disposal against a duplicate-strict `webServer.register`.
|
|
16
|
+
|
|
5
17
|
## [0.2.2] - 2026-08-16
|
|
6
18
|
|
|
7
19
|
### Fixed
|