rdsh-gateway 0.8.1 → 0.8.2

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.
@@ -40,9 +40,12 @@ export declare function compareDshVersions(a: string, b: string): number;
40
40
  /**
41
41
  * remote-dsh 已实测兼容的 dsh 版本窗口(registry 实存版本定界)。
42
42
  * ⚠️ 适配新的 dsh 版本并真机实测后,须同步扩展此窗口(见 doc/fix/20260907-dsh-0.1.2-rc1-auth/)。
43
+ * 2026-09-11:MAX 扩到 `0.1.5-rc.2` —— 真机实测通过(spawn + ready 行 token + 会话 cookie 换发 +
44
+ * `/api` 转发 + HTML 注入 + WS `/api/remote.mux` 桥接 + join 的 `patchLoopbackJs` 命中),
45
+ * 见 doc/review/20260911-dsh-0.1.5-rc.2-plugin-compat.md §5。
43
46
  */
44
47
  export declare const DSH_COMPAT_MIN = "0.1.1-rc.2";
45
- export declare const DSH_COMPAT_MAX = "0.1.2-rc.1";
48
+ export declare const DSH_COMPAT_MAX = "0.1.5-rc.2";
46
49
  /**
47
50
  * 版本落在实测窗口外时的提示文案(零文档导向:直接给动作指令,用户不查表)。
48
51
  * - 比 max 新 → 升级 remote-dsh 或暂用旧 dsh;
package/dist/spawn-dsh.js CHANGED
@@ -197,9 +197,12 @@ export function compareDshVersions(a, b) {
197
197
  /**
198
198
  * remote-dsh 已实测兼容的 dsh 版本窗口(registry 实存版本定界)。
199
199
  * ⚠️ 适配新的 dsh 版本并真机实测后,须同步扩展此窗口(见 doc/fix/20260907-dsh-0.1.2-rc1-auth/)。
200
+ * 2026-09-11:MAX 扩到 `0.1.5-rc.2` —— 真机实测通过(spawn + ready 行 token + 会话 cookie 换发 +
201
+ * `/api` 转发 + HTML 注入 + WS `/api/remote.mux` 桥接 + join 的 `patchLoopbackJs` 命中),
202
+ * 见 doc/review/20260911-dsh-0.1.5-rc.2-plugin-compat.md §5。
200
203
  */
201
204
  export const DSH_COMPAT_MIN = "0.1.1-rc.2";
202
- export const DSH_COMPAT_MAX = "0.1.2-rc.1";
205
+ export const DSH_COMPAT_MAX = "0.1.5-rc.2";
203
206
  /**
204
207
  * 版本落在实测窗口外时的提示文案(零文档导向:直接给动作指令,用户不查表)。
205
208
  * - 比 max 新 → 升级 remote-dsh 或暂用旧 dsh;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "rdsh-gateway",
3
- "version": "0.8.1",
3
+ "version": "0.8.2",
4
4
  "description": "rdsh host-side component: LAN auth gateway + outbound tunnel endpoint (spawns dsh web)",
5
5
  "license": "MIT",
6
6
  "type": "module",