@tencent-ai/codebuddy-code 2.114.2-dev.c456e51.202607021658 → 2.114.3-dev.67cb2ee.202607021750
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 +22 -0
- package/dist/codebuddy-headless.js +48 -44
- package/dist/codebuddy.js +51 -47
- package/dist/web-ui/docs/cn/cli/release-notes/v2.114.3.md +14 -1
- package/dist/web-ui/docs/en/cli/release-notes/v2.114.3.md +15 -2
- package/dist/web-ui/docs/search-index-en.json +1 -1
- package/dist/web-ui/docs/search-index-zh.json +1 -1
- package/package.json +4 -4
- 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
|
@@ -11,4 +11,17 @@
|
|
|
11
11
|
## 🔧 改进优化
|
|
12
12
|
|
|
13
13
|
- **PWA 图标优化**:更新 Web UI logo 并优化 PWA 图标配置,拆分 any/maskable 用途,提升移动端安装体验
|
|
14
|
-
- **Windows 沙箱写规则调整**:将 Windows allowWrite 显式规则从 `pinned_allow` 调整为 `inherit_user
|
|
14
|
+
- **Windows 沙箱写规则调整**:将 Windows allowWrite 显式规则从 `pinned_allow` 调整为 `inherit_user`,让沙箱写权限更贴合用户实际配置
|
|
15
|
+
- **侧边栏状态持久化**:侧边栏展开/收起状态通过后端存储持久化,PWA 重新打开时自动恢复
|
|
16
|
+
- **子代理交互增强**:子代理 timeline 中展示用户发送的消息,改善多轮交互的上下文可读性;处理事件竞争场景,当 tool_call 尚未到达时暂存消息并在到达后自动 flush
|
|
17
|
+
- **视图状态恢复**:mainView 持久化到后端,刷新页面后恢复之前的视图(URL hash 优先)
|
|
18
|
+
- **调试请求日志**:`CODEBUDDY_DEBUG_REQUEST` 现在能正确展示已压缩的请求明文,便于排查工具/系统提示词内容
|
|
19
|
+
|
|
20
|
+
## 🐛 问题修复
|
|
21
|
+
|
|
22
|
+
- **MCP 工具数字参数校验**:修复 MCP 连接器工具接收数字类型参数时因模型以字符串形式传入而校验失败的问题,iWiki、工蜂、TAPD 等连接器恢复正常
|
|
23
|
+
- **预热会话项目级 MCP**:修复预热进程唤醒切换工作目录后,项目级 MCP server 无法加载的问题
|
|
24
|
+
- **后台任务等待**:修复等待后台任务时可能出现的重复轮询问题,阻塞等待时会真正挂起直到任务完成
|
|
25
|
+
- **流式推理内容**:修复部分模型在流式回复中重复累积推理片段的问题
|
|
26
|
+
- **文件下载安全加固**:文件内容 API 强制 Content-Disposition: attachment 防止 XSS
|
|
27
|
+
- **ActivityBar 侧边栏切换**:将设置按钮替换为侧边栏面板切换按钮,操作更直觉
|
|
@@ -10,5 +10,18 @@
|
|
|
10
10
|
|
|
11
11
|
## 🔧 Improvements
|
|
12
12
|
|
|
13
|
-
- **PWA Icon Optimization**: Updated
|
|
14
|
-
- **Windows Sandbox Write Rule Adjustment**: Changed
|
|
13
|
+
- **PWA Icon Optimization**: Updated Web UI logo and optimized PWA icon configuration, splitting any/maskable purposes for better mobile installation experience
|
|
14
|
+
- **Windows Sandbox Write Rule Adjustment**: Changed Windows allowWrite explicit rules from `pinned_allow` to `inherit_user`, aligning sandbox write permissions with user configuration
|
|
15
|
+
- **Sidebar State Persistence**: Sidebar expand/collapse state persists via backend storage, automatically restored when PWA reopens
|
|
16
|
+
- **Sub-agent Interaction Enhancement**: User messages now display in sub-agent timeline for better multi-turn interaction context; event race conditions handled with message buffering when tool_call has not yet arrived
|
|
17
|
+
- **View State Restoration**: mainView persisted to backend, restoring previous view after page refresh (URL hash takes priority)
|
|
18
|
+
- **Debug Request Logging**: `CODEBUDDY_DEBUG_REQUEST` now correctly displays decompressed request plaintext for easier debugging of tool/system prompt content
|
|
19
|
+
|
|
20
|
+
## 🐛 Bug Fixes
|
|
21
|
+
|
|
22
|
+
- **MCP Tool Numeric Parameter Validation**: Fixed MCP connector tools failing with "must be number" validation error when the model passes numeric parameters as strings; auto-coercion now restores normal operation for iWiki, Gongfeng, TAPD and other connectors
|
|
23
|
+
- **Prewarm Session Project MCP**: Fixed project-level MCP servers from `.mcp.json` not loading after prewarm process wakes and switches working directory
|
|
24
|
+
- **Background Task Waiting**: Fixed potential polling loop when waiting for background tasks — block=true requests now properly suspend until task completion instead of immediately returning "still running"
|
|
25
|
+
- **Streaming Reasoning Content**: Fixed some models duplicating accumulated reasoning fragments during streaming responses
|
|
26
|
+
- **File Download Security**: File content API now enforces Content-Disposition: attachment to prevent browser inline rendering XSS
|
|
27
|
+
- **ActivityBar Sidebar Toggle**: Replaced settings button with sidebar panel toggle button for more intuitive operation
|