super-release 1.7.1 → 1.8.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/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.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/config-schema.json +5 -0
- package/package.json +6 -6
|
@@ -1 +1 @@
|
|
|
1
|
-
|
|
1
|
+
f9f0b931c4cb2bad05442c0826e0aa0863237995a5b33a32517e61d63baed35b super-release-darwin-aarch64.tar.gz
|
|
@@ -1 +1 @@
|
|
|
1
|
-
|
|
1
|
+
510f3b7f6d207c4a2e4a21ee89e47d035d532af56eb4a829d82d3792e1c434f7 super-release-darwin-x86_64.tar.gz
|
|
@@ -1 +1 @@
|
|
|
1
|
-
|
|
1
|
+
edf924710452f2eae7452a122ae1ea8ae5e092d4a42abb7c8ff224daa8dd127d super-release-linux-aarch64.tar.gz
|
|
@@ -1 +1 @@
|
|
|
1
|
-
|
|
1
|
+
03411e6dc7879f682309396650254cf517dfa495c54e37c4b982305258c5ebf6 super-release-linux-x86_64-musl.tar.gz
|
|
@@ -1 +1 @@
|
|
|
1
|
-
|
|
1
|
+
1d97a52c52faa687305cbfe88533e75322c8fa6fc8a3162cd9b639eae1345b88 super-release-linux-x86_64.tar.gz
|
|
@@ -1 +1 @@
|
|
|
1
|
-
|
|
1
|
+
A309DA7E56E5F0F94BE84129701644C487C01DB13BB01F8B8067C905A0D8FF10
|
package/config-schema.json
CHANGED
|
@@ -176,6 +176,11 @@
|
|
|
176
176
|
"type": "string",
|
|
177
177
|
"default": "origin",
|
|
178
178
|
"description": "Git remote name"
|
|
179
|
+
},
|
|
180
|
+
"atomic": {
|
|
181
|
+
"type": "boolean",
|
|
182
|
+
"default": true,
|
|
183
|
+
"description": "Push all refs atomically (git push --atomic) so a lost push race can't leave partial state on the remote. Disable for servers without atomic push support."
|
|
179
184
|
}
|
|
180
185
|
}
|
|
181
186
|
},
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "super-release",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.8.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-arm64": "1.
|
|
32
|
-
"super-release-
|
|
33
|
-
"super-release-
|
|
34
|
-
"super-release-linux-x64": "1.
|
|
35
|
-
"super-release-windows-x64": "1.
|
|
31
|
+
"super-release-darwin-arm64": "1.6.0",
|
|
32
|
+
"super-release-linux-arm64": "1.6.0",
|
|
33
|
+
"super-release-darwin-x64": "1.6.0",
|
|
34
|
+
"super-release-linux-x64": "1.6.0",
|
|
35
|
+
"super-release-windows-x64": "1.6.0"
|
|
36
36
|
},
|
|
37
37
|
"engines": {
|
|
38
38
|
"node": ">=20"
|