@fxri/toolkit 1.1.1 → 1.1.2
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 +11 -0
- package/package.json +5 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,12 @@
|
|
|
1
1
|
# @fxri/toolkit
|
|
2
2
|
|
|
3
|
+
## 1.1.2
|
|
4
|
+
> 2026-09-03 发布
|
|
5
|
+
|
|
6
|
+
### 🐛 补丁修复
|
|
7
|
+
|
|
8
|
+
- package.json 补充 repository 字段,npm 包详情页展示 GitHub 仓库地址。
|
|
9
|
+
|
|
3
10
|
## 1.1.1
|
|
4
11
|
> 2026-09-03 发布
|
|
5
12
|
|
|
@@ -8,6 +15,7 @@
|
|
|
8
15
|
- CLI 改用 Commander 实现,新增 --help/--version 与 tasks/changelog 子命令帮助,changelog 透传子命令支持未知选项;commander@^14 作为运行时依赖。
|
|
9
16
|
|
|
10
17
|
## 1.1.0
|
|
18
|
+
|
|
11
19
|
> 2026-09-03 发布
|
|
12
20
|
|
|
13
21
|
### ✨ 新增功能
|
|
@@ -15,6 +23,7 @@
|
|
|
15
23
|
- 新增隐私脱敏能力:落盘记录自由文本时默认对邮箱、手机号、身份证、IPv4、密钥、JWT、内网 URL 做掩码,支持 --no-redact / FX_REDACT / .toolkitrc.json 三档开关与自定义规则;归档任务改为按完成时间降序并规范化 completed;修复 CHANGELOG 日期补全重复插入。
|
|
16
24
|
|
|
17
25
|
## 1.0.2
|
|
26
|
+
|
|
18
27
|
> 2026-09-03 发布
|
|
19
28
|
|
|
20
29
|
### 🐛 补丁修复
|
|
@@ -22,6 +31,7 @@
|
|
|
22
31
|
- README 新增「方案落盘(任务区)」章节,明确 npx→ 全局 → 兜底输出的调用优先级,以及 toolkit tasks 校验/归档与 changelog 变更集/发版的使用流程。
|
|
23
32
|
|
|
24
33
|
## 1.0.1
|
|
34
|
+
|
|
25
35
|
> 2026-09-02 发布
|
|
26
36
|
|
|
27
37
|
### 🐛 补丁修复
|
|
@@ -34,6 +44,7 @@
|
|
|
34
44
|
- 移除公开包元数据中的私有仓库地址
|
|
35
45
|
|
|
36
46
|
## 1.0.0
|
|
47
|
+
|
|
37
48
|
> 2026-09-02 发布
|
|
38
49
|
|
|
39
50
|
### ✨ 新增功能
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@fxri/toolkit",
|
|
3
|
-
"version": "1.1.
|
|
3
|
+
"version": "1.1.2",
|
|
4
4
|
"description": "开发工程化工具集:任务管理 + 多语言 CHANGELOG 发布。",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"author": {
|
|
@@ -8,6 +8,10 @@
|
|
|
8
8
|
"email": "tqy@fxri.net",
|
|
9
9
|
"url": "https://fxri.net:444/"
|
|
10
10
|
},
|
|
11
|
+
"repository": {
|
|
12
|
+
"type": "git",
|
|
13
|
+
"url": "https://github.com/fxri-net/toolkit.git"
|
|
14
|
+
},
|
|
11
15
|
"type": "module",
|
|
12
16
|
"main": "./dist/index.js",
|
|
13
17
|
"exports": {
|