@dingtalk-real-ai/dingtalk-connector 0.8.15-beta.2 → 0.8.16

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 CHANGED
@@ -5,7 +5,7 @@ All notable changes to this project will be documented in this file.
5
5
  The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
6
6
  and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
7
7
 
8
- ## [0.8.15-beta.1] - 2026-04-16
8
+ ## [0.8.16] - 2026-04-16
9
9
 
10
10
  ### 修复 / Fixes
11
11
  - 🐛 **AI Card 流式更新 QPS 限流** - 新增全局令牌桶限流器(`cardRateLimiter`),所有会话共享 20 QPS 速率限制,避免多会话并发时总 QPS 叠加超过钉钉 API 限制;遇到 403 QpsLimit 自动退避 2s 后重试
@@ -14,6 +14,9 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
14
14
  - 🐛 **streamAICard null card 崩溃** - 修复 `createAICardForTarget` 返回 `null` 后调用方通过 `as any` 绕过类型检查导致 `Cannot read properties of null` 崩溃,添加 null 守卫
15
15
  **streamAICard null card crash** - Fixed crash when `createAICardForTarget` returns `null` and callers bypass type checking; added null guard
16
16
 
17
+ - 🐛 **插件配置格式兼容性** - 修复 `package.json` 中缺少 `openclaw.channels` 数组导致旧版 OpenClaw 框架安装失败的问题,同时保留新版 `openclaw.channel` 对象格式
18
+ **Plugin config format compatibility** - Fixed missing `openclaw.channels` array in `package.json` that caused installation failure on older OpenClaw framework versions; both old and new config formats are now present
19
+
17
20
  ### 改进 / Improvements
18
21
  - ✅ **单实例节流间隔优化** - `reply-dispatcher.ts` 的 `updateInterval` 从 500ms 增大到 800ms,配合全局限流器降低单实例发送频率
19
22
  **Per-instance throttle interval** - Increased `updateInterval` from 500ms to 800ms to complement global rate limiter
@@ -36,5 +36,5 @@ openclaw plugins install @dingtalk-real-ai/dingtalk-connector@0.8.15-beta.1
36
36
  ---
37
37
 
38
38
  **发布日期 / Release Date**:2026-04-16
39
- **版本号 / Version**:v0.8.15-beta.1
39
+ **版本号 / Version**:v0.8.16
40
40
  **兼容性 / Compatibility**:OpenClaw Gateway 0.4.0+
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@dingtalk-real-ai/dingtalk-connector",
3
- "version": "0.8.15-beta.2",
3
+ "version": "0.8.16",
4
4
  "description": "Official OpenClaw DingTalk channel plugin | 钉钉官方 OpenClaw 插件",
5
5
  "main": "index.ts",
6
6
  "type": "module",