Skip to content

Commit 7c41970

Browse files
勾勾的数字生命勾勾的数字生命
authored andcommitted
chore: release 2.0.1
1 parent 3e155d4 commit 7c41970

5 files changed

Lines changed: 14 additions & 5 deletions

File tree

CHANGELOG.md

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,15 @@ All notable changes to this project will be documented in this file.
44

55
## [Unreleased]
66

7+
## [2.0.1] - 2026-03-14
8+
9+
### Fixed
10+
- 修复 WeCom Agent 回复 `/workspace/...` 文件路径时因动态会话工作区缺少目标文件,最终只回显路径文本而不实际发送图片/文件的问题
11+
- 修复 WeCom Bot 长连接对附件回调 payload 形态兼容不足,导致 PDF/文件消息被当成普通文本继续处理的问题;补充 `msg_type`、嵌套 `message``attachments/items``file_url/download_url/file_name/aes_key` 等兼容解析
12+
- 修复 WeCom Bot 入站文件/图片处理未完整透传媒体级 AES Key 的问题,降低 PDF/图片解密失败和内容损坏风险
13+
- 修复本地 `whisper-cli` 转写时临时音频文件在子进程真正读取前被提前清理,导致语音识别报错 `input file not found`
14+
- 补充 WeCom Bot 长连接未解析 callback 的运行日志,便于继续定位企业微信新回调形态
15+
716
## [2.0.0] - 2026-03-13
817

918
### Changed

openclaw.plugin.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"id": "openclaw-wechat",
33
"name": "OpenClaw-Wechat",
4-
"version": "2.0.0",
4+
"version": "2.0.1",
55
"description": "WeCom (企业微信) channel plugin for OpenClaw (自建应用回调 + 发送 API).",
66
"channels": [
77
"wecom"

package-lock.json

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@dingxiang-me/openclaw-wechat",
3-
"version": "2.0.0",
3+
"version": "2.0.1",
44
"type": "module",
55
"description": "WeCom (企业微信) channel plugin for OpenClaw (自建应用回调 + 发送 API).",
66
"license": "MIT",

src/wecom/plugin-constants.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
export const MAX_REQUEST_BODY_SIZE = 1024 * 1024;
2-
export const PLUGIN_VERSION = "2.0.0";
2+
export const PLUGIN_VERSION = "2.0.1";
33
export const WECOM_TEMP_DIR_NAME = "openclaw-wechat";
44
export const WECOM_TEMP_FILE_RETENTION_MS = 30 * 60 * 1000;
55
export const WECOM_MIN_FILE_SIZE = 5;

0 commit comments

Comments
 (0)