@tencent-ai/codebuddy-code 2.50.3-next.d9942f6.20260214 → 2.50.4
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.js +81 -77
- package/package.json +2 -3
- package/product.cloudhosted.json +8 -3
- package/product.internal.json +9 -6
- package/product.ioa.json +8 -3
- package/product.json +15 -16
- package/product.selfhosted.json +8 -3
package/CHANGELOG.md
CHANGED
|
@@ -5,6 +5,23 @@ CodeBuddy Code 的所有重要更新都会记录在这里。
|
|
|
5
5
|
我们遵循 [语义化版本](https://semver.org/spec/v2.0.0.html) 规范。
|
|
6
6
|
|
|
7
7
|
|
|
8
|
+
## [2.50.4] - 2026-02-14
|
|
9
|
+
|
|
10
|
+
### 🔧 功能改进
|
|
11
|
+
|
|
12
|
+
- **后台任务统一为团队系统**:后台 Agent 自动创建轻量级团队,通过 SendMessage 回传结果,无需手动轮询
|
|
13
|
+
- **移除 TaskOutput 工具依赖**:后台任务完成后自动通知主 Agent,不再需要 TaskOutput 轮询获取结果
|
|
14
|
+
- **简化 UI 进度展示**:后台任务统一纳入 TeammateProgressView 展示,TodoProgressBar 移除 teammate 合并逻辑
|
|
15
|
+
- **启动性能优化**:优化首次启动时的初始化流程,减少不必要的等待时间,并行化注册流程,提升启动速度约 10%
|
|
16
|
+
- **终端渲染优化**:统一所有动画组件(Spinner、呼吸灯、计时器)为全局单一时钟驱动,减少独立定时器导致的终端闪动
|
|
17
|
+
- **Static 渲染修复**:修复消息完成后不显示、需要 resize 终端才能看到的问题,优化增量渲染机制
|
|
18
|
+
- **内存泄漏修复**:修复 `refreshStatic` 导致 Ink 内部 `fullStaticOutput` 无限累积的问题
|
|
19
|
+
- **任务清理修复**:修复失败的子任务未从 TaskManager 中移除导致进度显示残留的问题
|
|
20
|
+
|
|
21
|
+
### 🐛 问题修复
|
|
22
|
+
|
|
23
|
+
- **Bash 工具渲染**:修复 Bash 工具执行结果下方偶尔出现多余空白行的问题
|
|
24
|
+
|
|
8
25
|
## [2.50.3] - 2026-02-13
|
|
9
26
|
|
|
10
27
|
### 🐛 问题修复
|