super-release 1.7.2 → 1.8.1
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
|
+
5adb8bd8adf5a50f199ccec6430df144388e063857bbd17a1f5943bf68e3b186 super-release-darwin-aarch64.tar.gz
|
|
@@ -1 +1 @@
|
|
|
1
|
-
|
|
1
|
+
8f81c72a3f721df5802b9370695fe31db8c2be2d53fc089671e7caee8b694c32 super-release-darwin-x86_64.tar.gz
|
|
@@ -1 +1 @@
|
|
|
1
|
-
|
|
1
|
+
4bd2f710f3d7016bea5cd5839cddc1aa185144fce0346b09639624167f3540f3 super-release-linux-aarch64.tar.gz
|
|
@@ -1 +1 @@
|
|
|
1
|
-
|
|
1
|
+
1c46b9505d606dab35f7a1ec9fa7cd3e51c7715ba284161ff6d77f3c2801c272 super-release-linux-x86_64-musl.tar.gz
|
|
@@ -1 +1 @@
|
|
|
1
|
-
|
|
1
|
+
500e0655d24d267d7f5c85e6e696291fcb1c9d51266f6e54f0bfdbab363a4573 super-release-linux-x86_64.tar.gz
|
|
@@ -1 +1 @@
|
|
|
1
|
-
|
|
1
|
+
492A1A8BA9253D39F2F04502947606A2F46CD902739CF5910367F035738233A0
|
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.1",
|
|
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-
|
|
31
|
+
"super-release-darwin-arm64": "1.6.1",
|
|
32
|
+
"super-release-linux-arm64": "1.6.1",
|
|
33
|
+
"super-release-windows-x64": "1.6.1",
|
|
34
|
+
"super-release-linux-x64": "1.6.1",
|
|
35
|
+
"super-release-darwin-x64": "1.6.1"
|
|
36
36
|
},
|
|
37
37
|
"engines": {
|
|
38
38
|
"node": ">=20"
|