@yaoyuanchao/dingtalk 1.4.9 → 1.4.10

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.
Files changed (2) hide show
  1. package/CHANGELOG.md +9 -2
  2. package/package.json +1 -4
package/CHANGELOG.md CHANGED
@@ -5,15 +5,22 @@ 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
+ ## [1.4.10] - 2026-01-30
9
+
10
+ ### Fixed
11
+
12
+ - **Remove peerDependencies** — removed `clawdbot` from peerDependencies to prevent npm 7+ from installing the entire clawdbot package (400+ deps, ~55MB) into plugin's node_modules; clawdbot is injected at runtime via jiti alias
13
+ - **`clawdbot plugins update` now works** — installation reduced from timeout (~5min+) to seconds
14
+
8
15
  ## [1.4.9] - 2026-01-30
9
16
 
10
17
  ### Fixed
11
18
 
12
- - **zod v4 compatibility** — upgraded zod dependency from `^3.22.0` to `^4.3.6` to match clawdbot's version; fixed `ZodError.errors` → `ZodError.issues` API change that caused "Cannot find module 'zod'" errors during `clawdbot plugins update`
19
+ - **zod v4 compatibility** — upgraded zod dependency from `^3.22.0` to `^4.3.6` to match clawdbot's version; fixed `ZodError.errors` → `ZodError.issues` API change
13
20
 
14
21
  ### Changed
15
22
 
16
- - **Dependency alignment** — now uses same zod version as clawdbot core and clawdbot-feishu plugin, eliminating duplicate zod installations and version conflicts
23
+ - **Dependency alignment** — now uses same zod version as clawdbot core and clawdbot-feishu plugin
17
24
 
18
25
  ## [1.3.6] - 2026-01-28
19
26
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@yaoyuanchao/dingtalk",
3
- "version": "1.4.9",
3
+ "version": "1.4.10",
4
4
  "type": "module",
5
5
  "description": "DingTalk channel plugin for Clawdbot with Stream Mode support",
6
6
  "license": "MIT",
@@ -41,9 +41,6 @@
41
41
  "dingtalk-stream": "^2.1.4",
42
42
  "zod": "^4.3.6"
43
43
  },
44
- "peerDependencies": {
45
- "clawdbot": ">=2026.1.24"
46
- },
47
44
  "files": [
48
45
  "index.ts",
49
46
  "src/**/*.ts",