dsh-claude-move 0.2.6 → 0.2.7

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.
Files changed (2) hide show
  1. package/CHANGELOG.md +6 -0
  2. package/package.json +2 -2
package/CHANGELOG.md CHANGED
@@ -2,6 +2,12 @@
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.7] - 2026-08-23
6
+
7
+ ### Changed
8
+
9
+ - Tighten the `@deepseek-ai/schemastery` peer range from `>=3.0.0` to `^3.18.0` to match the range every other DSH plugin declares (and the harness's pinned `3.18.x` line); `>=3.0.0` over-claimed API compatibility across 3.x minors.
10
+
5
11
  ## [0.2.6] - 2026-08-22
6
12
 
7
13
  ### Changed
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "dsh-claude-move",
3
3
  "description": "Four-source migration wizard: copy Claude Code, Codex, OpenCode and Hermes sessions, memories, skills, instructions and slash commands into DeepSeek Harness as resumable sessions — copy-only, approval-gated, idempotent",
4
- "version": "0.2.6",
4
+ "version": "0.2.7",
5
5
  "type": "module",
6
6
  "main": "./index.mjs",
7
7
  "exports": {
@@ -85,7 +85,7 @@
85
85
  "peerDependencies": {
86
86
  "@deepseek-ai/cordis": "^4.0.1",
87
87
  "@deepseek-ai/dsh-tools": ">=0.1.0-rc.8 <0.2.0",
88
- "@deepseek-ai/schemastery": ">=3.0.0"
88
+ "@deepseek-ai/schemastery": "^3.18.0"
89
89
  },
90
90
  "scripts": {
91
91
  "test": "node --test \"test/*.test.mjs\"",