super-release 1.14.0 → 1.15.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/README.md +3 -0
- package/bin/super-release-darwin-aarch64.tar.gz.sha256 +1 -1
- package/bin/super-release-darwin-x86_64.tar.gz.sha256 +1 -1
- package/bin/super-release-linux-aarch64-musl.tar.gz.sha256 +1 -1
- package/bin/super-release-linux-aarch64.tar.gz.sha256 +1 -1
- package/bin/super-release-linux-x86_64-musl.tar.gz.sha256 +1 -1
- package/bin/super-release-linux-x86_64.tar.gz.sha256 +1 -1
- package/bin/super-release-windows-x86_64.zip.sha256 +1 -1
- package/package.json +6 -6
package/README.md
CHANGED
|
@@ -555,6 +555,9 @@ The git step:
|
|
|
555
555
|
|
|
556
556
|
Tags are idempotent -- existing tags are skipped. The npm step checks the registry before publishing (`npm view`) and
|
|
557
557
|
skips versions that already exist. Non-404 errors (auth, network) abort the release to prevent partial publishes.
|
|
558
|
+
A publish the registry rejects as already published (`cannot publish over the previously published versions`) is also
|
|
559
|
+
treated as skipped; this is how already-published private packages are detected when `npm view` has no read access,
|
|
560
|
+
for example with trusted publishing and no `NODE_AUTH_TOKEN`.
|
|
558
561
|
|
|
559
562
|
## Monorepo Support
|
|
560
563
|
|
|
@@ -1 +1 @@
|
|
|
1
|
-
|
|
1
|
+
ffcf7f4115e9f03dff7357afaf1032c8d147143c4b2d235c2218b52c889b74b8 super-release-darwin-aarch64.tar.gz
|
|
@@ -1 +1 @@
|
|
|
1
|
-
|
|
1
|
+
39804eda13136b4463f72a650bea4c536b6deb920129ee8f75cc7f14dba8f784 super-release-darwin-x86_64.tar.gz
|
|
@@ -1 +1 @@
|
|
|
1
|
-
|
|
1
|
+
3754fd256638d07a1d165ee07878c3876333ba1cbc0bf6bae1c38732a9716451 super-release-linux-aarch64-musl.tar.gz
|
|
@@ -1 +1 @@
|
|
|
1
|
-
|
|
1
|
+
0111030eed06be53254f16aef0c480dcc86943b1eee080be6ac7129835bbd61d super-release-linux-aarch64.tar.gz
|
|
@@ -1 +1 @@
|
|
|
1
|
-
|
|
1
|
+
f7b4506d5705cac44a0f060af683de69e9cb61fca8aaef45c904918991524ac0 super-release-linux-x86_64-musl.tar.gz
|
|
@@ -1 +1 @@
|
|
|
1
|
-
|
|
1
|
+
1caac9d8393bb18e7042a6ba5d59dad965d3e4199ca430163d9e826bd5293749 super-release-linux-x86_64.tar.gz
|
|
@@ -1 +1 @@
|
|
|
1
|
-
|
|
1
|
+
C7D51198943AA682D1AFFFD2D08C40A68F0D2CEC7AB4BD354C5BAC60F7B07477
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "super-release",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.15.0",
|
|
4
4
|
"description": "A fast semantic-release alternative for monorepos, written in Rust",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"changelog",
|
|
@@ -28,11 +28,11 @@
|
|
|
28
28
|
"provenance": true
|
|
29
29
|
},
|
|
30
30
|
"optionalDependencies": {
|
|
31
|
-
"super-release-darwin-
|
|
32
|
-
"super-release-darwin-
|
|
33
|
-
"super-release-linux-
|
|
34
|
-
"super-release-
|
|
35
|
-
"super-release-
|
|
31
|
+
"super-release-darwin-arm64": "1.13.0",
|
|
32
|
+
"super-release-darwin-x64": "1.13.0",
|
|
33
|
+
"super-release-linux-x64": "1.13.0",
|
|
34
|
+
"super-release-windows-x64": "1.13.0",
|
|
35
|
+
"super-release-linux-arm64": "1.13.0"
|
|
36
36
|
},
|
|
37
37
|
"engines": {
|
|
38
38
|
"node": ">=20"
|