Skip to content

Commit 3b7e5e1

Browse files
authored
fix: update semantic-release and @semantic-release/npm to stable versions (#17)
## Problem `@semantic-release/npm@13.0.0-alpha.5` depends on `npm@github:npm/cli#oidc`, but the `oidc` branch has been deleted from the `npm/cli` repo, causing `npm install` to fail: ``` npm error command git --no-replace-objects checkout oidc npm error error: pathspec 'oidc' did not match any file(s) known to git ``` This breaks all downstream release workflows (e.g. [cnpm/unpkg-white-list](https://github.com/cnpm/unpkg-white-list/actions/runs/22700918457/job/65844808852)). ## Fix - `@semantic-release/npm`: `13.0.0-alpha.5` → `^13.1.5` (stable, uses `npm@^11.6.2` from registry) - `semantic-release`: `25.0.0-alpha.4` → `^25.0.3` (stable) <!-- This is an auto-generated comment: release notes by coderabbit.ai --> ## Summary by CodeRabbit * **Chores** * Updated release automation dependencies to stable versions for enhanced reliability and compatibility. <!-- end of auto-generated comment: release notes by coderabbit.ai -->
1 parent 5aa8776 commit 3b7e5e1

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

scripts/npm-release/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,15 +3,15 @@
33
"dependencies": {
44
"@actions/core": "^1.10.0",
55
"@actions/exec": "^1.1.1",
6-
"@semantic-release/npm": "13.0.0-alpha.5",
6+
"@semantic-release/npm": "^13.1.5",
77
"@semantic-release/changelog": "^6.0.3",
88
"@semantic-release/exec": "^7.1.0",
99
"@semantic-release/git": "^10.0.1",
1010
"@semantic-release/commit-analyzer": "^13.0.1",
1111
"@semantic-release/release-notes-generator": "^14.0.3",
1212
"@semantic-release/github": "^11.0.3",
1313
"conventional-changelog-conventionalcommits": "^5.0.0",
14-
"semantic-release": "25.0.0-alpha.4",
14+
"semantic-release": "^25.0.3",
1515
"undici": "^5.14.0"
1616
},
1717
"devDependencies": {

0 commit comments

Comments
 (0)