ssh-release 0.8.0 → 1.0.0
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 +12 -0
- package/README.md +5 -1
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,17 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## 1.0.0 - 2026-06-25
|
|
4
|
+
|
|
5
|
+
### Added
|
|
6
|
+
|
|
7
|
+
- 发布 1.0.0 稳定版契约文档,明确 CLI 命令、JSON 输出、退出码、配置字段、发布后校验和安全边界的 SemVer 兼容规则。
|
|
8
|
+
|
|
9
|
+
## 0.9.0 - 2026-06-25
|
|
10
|
+
|
|
11
|
+
### Added
|
|
12
|
+
|
|
13
|
+
- 增加失败恢复指南,覆盖远端锁、发布后校验失败、远端 `tar` 失败、SSH 登录失败、回滚失败和 CI/CD 失败处理流程。
|
|
14
|
+
|
|
3
15
|
## 0.8.0 - 2026-06-25
|
|
4
16
|
|
|
5
17
|
### Added
|
package/README.md
CHANGED
|
@@ -6,7 +6,7 @@
|
|
|
6
6
|
|
|
7
7
|
## 当前状态
|
|
8
8
|
|
|
9
|
-
|
|
9
|
+
当前版本已进入 1.0 稳定版,CLI 命令、JSON 输出、配置字段和安全边界见 [docs/contracts.md](https://github.com/JackEngineer/ssh-release/blob/main/docs/contracts.md)。
|
|
10
10
|
|
|
11
11
|
已实现:
|
|
12
12
|
|
|
@@ -365,6 +365,8 @@ npm install -g "$PACK_DIR"/ssh-release-"$VERSION".tgz --prefix "$PACK_DIR/prefix
|
|
|
365
365
|
|
|
366
366
|
GitHub Actions 发布模板见 [docs/github-actions.md](https://github.com/JackEngineer/ssh-release/blob/main/docs/github-actions.md)。
|
|
367
367
|
|
|
368
|
+
失败恢复指南见 [docs/recovery.md](https://github.com/JackEngineer/ssh-release/blob/main/docs/recovery.md)。
|
|
369
|
+
|
|
368
370
|
版本变更见 [CHANGELOG.md](https://github.com/JackEngineer/ssh-release/blob/main/CHANGELOG.md)。
|
|
369
371
|
|
|
370
372
|
## 项目结构
|
|
@@ -405,7 +407,9 @@ tests/
|
|
|
405
407
|
└── validate.test.ts
|
|
406
408
|
|
|
407
409
|
docs/
|
|
410
|
+
├── contracts.md
|
|
408
411
|
├── github-actions.md
|
|
412
|
+
├── recovery.md
|
|
409
413
|
├── release-checklist.md
|
|
410
414
|
└── superpowers/specs/2026-06-25-ssh-release-design.md
|
|
411
415
|
```
|