@rezti/dsh-rez-suite 0.1.73 → 0.1.75

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
@@ -5,12 +5,16 @@
5
5
  升级:
6
6
 
7
7
  ```bash
8
- dsh plugin --profile web add @rezti/dsh-rez-suite@0.1.73
8
+ dsh plugin --profile web add @rezti/dsh-rez-suite@0.1.75
9
9
  ```
10
10
 
11
11
  不要用裸 `plugin update`,不要写 `latest`(新 profile 有 24 小时发布冷却,当天可能装不上)。不要装 **0.1.46**(GitHub 子依赖会被 DSH 拦住)。不要装 **0.1.51** / **0.1.69**(误用 `npm publish` 把 `workspace:` 打进包了)。
12
12
 
13
13
 
14
+ ## 0.1.75 · 2026-09-13
15
+
16
+ **修「网页有回复、微信没有」。** dsh 0.1.5 可见文字多半先走 `text-chunks`,末条 `assistant/message` 常是纯工具调用;shim 以前只读 message 的 text,等不到就一直挂着。现从 `text-chunks` 抽可见文,并用 prompt 后的 `turn/end` seq 判定本轮结束。企微长回复截断,并保证 stream `finish` 收尾。wechat `@0.1.23`。
17
+
14
18
  ## 0.1.73 · 2026-09-13
15
19
 
16
20
  **修企微首轮无回复。** `session/page` 的 `throughSeq` 必须用 `-1`(日志顶端);误传 `MAX_SAFE_INTEGER` 会一直 400,历史读空,企微停在「正在处理…」或空回复。顺带:企微新消息可打断上一轮、90s 超时收尾;卡住/超时清会话指针;企微不再走个微 unarchive。wechat `@0.1.22`。
package/cordis.patch.yml CHANGED
@@ -1,5 +1,5 @@
1
1
  # 用户只装这一包:`dsh plugin --profile web add @rezti/dsh-rez-suite`
2
- # 升级只记这一条:`dsh plugin --profile web add @rezti/dsh-rez-suite@0.1.73`
2
+ # 升级只记这一条:`dsh plugin --profile web add @rezti/dsh-rez-suite@0.1.75`
3
3
  # 不要再单独 add 子包,会重复注册。
4
4
  #
5
5
  # MCP rows are started by the domain plugins after rezSso resolves secrets.
package/lib/client.js CHANGED
@@ -1010,6 +1010,20 @@ function ChannelTable({ kind, lang }) {
1010
1010
  //#endregion
1011
1011
  //#region src/changelog.ts
1012
1012
  const SUITE_CHANGELOG = [
1013
+ {
1014
+ version: "0.1.75",
1015
+ date: "2026-09-13",
1016
+ sections: [{
1017
+ title: {
1018
+ zh: "修网页有回复微信没有",
1019
+ en: "Fix Harness reply missing on WeChat"
1020
+ },
1021
+ items: [{
1022
+ zh: "从 text-chunks 抽取可见文字(末条 assistant/message 常是纯工具);按 turn/end seq 判定结束。企微截断长回复并保证 finish。wechat@0.1.23。请装 @0.1.75 并重启。",
1023
+ en: "Read visible text from text-chunks (final assistant/message is often tool-only); settle on turn/end seq. WeCom clips long replies and always finishes the stream. wechat@0.1.23. Install @0.1.75 and restart."
1024
+ }]
1025
+ }]
1026
+ },
1013
1027
  {
1014
1028
  version: "0.1.73",
1015
1029
  date: "2026-09-13",
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@rezti/dsh-rez-suite",
3
- "description": "ReZ-TI one-package install for DeepSeek Harness. Update with: dsh plugin --profile web add @rezti/dsh-rez-suite@0.1.73",
4
- "version": "0.1.73",
3
+ "description": "ReZ-TI one-package install for DeepSeek Harness. Update with: dsh plugin --profile web add @rezti/dsh-rez-suite@0.1.75",
4
+ "version": "0.1.75",
5
5
  "type": "module",
6
6
  "engines": {
7
7
  "node": "^22.19.0 || >=24.0.0"
@@ -48,7 +48,7 @@
48
48
  "@rezti/dsh-rez-tapd": "^0.1.2",
49
49
  "@rezti/dsh-rez-token-manager": "^0.1.5",
50
50
  "@rezti/dsh-rez-vision": "^0.1.4",
51
- "@rezti/dsh-rez-wechat": "^0.1.22",
51
+ "@rezti/dsh-rez-wechat": "^0.1.23",
52
52
  "@rezti/dsh-web-file-uploader": "0.2.3",
53
53
  "@wecom/cli": "1.1.0",
54
54
  "zod": "^4.4.3"
package/src/changelog.ts CHANGED
@@ -20,6 +20,21 @@ export interface ChangelogRelease {
20
20
  }
21
21
 
22
22
  export const SUITE_CHANGELOG: readonly ChangelogRelease[] = [
23
+ {
24
+ version: '0.1.75',
25
+ date: '2026-09-13',
26
+ sections: [
27
+ {
28
+ title: { zh: '修网页有回复微信没有', en: 'Fix Harness reply missing on WeChat' },
29
+ items: [
30
+ {
31
+ zh: '从 text-chunks 抽取可见文字(末条 assistant/message 常是纯工具);按 turn/end seq 判定结束。企微截断长回复并保证 finish。wechat@0.1.23。请装 @0.1.75 并重启。',
32
+ en: 'Read visible text from text-chunks (final assistant/message is often tool-only); settle on turn/end seq. WeCom clips long replies and always finishes the stream. wechat@0.1.23. Install @0.1.75 and restart.',
33
+ },
34
+ ],
35
+ },
36
+ ],
37
+ },
23
38
  {
24
39
  version: '0.1.73',
25
40
  date: '2026-09-13',