super-release 1.12.0 → 1.13.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 +15 -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
|
@@ -218,8 +218,23 @@ release may differ after a squash-merge. Requires `pull-requests: write` permiss
|
|
|
218
218
|
| `feat: ...` | minor |
|
|
219
219
|
| `feat!: ...` or `BREAKING CHANGE:` in footer | major |
|
|
220
220
|
| `perf: ...` | patch |
|
|
221
|
+
| `Revert "..."` or `revert: ...` with a `This reverts commit <sha>` footer | patch |
|
|
221
222
|
| `chore: ...`, `docs: ...`, `ci: ...`, `refactor: ...` | no release |
|
|
222
223
|
|
|
224
|
+
### Reverts
|
|
225
|
+
|
|
226
|
+
Revert commits behave exactly like they do in
|
|
227
|
+
[semantic-release](https://semantic-release.gitbook.io/semantic-release/support/faq#how-can-i-revert-a-release):
|
|
228
|
+
|
|
229
|
+
- Reverting an **already-released** commit triggers a **patch** release, and the revert shows up in the changelog and
|
|
230
|
+
release notes under a `◀️ Revert` section.
|
|
231
|
+
- If a commit **and its revert** both land in the same unreleased range, they cancel each other out (per package) and
|
|
232
|
+
neither counts toward the release.
|
|
233
|
+
- The message `git revert` produces (`Revert "feat: ..."` plus `This reverts commit <sha>.`) works out of the box — no
|
|
234
|
+
editing needed. The Angular-style `revert: feat: ...` form is supported too.
|
|
235
|
+
- A `revert:` commit **without** the `This reverts commit <sha>` footer does not trigger a release (matching
|
|
236
|
+
semantic-release's default release rules).
|
|
237
|
+
|
|
223
238
|
## Configuration
|
|
224
239
|
|
|
225
240
|
Create a `.release.yaml` in your repository root. JSON (`.release.json`) and JSONC (`.release.jsonc`) are also
|
|
@@ -1 +1 @@
|
|
|
1
|
-
|
|
1
|
+
ef1c407c0777a1d83e6b43b2b77607d3e0a3c99d7f05c453872ef135598637bf super-release-darwin-aarch64.tar.gz
|
|
@@ -1 +1 @@
|
|
|
1
|
-
|
|
1
|
+
e602e104811e031743233b28cdec5428a1b08ac5f3865488d416ae5bfb61b01c super-release-darwin-x86_64.tar.gz
|
|
@@ -1 +1 @@
|
|
|
1
|
-
|
|
1
|
+
5ec4f1d46610115067e2c4721fd26cca9d0f2f4722dff3549a3572caf0a67125 super-release-linux-aarch64-musl.tar.gz
|
|
@@ -1 +1 @@
|
|
|
1
|
-
|
|
1
|
+
a68fddaf62ad9e05251da92f0f28d2afd92d27f4d9d0aa576efcf6d5f83273c3 super-release-linux-aarch64.tar.gz
|
|
@@ -1 +1 @@
|
|
|
1
|
-
|
|
1
|
+
9f9bb6cbef8e16d2c430933fbcd453030df3d678548a91e1cd94d826ca3b5f88 super-release-linux-x86_64-musl.tar.gz
|
|
@@ -1 +1 @@
|
|
|
1
|
-
|
|
1
|
+
9bfa4e6e81fa242becd2c399c6ce17fe50284d451844b4fe6a4c41426f3527e0 super-release-linux-x86_64.tar.gz
|
|
@@ -1 +1 @@
|
|
|
1
|
-
|
|
1
|
+
97267777C623E25981B90F095D8530DF8F59A656A3C8D620997B313D6085D0B1
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "super-release",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.13.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-
|
|
35
|
-
"super-release-
|
|
31
|
+
"super-release-darwin-arm64": "1.11.0",
|
|
32
|
+
"super-release-linux-arm64": "1.11.0",
|
|
33
|
+
"super-release-darwin-x64": "1.11.0",
|
|
34
|
+
"super-release-windows-x64": "1.11.0",
|
|
35
|
+
"super-release-linux-x64": "1.11.0"
|
|
36
36
|
},
|
|
37
37
|
"engines": {
|
|
38
38
|
"node": ">=20"
|