@tencent-ai/codebuddy-code 2.114.1-dev.7b554d2.202607011747 → 2.114.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.
- package/CHANGELOG.md +21 -0
- package/dist/codebuddy-headless.js +36 -36
- package/dist/codebuddy.js +42 -42
- package/dist/web-ui/assets/{index-CsU9K4qX.js → index-B_atw6xs.js} +101 -102
- package/dist/web-ui/index.html +1 -1
- package/dist/web-ui/sw.js +1 -1
- package/lib/node/index.js +30 -0
- package/package.json +5 -6
- 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/CHANGELOG.md
CHANGED
|
@@ -7,6 +7,27 @@ CodeBuddy Code 的所有重要更新都会记录在这里。
|
|
|
7
7
|
|
|
8
8
|
## [未发布]
|
|
9
9
|
|
|
10
|
+
## [2.114.2] - 2026-07-01
|
|
11
|
+
|
|
12
|
+
### 🔧 功能改进
|
|
13
|
+
|
|
14
|
+
- **终端通信升级**:PTY 终端从 SSE (XHR) + HTTP 输入方式重构为 WebSocket 双向通信,降低延迟、简化代码。
|
|
15
|
+
- **编辑器独立窗口**:新增编辑器在新窗口中独立打开的功能,支持 standalone 模式全屏编辑。
|
|
16
|
+
- **终端滚动锁定**:用户向上翻阅终端时,新输出不再强制跳回底部,回到底部后自动恢复跟随。
|
|
17
|
+
- **终端链接识别**:终端中的 URL 和文件路径可点击,URL 在新标签页打开,文件路径跳转到编辑器对应行列。
|
|
18
|
+
- **Shift+Enter 换行**:终端中 Shift+Enter 发送换行序列,支持多行输入。
|
|
19
|
+
- **Git 文件监听**:Source Control 面板通过文件系统 watcher 实时感知 .git 目录变化,自动刷新状态。
|
|
20
|
+
- **Git Discard 安全模式**:撤销未跟踪文件时移到系统回收站而非直接删除。
|
|
21
|
+
- **文件列表合并**:Changes 与 Untracked 文件合并为统一的 Changes 列表。
|
|
22
|
+
- **布局溢出修复**:修复终端和编辑器在 flex 布局中可能的内容溢出问题。
|
|
23
|
+
- **sandbox-cli GC 保留时长**:启动 sandbox-cli 进程时固定传入 `--gc_retain_sec 600`,将文件版本 GC 保留窗口设置为 10 分钟。
|
|
24
|
+
- **模型路由排查**:增强模型选择链路日志,便于排查自动模型、会话模型意图与实际请求模型不一致的问题。
|
|
25
|
+
|
|
26
|
+
### 🐛 Bug 修复
|
|
27
|
+
|
|
28
|
+
- **修复 TUI 任务执行中却显示空闲、ESC 无法中断(只能退出程序)**:agent 实例跨 run 复用,被中断的上一轮 run 或 error-recovery / compact 等手动 emit 的迟到 `agent_end` 会把正在执行的新一轮 run 的状态机误打回 idle,导致 spinner 消失、ESC 失效。现按每-run 唯一的 RunContext 身份校验,丢弃 stale `agent_end`。
|
|
29
|
+
- **修复 tab queue 双 drain 竞态导致的 TUI 空闲误判**:一个 turn 结束、队列中有 Tab 入队消息时,`IdleQueueDrainService` 与 `InterruptionService` 会在同一个 `agent_end` 上并发触发两条 drain run,冗余的一条 emit `RUN_SKIPPED` 把 `pending` 打回 `idle`,使正在执行的新一轮 run 卡在 idle、spinner 消失、ESC 失效。现只有拥有运行态生命周期的 run 才发终结性 `RUN_SKIPPED`,保留正在执行的那轮 run 的状态。
|
|
30
|
+
|
|
10
31
|
## [2.114.1] - 2026-06-30
|
|
11
32
|
|
|
12
33
|
### 🔧 功能改进
|