dsh-vscode-mode 0.8.0 → 0.10.0

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/README.md CHANGED
@@ -417,13 +417,13 @@ TortoiseSVN(`TortoiseProc.exe`)仅作 Windows 过渡增强:自研能力覆
417
417
 
418
418
  ```bash
419
419
  # ① Git 安装(clone + prepare 构建;推荐打固定 tag)
420
- dsh plugin --profile web add github:Lenonss/DSH_VsCodeMode#v0.8.0
420
+ dsh plugin --profile web add github:Lenonss/DSH_VsCodeMode#v0.10.0
421
421
 
422
422
  # ② npm 注册表(发布到 npm 后)
423
423
  dsh plugin --profile web add dsh-vscode-mode
424
424
 
425
425
  # ③ GitHub Release tgz 直装
426
- dsh plugin --profile web add https://github.com/Lenonss/DSH_VsCodeMode/releases/download/v0.8.0/dsh-vscode-mode-0.8.0.tgz
426
+ dsh plugin --profile web add https://github.com/Lenonss/DSH_VsCodeMode/releases/download/v0.10.0/dsh-vscode-mode-0.10.0.tgz
427
427
  ```
428
428
 
429
429
  > `dsh plugin ...` 是 pnpm 转发器:git 安装会克隆仓库、执行该包 `prepare` 脚本
@@ -718,6 +718,29 @@ Keep All / Undo All 却是亮的。修复:单文件 Keep / Undo 覆盖冲突
718
718
  完整变更见 [GitHub Releases](https://github.com/Lenonss/DSH_VsCodeMode/releases)。
719
719
  近期关键版本:
720
720
 
721
+ - **v0.10.0**:**SVN AI 深度分析发送链路重构**——① 发送主路径切换为**官方 composer
722
+ 链路**(`inputFor` setDraft + submit,即 UI「发送」内部路径,带 scope 铸造时延 3 次
723
+ 重试),`remote.session` 具名槽 RPC(`{args:{request:{rpcId,payload}}}`,gateway
724
+ `invoke` 铁证形态)多形态容错为兜底、HTTP wire 直调降为最后兜底;② 新会话创建
725
+ 主路径改为 **client store manager 面**(`sessions.create`,官方 connectWorkspace
726
+ 同链路,create 自带 store upsert → `open` 切换可用),wire 直调虽能建会话但 store
727
+ 无感故只作兜底;③ 新会话**主动铸造 scope + 命名「AI 深度分析 · \<目录\>」**
728
+ (`materializeScope` + `manager.rename`),会话列表一眼可见、点击即入;
729
+ ④ SvnPanel 通知文案同步更新,34 个 svnAiPlan 用例对齐新形态。
730
+ - **v0.9.0**:**远端工作区差异审查(issue #7)+ SVN 变更 AI 智能分组**——① 支持
731
+ ssh remote 插件打开的**远端项目**做交互式差异审查:按工作区根 `.remote-ssh.json`
732
+ 识别镜像根(向上 ≤8 层,与官方 findMirrorRoot 同判据),agent 写远端后以 `node:fs`
733
+ **写穿本机镜像**(不走 ctx.fs 写桥,避免相同内容再推回远端的重复 SSH 往返),
734
+ 展示/决策链路对齐本地工作区;② **SVN 变更列表 AI 智能分组**:AI 对变更文件自动
735
+ 分组归类 + 方案弹窗(`SvnAiPlanDialog`)、单组条目预算防超长(`svnListBudget`)、
736
+ 对话内变更自动分组入列(`svnTriage`),SvnPanel/状态链路与徽标同步增强;
737
+ ③ **适配 DSH 0.1.7-alpha.2**:Config 全字段 `.volatile()`(否则设置页 entry 不下发、
738
+ 写入抛 `has no volatile fields`)+ `@deepseek-ai/schemastery` 移入 dependencies 钉
739
+ `~3.18.4` + 配置读点解引用 volatile 引用 + 兼容页「Config volatile 字段」行与告警;
740
+ ④ **修复 Ctrl+点击首开不定位(第三次回归)**:根因=并行改码触发 client HMR 热重载、
741
+ EditorView 重挂载销毁挂载级 pendingFocus → 新增 `window.__edrvPendingNav__`
742
+ 跨挂载交接槽(TTL 30s、落点才清)+ 落点前模型身份守卫;首开/交接注入/同文件/
743
+ 搜索入口四轮现场复测通过。
721
744
  - **v0.8.0**:**DSH 0.1.7 兼容适配 + 文件树原生打开**——P0×3 修复(0.1.7 移除
722
745
  `settingsScope` 致整客户端停等 → 设置桥四级探测 + 15×2s 晚到重试;`installSection`
723
746
  移除 → `forms` 策略 + `export const Config` 与 section schema 同源;0.1.7 图标改名
package/cordis.patch.yml CHANGED
@@ -23,9 +23,13 @@
23
23
  # 变化由 Loader 就地提交(`ctx.on('loader/volatile-update')`),运行中的实例保留、
24
24
  # 不重挂载;非 volatile 字段改动仍按原逻辑触发 reload(volatile 字段还要求位于
25
25
  # 固定 object 路径,不得嵌套于 dict key / 外层 volatile 之内,app-boot 会校验)。
26
- # 该声明落在插件源码的 schema 上,**不是 patch 文件字段**——本插件 config 暂无
27
- # 自定义字段,故此处不声明;预留写法:未来给本行加 `config:` 字段时,须同步在
28
- # 插件 Config schema 的对应字段加 `.volatile()` 才会免重载,届时再补注释示例。
26
+ # 该声明落在插件源码的 schema 上,**不是 patch 文件字段**。
27
+ # ⚠️ 0.1.7 实测(2026-09-23,0.1.7-alpha.2 修复):volatile 不只是免重载——
28
+ # SettingsForms.describe volatileForm 门槛下发 entry,**Config 全字段(12 个,
29
+ # 见 src/fileOpenSettings.ts buildSettingsSchema 的 { volatile: true } 模式)必须标记**,
30
+ # 漏标 = 本插件 ns 永不进 describe = 设置页「设置服务暂不可用」+ 写入抛
31
+ # has no volatile fields;本行 config 若新增字段,同样须在 Config schema 对应字段
32
+ # 加 `.volatile()` 才会免重载并出现在设置页。
29
33
  # 另:0.1.7 起 `dsh.bundle.patch` 支持 `patch: string | string[]`(有序列表,
30
34
  # 逐层施加),本包单文件写法保持兼容,无需改动。
31
35
  - insert: