@cloud-copilot/iam-shrink 0.1.59 → 0.1.61
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/.github/workflows/release.yml +3 -5
- package/CHANGELOG.md +4 -0
- package/package.json +7 -7
|
@@ -18,21 +18,19 @@ jobs:
|
|
|
18
18
|
- name: Check out
|
|
19
19
|
uses: actions/checkout@v4
|
|
20
20
|
|
|
21
|
+
with:
|
|
22
|
+
fetch-depth: 0
|
|
21
23
|
- name: Set up Node
|
|
22
24
|
uses: actions/setup-node@v4
|
|
23
25
|
with:
|
|
24
|
-
node-version: '22'
|
|
26
|
+
node-version: '22.14.0'
|
|
25
27
|
|
|
26
28
|
- name: Run semantic-release
|
|
27
29
|
env:
|
|
28
30
|
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
|
29
31
|
run: |
|
|
30
|
-
START_VERSION=$(jq -r '.version' package.json)
|
|
31
|
-
npm install -g npm@latest
|
|
32
32
|
npm ci
|
|
33
33
|
npm run format-check
|
|
34
34
|
npm run build
|
|
35
35
|
npm run test
|
|
36
36
|
npx semantic-release
|
|
37
|
-
AFTER_VERSION=$(jq -r '.version' package.json)
|
|
38
|
-
[ "$START_VERSION" != "$AFTER_VERSION" ] && npm publish || true
|
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,7 @@
|
|
|
1
|
+
## [0.1.61](https://github.com/cloud-copilot/iam-shrink/compare/v0.1.60...v0.1.61) (2026-02-23)
|
|
2
|
+
|
|
3
|
+
## [0.1.60](https://github.com/cloud-copilot/iam-shrink/compare/v0.1.59...v0.1.60) (2026-02-23)
|
|
4
|
+
|
|
1
5
|
## [0.1.59](https://github.com/cloud-copilot/iam-shrink/compare/v0.1.58...v0.1.59) (2026-02-22)
|
|
2
6
|
|
|
3
7
|
## [0.1.58](https://github.com/cloud-copilot/iam-shrink/compare/v0.1.57...v0.1.58) (2026-02-21)
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@cloud-copilot/iam-shrink",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.61",
|
|
4
4
|
"description": "Shrink IAM Policies",
|
|
5
5
|
"scripts": {
|
|
6
6
|
"build": "npx tsc -p tsconfig.cjs.json && npx tsc -p tsconfig.esm.json && ./postbuild.sh",
|
|
@@ -41,14 +41,14 @@
|
|
|
41
41
|
"@semantic-release/changelog": "^6.0.3",
|
|
42
42
|
"@semantic-release/commit-analyzer": "^13.0.1",
|
|
43
43
|
"@semantic-release/git": "^10.0.1",
|
|
44
|
-
"@semantic-release/github": "^
|
|
45
|
-
"@semantic-release/npm": "^
|
|
44
|
+
"@semantic-release/github": "^12.0.6",
|
|
45
|
+
"@semantic-release/npm": "^13.1.4",
|
|
46
46
|
"@semantic-release/release-notes-generator": "^14.0.3",
|
|
47
47
|
"@types/node": "^22.5.0",
|
|
48
|
-
"@vitest/coverage-v8": "^
|
|
49
|
-
"semantic-release": "^
|
|
48
|
+
"@vitest/coverage-v8": "^4.0.18",
|
|
49
|
+
"semantic-release": "^25.0.3",
|
|
50
50
|
"typescript": "^5.5.4",
|
|
51
|
-
"vitest": "^
|
|
51
|
+
"vitest": "^4.0.18"
|
|
52
52
|
},
|
|
53
53
|
"peerDependencies": {
|
|
54
54
|
"@cloud-copilot/iam-data": ">=0.12.0 <1.0.0",
|
|
@@ -88,7 +88,7 @@
|
|
|
88
88
|
[
|
|
89
89
|
"@semantic-release/npm",
|
|
90
90
|
{
|
|
91
|
-
"npmPublish":
|
|
91
|
+
"npmPublish": true
|
|
92
92
|
}
|
|
93
93
|
],
|
|
94
94
|
[
|