@xqyz/xq-cli 0.2.0 → 0.2.1

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
@@ -10,6 +10,12 @@
10
10
 
11
11
  ## [Unreleased]
12
12
 
13
+ ## [0.2.1] - 2026-08-11
14
+
15
+ ### 安全性
16
+
17
+ - 将 Axios 升级到 `1.19.0`、Form Data 升级到 `4.0.6`,消除旧版 HTTP 与文件上传依赖的已知高危漏洞,保持现有 CLI 命令和参数兼容。
18
+
13
19
  ## [0.2.0] - 2026-08-10
14
20
 
15
21
  ### 新增
package/README.md CHANGED
@@ -45,7 +45,7 @@ npm pack
45
45
  That command produces a `.tgz` tarball which can be shared and installed with:
46
46
 
47
47
  ```bash
48
- npm install -g .\xqyz-xq-cli-0.1.4.tgz
48
+ npm install -g .\xqyz-xq-cli-0.2.0.tgz
49
49
  ```
50
50
 
51
51
  ## Usage
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@xqyz/xq-cli",
3
- "version": "0.2.0",
3
+ "version": "0.2.1",
4
4
  "description": "CLI for xique bid-book task workflows",
5
5
  "type": "module",
6
6
  "scripts": {
@@ -20,7 +20,7 @@
20
20
  "node": ">=18"
21
21
  },
22
22
  "dependencies": {
23
- "axios": "^0.27.2",
24
- "form-data": "^4.0.4"
23
+ "axios": "^1.19.0",
24
+ "form-data": "^4.0.6"
25
25
  }
26
26
  }