@tencent-ai/codebuddy-code 2.58.0 → 2.59.0-next.511aac4.20260312
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 +17 -0
- package/dist/codebuddy-headless.js +70 -54
- package/dist/codebuddy.js +58 -42
- package/dist/web-ui/assets/index-BNoVPAG4.css +32 -0
- package/dist/web-ui/assets/{index-BkGRkbhp.js → index-cFMRajhI.js} +105 -94
- package/dist/web-ui/index.html +2 -2
- package/package.json +3 -2
- 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/dist/web-ui/assets/index-Cd7zV4KY.css +0 -32
package/CHANGELOG.md
CHANGED
|
@@ -7,6 +7,23 @@ CodeBuddy Code 的所有重要更新都会记录在这里。
|
|
|
7
7
|
|
|
8
8
|
## [未发布]
|
|
9
9
|
|
|
10
|
+
## [2.59.0] - 2026-03-12
|
|
11
|
+
|
|
12
|
+
### 🎉 新功能
|
|
13
|
+
|
|
14
|
+
- **Hook 驱动的 Worktree 支持**:为 SVN、Perforce 等非 Git VCS 项目提供隔离工作区能力,通过 `WorktreeCreate` 和 `WorktreeRemove` Hook 事件实现完全自定义的 worktree 创建和清理逻辑;即使在 Git 仓库中,若配置了 `WorktreeCreate` Hook,也会优先使用 Hook-based 方式;Hook-based worktree 跳过 `git status` 检测,始终显示保留/删除菜单
|
|
15
|
+
- **Worktree 指定基础分支**:`--worktree` 参数现在支持配套使用 `--worktree-branch <branch>` 来指定 worktree 的基础分支,支持远程分支和本地分支两种格式;分支不存在时自动降级到远程默认分支并打印警告。`EnterWorktree` 工具同步支持 `branch` 参数
|
|
16
|
+
|
|
17
|
+
### 🔧 功能改进
|
|
18
|
+
|
|
19
|
+
- **Plan 模式审批**:修复 ExitPlanMode 工具在 Web UI 中审批时无法正确显示 plan 内容的问题,现在用户可以在审批弹窗中看到完整的计划内容和权限请求列表
|
|
20
|
+
- **图片读取去重优化**:修复同一路径图片被修改后重新读取时被错误去重的问题,现在能正确识别文件更新并返回最新图片内容;同时当文件未变化时,提供明确的"文件内容未改变"提示
|
|
21
|
+
- **Worktree Hook 兼容性**:补齐 `WorktreeCreate` 和 `WorktreeRemove` 的 SDK 协议与文档说明,确保自定义 worktree hook 能接收完整上下文并稳定接入
|
|
22
|
+
|
|
23
|
+
### 🐛 问题修复
|
|
24
|
+
|
|
25
|
+
- **ACP 连接清理**:修复新建聊天时旧连接未正确清理,导致广播消息重复渲染的问题
|
|
26
|
+
|
|
10
27
|
## [2.58.0] - 2026-03-11
|
|
11
28
|
|
|
12
29
|
### ✨ 新功能
|