@rezti/dsh-rez-suite 0.1.71 → 0.1.72
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 +10 -2
- package/cordis.patch.yml +1 -1
- package/lib/client.d.ts +1 -1
- package/lib/client.js +17 -7
- package/package.json +3 -3
- package/src/changelog.ts +9 -1
- package/src/client/locales.ts +2 -2
package/CHANGELOG.md
CHANGED
|
@@ -5,15 +5,23 @@
|
|
|
5
5
|
升级:
|
|
6
6
|
|
|
7
7
|
```bash
|
|
8
|
-
dsh plugin --profile web add @rezti/dsh-rez-suite@0.1.
|
|
8
|
+
dsh plugin --profile web add @rezti/dsh-rez-suite@0.1.72
|
|
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.72 · 2026-09-13
|
|
15
|
+
|
|
16
|
+
**修企微/微信 RPC 404。** dsh 0.1.5 线格式改为 `session/create`(斜杠)且 payload 必须 `{ args: { request } }`;旧 `session.create` 认证通过后仍会 404 not found。wechat `@0.1.20`:slash endpoint + args 包装;`history`→`page`,`models`→`modelCatalog`,prompt 带 `requestId`。装 **`@0.1.72`** 后重启。
|
|
17
|
+
|
|
18
|
+
**微信不再自动切 Kimi。** 以前微信来消息会 `session/selectModel` 到 `kimi-for-coding`,官方会把这个写成全局默认,重启后网页就停在 Kimi。现在跟网页当前模型走(官方默认 DeepSeek-V4-Flash)。看图旁路仍用 Kimi,不受影响。若要旧行为:`REZ_WECHAT_PREFER_KIMI=1`。
|
|
19
|
+
|
|
20
|
+
**修微信第二条卡住。** `dsh-wechat-bridge` 每个联系人一把锁,等 shim 子进程退出才处理下一条。shim 用了 fetch 之后事件循环不退出,所以第一句能回、第二句永远排队;点「重新连接」等于新开进程,又能通一轮。shim 写完回复后 `process.exit`。会话历史若 `session/page` 没有则回退 `session/history`。
|
|
21
|
+
|
|
14
22
|
## 0.1.70 · 2026-09-13
|
|
15
23
|
|
|
16
|
-
**修 dsh 0.1.5 网页/微信 401。** 官方改成进程级 `?token=` + HttpOnly cookie,裸开 `:3080` 会提示 authentication required;个人微信 bridge 原先 RPC 不带 cookie → `session.create` 401。本版 suite 启动时写 `~/.dsh/dsh-web.url`(完整带 token 地址);wechat `@0.1.19` 用该文件换 cookie 再调 `/api
|
|
24
|
+
**修 dsh 0.1.5 网页/微信 401。** 官方改成进程级 `?token=` + HttpOnly cookie,裸开 `:3080` 会提示 authentication required;个人微信 bridge 原先 RPC 不带 cookie → `session.create` 401。本版 suite 启动时写 `~/.dsh/dsh-web.url`(完整带 token 地址);wechat `@0.1.19` 用该文件换 cookie 再调 `/api`。
|
|
17
25
|
|
|
18
26
|
**附:旧 sso 钉死。** 若 profile 仍嵌着旧子包,清 `profiles/web/node_modules` 再装本版。
|
|
19
27
|
|
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.
|
|
2
|
+
# 升级只记这一条:`dsh plugin --profile web add @rezti/dsh-rez-suite@0.1.72`
|
|
3
3
|
# 不要再单独 add 子包,会重复注册。
|
|
4
4
|
#
|
|
5
5
|
# MCP rows are started by the domain plugins after rezSso resolves secrets.
|
package/lib/client.d.ts
CHANGED
|
@@ -1276,7 +1276,7 @@ declare const zh: {
|
|
|
1276
1276
|
readonly 'common.loading': "加载中…";
|
|
1277
1277
|
readonly 'common.error': "出错:{error}";
|
|
1278
1278
|
readonly 'common.refresh': "刷新";
|
|
1279
|
-
readonly 'weixin.intro': "和 QClaw
|
|
1279
|
+
readonly 'weixin.intro': "和 QClaw 一样:扫一次码,然后直接在微信里说话。消息会进网页左侧「微信」文件夹并延续同一会话,模型跟网页默认(DeepSeek-V4-Flash)。网页端要开着。归档了的会话再从微信说话会自动回到侧栏。发「重启对话」会新开一条可见会话。";
|
|
1280
1280
|
readonly 'weixin.login': "扫码登录";
|
|
1281
1281
|
readonly 'weixin.reconnect': "重新连接";
|
|
1282
1282
|
readonly 'weixin.logout': "退出微信";
|
package/lib/client.js
CHANGED
|
@@ -284,7 +284,7 @@ const zh = {
|
|
|
284
284
|
"common.loading": "加载中…",
|
|
285
285
|
"common.error": "出错:{error}",
|
|
286
286
|
"common.refresh": "刷新",
|
|
287
|
-
"weixin.intro": "和 QClaw
|
|
287
|
+
"weixin.intro": "和 QClaw 一样:扫一次码,然后直接在微信里说话。消息会进网页左侧「微信」文件夹并延续同一会话,模型跟网页默认(DeepSeek-V4-Flash)。网页端要开着。归档了的会话再从微信说话会自动回到侧栏。发「重启对话」会新开一条可见会话。",
|
|
288
288
|
"weixin.login": "扫码登录",
|
|
289
289
|
"weixin.reconnect": "重新连接",
|
|
290
290
|
"weixin.logout": "退出微信",
|
|
@@ -455,7 +455,7 @@ const en = {
|
|
|
455
455
|
"common.loading": "Loading…",
|
|
456
456
|
"common.error": "Error: {error}",
|
|
457
457
|
"common.refresh": "Refresh",
|
|
458
|
-
"weixin.intro": "Same as QClaw: scan once, then talk in WeChat. Messages keep one session under the WeChat folder on the left, using the web default model (
|
|
458
|
+
"weixin.intro": "Same as QClaw: scan once, then talk in WeChat. Messages keep one session under the WeChat folder on the left, using the web default model (DeepSeek-V4-Flash). Keep the web UI running. Talking in WeChat restores an archived session to the sidebar. Send 重启对话 to start a visible new web session.",
|
|
459
459
|
"weixin.login": "Scan to log in",
|
|
460
460
|
"weixin.reconnect": "Reconnect",
|
|
461
461
|
"weixin.logout": "Log out",
|
|
@@ -1011,17 +1011,27 @@ function ChannelTable({ kind, lang }) {
|
|
|
1011
1011
|
//#region src/changelog.ts
|
|
1012
1012
|
const SUITE_CHANGELOG = [
|
|
1013
1013
|
{
|
|
1014
|
-
version: "0.1.
|
|
1014
|
+
version: "0.1.72",
|
|
1015
1015
|
date: "2026-09-13",
|
|
1016
1016
|
sections: [{
|
|
1017
1017
|
title: {
|
|
1018
1018
|
zh: "修企微/微信 RPC 404",
|
|
1019
1019
|
en: "Fix WeCom/WeChat RPC 404"
|
|
1020
1020
|
},
|
|
1021
|
-
items: [
|
|
1022
|
-
|
|
1023
|
-
|
|
1024
|
-
|
|
1021
|
+
items: [
|
|
1022
|
+
{
|
|
1023
|
+
zh: "dsh 0.1.5 改为 session/create + {args:{request}};wechat@0.1.20。请装 @0.1.71 并重启。",
|
|
1024
|
+
en: "dsh 0.1.5 uses session/create + {args:{request}}; wechat@0.1.20. Install @0.1.71 and restart."
|
|
1025
|
+
},
|
|
1026
|
+
{
|
|
1027
|
+
zh: "个人微信不再自动把网页默认模型切到 Kimi。官方默认仍是 DeepSeek-V4-Flash。若要旧行为,设 REZ_WECHAT_PREFER_KIMI=1。",
|
|
1028
|
+
en: "Personal WeChat no longer switches the web default onto Kimi. Official default remains DeepSeek-V4-Flash. Opt in with REZ_WECHAT_PREFER_KIMI=1."
|
|
1029
|
+
},
|
|
1030
|
+
{
|
|
1031
|
+
zh: "微信第二条消息卡住:桥接会等 shim 进程退出才处理下一条,而 fetch 连接会把进程挂住。shim 现在写完回复就 process.exit。重连能通一轮也是同一原因。",
|
|
1032
|
+
en: "WeChat follow-ups hung because the bridge waits for the shim process to exit, and native fetch kept the event loop alive. The shim now process.exit after writing the reply."
|
|
1033
|
+
}
|
|
1034
|
+
]
|
|
1025
1035
|
}]
|
|
1026
1036
|
},
|
|
1027
1037
|
{
|
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.
|
|
4
|
-
"version": "0.1.
|
|
3
|
+
"description": "ReZ-TI one-package install for DeepSeek Harness. Update with: dsh plugin --profile web add @rezti/dsh-rez-suite@0.1.72",
|
|
4
|
+
"version": "0.1.72",
|
|
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.
|
|
51
|
+
"@rezti/dsh-rez-wechat": "^0.1.21",
|
|
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
|
@@ -21,7 +21,7 @@ export interface ChangelogRelease {
|
|
|
21
21
|
|
|
22
22
|
export const SUITE_CHANGELOG: readonly ChangelogRelease[] = [
|
|
23
23
|
{
|
|
24
|
-
version: '0.1.
|
|
24
|
+
version: '0.1.72',
|
|
25
25
|
date: '2026-09-13',
|
|
26
26
|
sections: [
|
|
27
27
|
{
|
|
@@ -31,6 +31,14 @@ export const SUITE_CHANGELOG: readonly ChangelogRelease[] = [
|
|
|
31
31
|
zh: 'dsh 0.1.5 改为 session/create + {args:{request}};wechat@0.1.20。请装 @0.1.71 并重启。',
|
|
32
32
|
en: 'dsh 0.1.5 uses session/create + {args:{request}}; wechat@0.1.20. Install @0.1.71 and restart.',
|
|
33
33
|
},
|
|
34
|
+
{
|
|
35
|
+
zh: '个人微信不再自动把网页默认模型切到 Kimi。官方默认仍是 DeepSeek-V4-Flash。若要旧行为,设 REZ_WECHAT_PREFER_KIMI=1。',
|
|
36
|
+
en: 'Personal WeChat no longer switches the web default onto Kimi. Official default remains DeepSeek-V4-Flash. Opt in with REZ_WECHAT_PREFER_KIMI=1.',
|
|
37
|
+
},
|
|
38
|
+
{
|
|
39
|
+
zh: '微信第二条消息卡住:桥接会等 shim 进程退出才处理下一条,而 fetch 连接会把进程挂住。shim 现在写完回复就 process.exit。重连能通一轮也是同一原因。',
|
|
40
|
+
en: 'WeChat follow-ups hung because the bridge waits for the shim process to exit, and native fetch kept the event loop alive. The shim now process.exit after writing the reply.',
|
|
41
|
+
},
|
|
34
42
|
],
|
|
35
43
|
},
|
|
36
44
|
],
|
package/src/client/locales.ts
CHANGED
|
@@ -155,7 +155,7 @@ export const zh = {
|
|
|
155
155
|
'common.loading': '加载中…',
|
|
156
156
|
'common.error': '出错:{error}',
|
|
157
157
|
'common.refresh': '刷新',
|
|
158
|
-
'weixin.intro': '和 QClaw
|
|
158
|
+
'weixin.intro': '和 QClaw 一样:扫一次码,然后直接在微信里说话。消息会进网页左侧「微信」文件夹并延续同一会话,模型跟网页默认(DeepSeek-V4-Flash)。网页端要开着。归档了的会话再从微信说话会自动回到侧栏。发「重启对话」会新开一条可见会话。',
|
|
159
159
|
'weixin.login': '扫码登录',
|
|
160
160
|
'weixin.reconnect': '重新连接',
|
|
161
161
|
'weixin.logout': '退出微信',
|
|
@@ -329,7 +329,7 @@ export const en: Record<RezKey, string> = {
|
|
|
329
329
|
'common.loading': 'Loading…',
|
|
330
330
|
'common.error': 'Error: {error}',
|
|
331
331
|
'common.refresh': 'Refresh',
|
|
332
|
-
'weixin.intro': 'Same as QClaw: scan once, then talk in WeChat. Messages keep one session under the WeChat folder on the left, using the web default model (
|
|
332
|
+
'weixin.intro': 'Same as QClaw: scan once, then talk in WeChat. Messages keep one session under the WeChat folder on the left, using the web default model (DeepSeek-V4-Flash). Keep the web UI running. Talking in WeChat restores an archived session to the sidebar. Send 重启对话 to start a visible new web session.',
|
|
333
333
|
'weixin.login': 'Scan to log in',
|
|
334
334
|
'weixin.reconnect': 'Reconnect',
|
|
335
335
|
'weixin.logout': 'Log out',
|