@tencent-ai/codebuddy-code 2.128.0 → 2.128.1-dev.42c83b4.202607292236
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 +9 -0
- package/dist/codebuddy-headless.js +61 -61
- package/dist/codebuddy.js +65 -65
- package/dist/web-ui/assets/{index-Si_iqq2l.js → index-Dl8Dlnne.js} +60 -60
- package/dist/web-ui/index.html +1 -1
- package/dist/web-ui/sw.js +1 -1
- 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 +3 -5
- package/product.selfhosted.json +2 -2
package/CHANGELOG.md
CHANGED
|
@@ -7,6 +7,15 @@ CodeBuddy Code 的所有重要更新都会记录在这里。
|
|
|
7
7
|
|
|
8
8
|
## [未发布]
|
|
9
9
|
|
|
10
|
+
## [2.128.1] - 2026-07-29
|
|
11
|
+
|
|
12
|
+
### 🐛 问题修复
|
|
13
|
+
|
|
14
|
+
- **预热进程首轮对话人设错误**:修复命中预热进程池时,第一轮对话使用默认人设而非透传人设、第二轮才恢复的问题。预热待命期间不再提前构建 agent,改为激活后携带完整参数一次性构建,消除与首轮请求的竞态。
|
|
15
|
+
- **预热(prewarm)激活前修改 `settings.json` 不生效**:`AgentManager` 在 `@PostConstruct` 阶段就预热 settings 缓存并 memoize initialize 元数据快照(`currentModelId` 由 `settings.get('model')` 派生),预热待机进程冷启动时用户 session 的 `settings.json` 往往还不存在,导致快照冻结为默认模型;激活后 `getInitializeMetadata()` 复用旧快照,用户在激活前才写入/修改的 `settings.json`(`model` 等字段)永远不生效(`currentModelId` 恒为默认模型)。现将「预热 settings 缓存 + 计算快照」在待机期延后到激活落定后执行,激活前的 `settings.json` 变更可正常同步生效;`models.json`(用户级 / 项目级)原本已能正确同步。
|
|
16
|
+
- **同类修复 `ThemeService`**:`theme` 主题设置存在相同的待机期一次性读取 latch,激活前修改的主题不生效,已用相同方式修复。 #77561
|
|
17
|
+
- **国际版取消分享链接能力**:国际版 CLI 用户不再提供 ShareLink 功能,iOA 及内部/国内产品线保持不变。
|
|
18
|
+
|
|
10
19
|
## [2.128.0] - 2026-07-28
|
|
11
20
|
|
|
12
21
|
### 🎉 新功能
|