dsh-claude-move 0.2.1 → 0.2.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/CHANGELOG.md CHANGED
@@ -2,6 +2,21 @@
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.3] - 2026-08-19
6
+
7
+ ### Fixed
8
+
9
+ - 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`.
10
+
11
+ ## [0.2.2] - 2026-08-16
12
+
13
+ ### Fixed
14
+
15
+ - The wizard's managed-section markers now accept any path-shaped plan key (8.3 short names like `RUNNER~1`, spaces, and every other path character), so `AGENTS.md` sections keyed by source paths stay idempotent on every platform.
16
+ - The migration manifest store resolves `$DSH_HOME` lazily per operation instead of binding it at module import (isolated tests and temporary profiles no longer share the default home).
17
+ - Converted skills record the source digest as `digest`, so re-runs recognize them as unchanged.
18
+ - Path assertions in the test suite are platform-agnostic (`path.join`), so the full gate is green on Windows, macOS and Linux.
19
+
5
20
  ## [0.2.1] - 2026-08-16
6
21
 
7
22
  ### Added
@@ -12,12 +27,6 @@ All notable changes to this project are documented here. The format is based on
12
27
  - Approval gate: any run that would write asks `ctx.approval` first (`allowed-once` only; otherwise zero writes).
13
28
  - New config: `requireApproval` / `codexHome` / `opencodeDataHome` / `opencodeConfigHome` / `hermesHome` / `skillsDir` / `agentsMdPath` / `moveWorkspaceMode`.
14
29
 
15
- ### Fixed
16
-
17
- - The wizard's managed-section markers now accept path-shaped plan keys (Windows backslashes included), so `AGENTS.md` sections keyed by source paths stay idempotent.
18
- - The migration manifest store resolves `$DSH_HOME` lazily per operation instead of binding it at module import (isolated tests and temporary profiles no longer share the default home).
19
- - Converted skills record the source digest as `digest`, so re-runs recognize them as unchanged.
20
-
21
30
  ## [0.2.0] - 2026-08-15
22
31
 
23
32
  ### Added