@chaoset/session-archive 0.3.3 → 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.
- package/CHANGELOG.md +27 -0
- package/package.json +9 -5
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,32 @@
|
|
|
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
|
+
|
|
17
|
+
## 0.3.4-alpha.0 (2026-09-01)
|
|
18
|
+
|
|
19
|
+
### Bug Fixes
|
|
20
|
+
|
|
21
|
+
* 适配 DSH 0.1.2-alpha.3:`@deepseek-ai/dsh-typert-protocol` 依赖 range 从
|
|
22
|
+
`^0.1.1-rc.2` 升到 `^0.1.2-alpha.3`(npm semver 的 prerelease 规则下旧 range
|
|
23
|
+
无法匹配 `0.1.2-alpha.3`,新版宿主下面板远程服务会因官方包解析到旧版本而不可用)
|
|
24
|
+
* 已对照 0.1.2-alpha.3 复核 workspaceRegistry(`archivedSessionIds` /
|
|
25
|
+
`enqueueOperation` / `requireState` / `setState`)与 sessionPersistence
|
|
26
|
+
(`list` / `locate` / `readFrom`)契约、`session/title` / `user/message` /
|
|
27
|
+
`assistant/message` 事件形状均无变化,运行时逻辑无需调整;已在实际
|
|
28
|
+
0.1.2-alpha.3 web profile 上验证插件正常激活
|
|
29
|
+
|
|
3
30
|
## 0.3.3 (2026-08-29)
|
|
4
31
|
|
|
5
32
|
### Features
|
package/package.json
CHANGED
|
@@ -1,7 +1,10 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@chaoset/session-archive",
|
|
3
|
-
"version": "0.3.
|
|
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.
|
|
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
|
-
"
|
|
47
|
-
"
|
|
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",
|