@tencent-ai/codebuddy-code 2.109.2 → 2.109.3
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 +16 -0
- package/dist/codebuddy-headless.js +144 -88
- package/dist/codebuddy.js +148 -92
- package/package.json +1 -1
- package/product.cloudhosted.json +2 -2
- package/product.internal.json +2 -2
- package/product.ioa.json +2 -2
- package/product.json +2 -2
- package/product.selfhosted.json +2 -2
- package/vendor/shim/genie-safe-delete.cjs +29 -0
- package/vendor/shim/safe-bin/safe-delete-common.sh +48 -21
- package/vendor/shim/safe-delete-bulk-guard.cjs +447 -0
- package/vendor/shim/sitecustomize.py +38 -0
package/CHANGELOG.md
CHANGED
|
@@ -7,6 +7,22 @@ CodeBuddy Code 的所有重要更新都会记录在这里。
|
|
|
7
7
|
|
|
8
8
|
## [未发布]
|
|
9
9
|
|
|
10
|
+
## [2.109.3] - 2026-06-23
|
|
11
|
+
|
|
12
|
+
### 🎉 新功能
|
|
13
|
+
|
|
14
|
+
- **Prompt Stop Hook 支持 continueOnBlock**:新增 `continueOnBlock` 配置项,设为 `true` 时 prompt 类型的 Stop hook 在条件不满足时可驱动 Agent 继续循环工作,实现类似 `/goal` 的持续工作效果
|
|
15
|
+
|
|
16
|
+
### 🐛 Bug 修复
|
|
17
|
+
|
|
18
|
+
- **登录链接显示优化**:修复登录页面 URL 链接显示时序问题,确保用户在浏览器打开前即可看到可复制的登录链接,避免因 xdg-open 超时或失败导致链接延迟显示
|
|
19
|
+
- **Checkpoint 恢复**:修复 revert 到早期 checkpoint 时,v1 版本文件被错误跳过未恢复的问题
|
|
20
|
+
- **MCP 配置加载**:修复无头/服务模式下本地 `.mcp.json` 会被错误忽略的问题。现在仅在显式传入 `--strict-mcp-config` 时,才只使用 `--mcp-config` 或 `mcpServers` 指定的 MCP 服务器
|
|
21
|
+
- **会话标题恢复**:修复恢复图片类会话后标题被重复提取或停留在占位标题的问题,避免旧标题被异常覆盖
|
|
22
|
+
- **MCP 连接幂等性**:修复同一连接代理被并发/重复连接时,因底层传输已启动而被误判为断开、导致已连接服务的工具短暂丢失的问题。重复连接遇到"传输已启动"时按"已连接"幂等处理,不再翻转为断开状态
|
|
23
|
+
- **预热进程 CLI 参数丢失**:修复预热(prewarm)进程被 activate 唤醒后,`--model` / `--effort` / `--settings` / `--setting-sources` 等 CLI scope 配置被静默丢弃的问题。现改为订阅配置变更流,activate 重写 argv 后自动重解析刷新,并以串行队列 + 原子赋值消除并发刷新竞态
|
|
24
|
+
- **权限模式竞态修复**:修复 Desktop sidecar 模式下两次中间件传递导致 prePlanPermissionMode 被错误覆盖为 Default 的问题,避免只读工具(Read/Glob/Grep 等)在 Expert 场景下触发 WAITING_FOR_PERMISSION 死锁
|
|
25
|
+
|
|
10
26
|
## [2.109.2] - 2026-06-23
|
|
11
27
|
|
|
12
28
|
### 🔧 功能改进
|