ssh-release 0.7.0 → 0.9.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 +6 -0
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,17 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## 0.9.0 - 2026-06-25
|
|
4
|
+
|
|
5
|
+
### Added
|
|
6
|
+
|
|
7
|
+
- 增加失败恢复指南,覆盖远端锁、发布后校验失败、远端 `tar` 失败、SSH 登录失败、回滚失败和 CI/CD 失败处理流程。
|
|
8
|
+
|
|
9
|
+
## 0.8.0 - 2026-06-25
|
|
10
|
+
|
|
11
|
+
### Added
|
|
12
|
+
|
|
13
|
+
- 增加 GitHub Actions 发布模板文档,覆盖 Pull Request 预检、生产发布、`--json --progress` 输出、环境保护和 Secrets 使用方式。
|
|
14
|
+
|
|
3
15
|
## 0.7.0 - 2026-06-25
|
|
4
16
|
|
|
5
17
|
### Added
|
package/README.md
CHANGED
|
@@ -363,6 +363,10 @@ npm install -g "$PACK_DIR"/ssh-release-"$VERSION".tgz --prefix "$PACK_DIR/prefix
|
|
|
363
363
|
|
|
364
364
|
完整发布步骤见 [docs/release-checklist.md](https://github.com/JackEngineer/ssh-release/blob/main/docs/release-checklist.md)。
|
|
365
365
|
|
|
366
|
+
GitHub Actions 发布模板见 [docs/github-actions.md](https://github.com/JackEngineer/ssh-release/blob/main/docs/github-actions.md)。
|
|
367
|
+
|
|
368
|
+
失败恢复指南见 [docs/recovery.md](https://github.com/JackEngineer/ssh-release/blob/main/docs/recovery.md)。
|
|
369
|
+
|
|
366
370
|
版本变更见 [CHANGELOG.md](https://github.com/JackEngineer/ssh-release/blob/main/CHANGELOG.md)。
|
|
367
371
|
|
|
368
372
|
## 项目结构
|
|
@@ -403,6 +407,8 @@ tests/
|
|
|
403
407
|
└── validate.test.ts
|
|
404
408
|
|
|
405
409
|
docs/
|
|
410
|
+
├── github-actions.md
|
|
411
|
+
├── recovery.md
|
|
406
412
|
├── release-checklist.md
|
|
407
413
|
└── superpowers/specs/2026-06-25-ssh-release-design.md
|
|
408
414
|
```
|