@tencent-ai/agent-sdk 0.3.31 → 0.3.33
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/cli/CHANGELOG.md +20 -0
- package/cli/bin/codebuddy +3 -0
- package/cli/dist/codebuddy.js +8 -8
- package/cli/package.json +1 -1
- package/cli/product.cloudhosted.json +2 -2
- package/cli/product.internal.json +2 -2
- package/cli/product.ioa.json +2 -2
- package/cli/product.json +7 -5
- package/cli/product.selfhosted.json +2 -2
- package/lib/acp/agent.js +2 -2
- package/lib/acp/agent.js.map +1 -1
- package/lib/session.d.ts +13 -3
- package/lib/session.d.ts.map +1 -1
- package/lib/session.js +53 -41
- package/lib/session.js.map +1 -1
- package/lib/transport/index.d.ts +12 -0
- package/lib/transport/index.d.ts.map +1 -1
- package/lib/transport/index.js.map +1 -1
- package/lib/transport/process-transport.d.ts +14 -1
- package/lib/transport/process-transport.d.ts.map +1 -1
- package/lib/transport/process-transport.js +48 -32
- package/lib/transport/process-transport.js.map +1 -1
- package/package.json +1 -1
package/cli/CHANGELOG.md
CHANGED
|
@@ -5,6 +5,26 @@ CodeBuddy Code 的所有重要更新都会记录在这里。
|
|
|
5
5
|
我们遵循 [语义化版本](https://semver.org/spec/v2.0.0.html) 规范。
|
|
6
6
|
|
|
7
7
|
|
|
8
|
+
## [2.42.2] - 2026-01-31
|
|
9
|
+
|
|
10
|
+
### 🔧 功能改进
|
|
11
|
+
|
|
12
|
+
- **CI 并行测试**:MR 时单元测试和 E2E 测试并行执行,提升 CI 效率
|
|
13
|
+
- **热更新服务**:简化热更新流程,移除冗余的用户通知逻辑
|
|
14
|
+
- **SDK 版本更新**:同步更新 SDK-JS 至 0.3.33,SDK-Python 至 0.3.31
|
|
15
|
+
|
|
16
|
+
## [2.42.1] - 2026-01-31
|
|
17
|
+
|
|
18
|
+
### 🔧 功能改进
|
|
19
|
+
|
|
20
|
+
- **启动性能监控**:新增启动时间分析器,可在 /doctor 面板查看各阶段耗时
|
|
21
|
+
- **E2E 性能测试**:新增启动性能 E2E 测试,CI 中自动验证启动时间不超过阈值
|
|
22
|
+
- **WSL 环境支持**:自动检测 WSL 环境并提示模型使用正确的 Linux 路径格式
|
|
23
|
+
- **路径兼容性**:修复模型在非 Windows 平台发送 Windows 风格路径时的解析问题
|
|
24
|
+
- **Session 初始化优化**:优化 Session 的 transport 初始化逻辑,确保并发调用时只执行一次初始化
|
|
25
|
+
- **Transport 就绪检测**:改进 CLI 进程就绪状态判断,使用显式标志位替代轮询检测
|
|
26
|
+
- **SDK 版本更新**:同步更新 SDK-JS 至 0.3.32,SDK-Python 至 0.3.30
|
|
27
|
+
|
|
8
28
|
## [2.42.0] - 2026-01-30
|
|
9
29
|
|
|
10
30
|
### 🎉 新功能
|
package/cli/bin/codebuddy
CHANGED