@chaoset/session-archive 0.3.4-alpha.0 → 0.3.4-alpha.1

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 -0
  2. package/package.json +9 -5
package/CHANGELOG.md CHANGED
@@ -1,5 +1,19 @@
1
1
  # Changelog
2
2
 
3
+ ## 0.3.4-alpha.1 (2026-09-02)
4
+
5
+ ### Changes
6
+
7
+ * 适配 DSH 0.1.2-alpha.5:`@deepseek-ai/dsh-typert-protocol` 依赖下限从
8
+ `^0.1.2-alpha.3` 升到 `^0.1.2-alpha.5`(声明实测基线);仓库侧 exclude 清单按
9
+ lockfile 闭包重建(27 → 35 项)
10
+ * 已对照 0.1.2-alpha.5 全量 diff 官方包:dsh-typert-protocol 仅移除内联 invariant
11
+ 助手;dsh-session 本次有 14 个文件内部调整,但逐项核对与插件契约面
12
+ (`archivedSessionIds` / `enqueueOperation` / `list` / `locate` / `readFrom`、
13
+ `session/title` / `user/message` / `assistant/message` 事件形状)零交集——变化是
14
+ 宿主内部逻辑与 `SessionSeq` / `SessionLogOffset` 品牌类型细化;全仓 build +
15
+ typecheck + 152 项测试在 alpha.5 依赖闭包上通过
16
+
3
17
  ## 0.3.4-alpha.0 (2026-09-01)
4
18
 
5
19
  ### Bug Fixes
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-alpha.1",
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-alpha.5"
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",