@chaoset/session-archive 0.3.4-alpha.0 → 0.3.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.
Files changed (2) hide show
  1. package/CHANGELOG.md +14 -12
  2. package/package.json +9 -5
package/CHANGELOG.md CHANGED
@@ -1,17 +1,19 @@
1
1
  # Changelog
2
2
 
3
- ## 0.3.4-alpha.0 (2026-09-01)
4
-
5
- ### Bug Fixes
6
-
7
- * 适配 DSH 0.1.2-alpha.3:`@deepseek-ai/dsh-typert-protocol` 依赖 range 从
8
- `^0.1.1-rc.2` 升到 `^0.1.2-alpha.3`(npm semver prerelease 规则下旧 range
9
- 无法匹配 `0.1.2-alpha.3`,新版宿主下面板远程服务会因官方包解析到旧版本而不可用)
10
- * 已对照 0.1.2-alpha.3 复核 workspaceRegistry(`archivedSessionIds` /
11
- `enqueueOperation` / `requireState` / `setState`)与 sessionPersistence
12
- (`list` / `locate` / `readFrom`)契约、`session/title` / `user/message` /
13
- `assistant/message` 事件形状均无变化,运行时逻辑无需调整;已在实际
14
- 0.1.2-alpha.3 web profile 上验证插件正常激活
3
+ ## 0.3.4 (2026-09-03)
4
+
5
+ ### Changes
6
+
7
+ * alpha 线合并 + 稳定线跟进 DSH 0.1.2-rc.1:`@deepseek-ai/dsh-typert-protocol`
8
+ `^0.1.1-rc.2` 升到 `^0.1.2-rc.1`(合入 alpha 线 0.3.4-alpha.0 /
9
+ 0.3.4-alpha.1 的适配内容,功能与 0.3.3 一致)
10
+ * 已对照 0.1.2-rc.1 全量 diff 官方包(36 个:逐包与 0.1.2-alpha.5 字节对比,
11
+ 除版本号外零差异——rc.1 是纯转正 bump):面板远程服务的
12
+ workspaceRegistry(`archivedSessionIds` / `enqueueOperation` /
13
+ `requireState` / `setState`)与 sessionPersistence(`list` / `locate` /
14
+ `readFrom`)契约、`session/title` / `user/message` / `assistant/message`
15
+ 事件形状与 alpha.5 适配时一致;全仓 build + typecheck + 162 项测试在
16
+ rc.1 依赖闭包上通过
15
17
 
16
18
  ## 0.3.3 (2026-08-29)
17
19
 
package/package.json CHANGED
@@ -1,7 +1,10 @@
1
1
  {
2
2
  "name": "@chaoset/session-archive",
3
- "version": "0.3.4-alpha.0",
3
+ "version": "0.3.4",
4
4
  "description": "DSH plugin: browse archived sessions, inspect their content, batch-restore or permanently delete them with multi-select",
5
+ "engines": {
6
+ "node": ">=22.19.0"
7
+ },
5
8
  "type": "module",
6
9
  "license": "MIT",
7
10
  "files": [
@@ -33,19 +36,20 @@
33
36
  }
34
37
  },
35
38
  "optionalDependencies": {
36
- "@deepseek-ai/dsh-typert-protocol": "^0.1.2-alpha.3"
39
+ "@deepseek-ai/dsh-typert-protocol": "^0.1.2-rc.1"
37
40
  },
38
41
  "repository": {
39
42
  "type": "git",
40
- "url": "https://github.com/winliyou/dsh-plugins.git",
43
+ "url": "git+https://github.com/winliyou/dsh-plugins.git",
41
44
  "directory": "packages/session-archive"
42
45
  },
43
46
  "publishConfig": {
44
47
  "access": "public"
45
48
  },
46
- "engines": {
47
- "node": ">=22.19.0"
49
+ "bugs": {
50
+ "url": "https://github.com/winliyou/dsh-plugins/issues"
48
51
  },
52
+ "homepage": "https://github.com/winliyou/dsh-plugins/tree/main/packages/session-archive#readme",
49
53
  "scripts": {
50
54
  "build": "node ../../scripts/build.mjs",
51
55
  "typecheck": "tsc -p tsconfig.json --noEmit",