@tencent-ai/agent-sdk 0.3.19 → 0.3.21
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 +21 -0
- package/cli/dist/codebuddy.js +3 -3
- 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 +2 -2
- package/cli/product.selfhosted.json +2 -2
- package/lib/acp/converter.d.ts +0 -1
- package/lib/acp/converter.d.ts.map +1 -1
- package/lib/acp/converter.js +45 -18
- package/lib/acp/converter.js.map +1 -1
- package/lib/query.d.ts +22 -0
- package/lib/query.d.ts.map +1 -1
- package/lib/query.js +63 -11
- package/lib/query.js.map +1 -1
- package/lib/session.d.ts +6 -0
- package/lib/session.d.ts.map +1 -1
- package/lib/session.js +48 -20
- package/lib/session.js.map +1 -1
- package/lib/transport/index.d.ts +4 -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.map +1 -1
- package/lib/transport/process-transport.js +70 -15
- package/lib/transport/process-transport.js.map +1 -1
- package/lib/types.d.ts +40 -3
- package/lib/types.d.ts.map +1 -1
- package/lib/types.js.map +1 -1
- package/package.json +1 -1
package/cli/CHANGELOG.md
CHANGED
|
@@ -5,6 +5,27 @@ CodeBuddy Code 的所有重要更新都会记录在这里。
|
|
|
5
5
|
我们遵循 [语义化版本](https://semver.org/spec/v2.0.0.html) 规范。
|
|
6
6
|
|
|
7
7
|
|
|
8
|
+
## [2.40.1] - 2026-01-27
|
|
9
|
+
|
|
10
|
+
### 🐛 问题修复
|
|
11
|
+
|
|
12
|
+
- **图片生成工具**:修复 Windows 系统下输出目录路径解析错误的问题
|
|
13
|
+
- **输入建议**:修复从建议菜单选择后消息重复发送的问题
|
|
14
|
+
|
|
15
|
+
### 🔧 功能改进
|
|
16
|
+
|
|
17
|
+
- **SDK 版本更新**:同步更新 SDK-JS 至 0.3.21,SDK-Python 至 0.3.19
|
|
18
|
+
|
|
19
|
+
## [2.40.0] - 2026-01-27
|
|
20
|
+
|
|
21
|
+
### 🎉 新功能
|
|
22
|
+
|
|
23
|
+
- **SDK 延迟控制请求同步**:SDK 新增延迟控制请求同步功能,支持在发送消息前设置权限模式和模型,提供更灵活的 API 调用方式
|
|
24
|
+
|
|
25
|
+
### 🔧 功能改进
|
|
26
|
+
|
|
27
|
+
- **SDK 版本更新**:同步更新 SDK-JS 至 0.3.20,SDK-Python 至 0.3.18
|
|
28
|
+
|
|
8
29
|
## [2.39.0] - 2026-01-26
|
|
9
30
|
|
|
10
31
|
### 🎉 新功能
|