@tencent-ai/codebuddy-code 2.127.0-dev.fed97d8.202607260932 → 2.127.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 +10 -0
- package/dist/codebuddy-headless.js +5 -5
- package/dist/codebuddy.js +5 -5
- package/package.json +2 -3
- 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,16 @@ CodeBuddy Code 的所有重要更新都会记录在这里。
|
|
|
7
7
|
|
|
8
8
|
## [未发布]
|
|
9
9
|
|
|
10
|
+
## [2.127.2] - 2026-07-26
|
|
11
|
+
|
|
12
|
+
### 🐛 问题修复
|
|
13
|
+
|
|
14
|
+
- **无参工具调用被误过滤导致卡死**:修复部分无参数工具(如无参 schema 的 MCP 工具)以空参数发起合法调用时,被判定为无效调用并连同已配对的执行结果一起从模型输入中移除的问题。此前会导致模型丢失工具上下文、反复重试同一调用最终卡死;现在空参数会规范化为合法的空对象,正常保留调用与结果。
|
|
15
|
+
- **工具调用循环检测**:修复推理模型下循环检测完全失效的问题。此前每次工具调用前的 `reasoning` item 会中断尾部扫描,使连续计数永远为 1,实测有会话连续重复调用同一工具 96 次仍未被拦截。现在 `reasoning` 与 `function_call_result` 一样视为透明项,助手可见文本仍作为序列边界。
|
|
16
|
+
- **套件市场手动更新后信息未刷新**:修复手动更新套件市场后,展示的名称/描述仍停留在更新前旧内容的问题;同时修复多进程共享同一套件目录时,某个进程更新后其它进程插件列表缓存未及时感知的问题。
|
|
17
|
+
- **子 agent 轮次**:修复 max_turns 交由模型控制时,子 agent 实际轮次未达 200 就报错中断的问题。现在 max_turns 会设置最小下限(200),并将命中上限的场景从报错降级为 warning。 #75034
|
|
18
|
+
- **Windows Hook**:修复中文系统下直连 PowerShell 执行插件 Hook 时的两个问题:一是 PowerShell 的 GBK/CP936 中文报错被按 UTF-8 强解产生方块乱码(U+FFFD),现改用与 Bash/PowerShell 工具一致的智能解码(严格 UTF-8 → cp936 兜底)并按 chunk 边界拼接多字节序列;二是 `-File` 传入的 MSYS Unix 路径(`/c/Users/...`)无法被原生 PowerShell 定位,现自动还原为 Windows 路径(`C:\Users\...`)。 #63535
|
|
19
|
+
|
|
10
20
|
## [2.127.0] - 2026-07-24
|
|
11
21
|
|
|
12
22
|
### 🎉 新功能
|