dynapm 1.0.6 → 1.0.8
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 +23 -0
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -5,6 +5,29 @@
|
|
|
5
5
|
格式基于 [Keep a Changelog](https://keepachangelog.com/zh-CN/1.0.0/),
|
|
6
6
|
版本号遵循 [语义化版本](https://semver.org/lang/zh-CN/)。
|
|
7
7
|
|
|
8
|
+
## [1.0.7] - 2025-02-10
|
|
9
|
+
|
|
10
|
+
### 🔧 修复
|
|
11
|
+
- 修复 GitHub Actions 权限配置
|
|
12
|
+
- 添加 contents: write 权限以创建 GitHub Release
|
|
13
|
+
- 解决 403 "Resource not accessible by integration" 错误
|
|
14
|
+
|
|
15
|
+
---
|
|
16
|
+
|
|
17
|
+
## [1.0.6] - 2025-02-10
|
|
18
|
+
|
|
19
|
+
### 🔧 修复
|
|
20
|
+
- 修复 CI 配置以支持 npm OIDC 发布
|
|
21
|
+
- 使用 Node.js 24 获得满足 OIDC 要求的 npm 11.x
|
|
22
|
+
- 移除 setup-node 的 registry-url 配置
|
|
23
|
+
- 使用 softprops/action-gh-release@v2 替代已废弃的 actions/create-release@v1
|
|
24
|
+
- 改进 CHANGELOG 提取脚本,使用 body_path 参数读取 Release 说明
|
|
25
|
+
|
|
26
|
+
### 📚 文档
|
|
27
|
+
- 完善发布流程文档
|
|
28
|
+
|
|
29
|
+
---
|
|
30
|
+
|
|
8
31
|
## [1.0.5] - 2025-02-10
|
|
9
32
|
|
|
10
33
|
### ✨ 新增
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "dynapm",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.8",
|
|
4
4
|
"description": "DynaPM is a dynamic start-stop application management tool with serverless-like features designed for resource-constrained environments. It starts and stops programs on demand, optimizes resource usage, and is suitable for private deployments. ",
|
|
5
5
|
"main": "index.js",
|
|
6
6
|
"bin": {
|