semantic-release 22.0.0-beta.4 → 22.0.0-beta.6
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.
|
@@ -84,6 +84,11 @@
|
|
|
84
84
|
- `verifyRelease`: Checks and warns (does not error by default) if the version numbers found on maven central and within the Git project differ by quite a bit
|
|
85
85
|
- `prepare`: Changes the version number in the `pom.xml` (or all `pom.xml` files in maven projects with multiple `pom.xml` files) and optionally creates a commit with this version number and pushes it to `master`
|
|
86
86
|
- `publish`: Runs `mvn deploy` to deploy to maven central and optionally will update to next snapshot version and merge changes to development branch
|
|
87
|
+
- [maven-semantic-release](https://github.com/terrestris/maven-semantic-release) (alternative version)
|
|
88
|
+
- `verifyConditions`: Verifies that the `mvn` command exists.
|
|
89
|
+
- `prepare`: Changes version number in `pom.xml` and optionally in all child modules.
|
|
90
|
+
- `publish`: Runs one of the mvn targets `deploy`, `package jib:build` or `deploy jib:build`.
|
|
91
|
+
- `success`: Optionally sets new snapshot version and commits it.
|
|
87
92
|
- [semantic-release-ado](https://github.com/lluchmk/semantic-release-ado)
|
|
88
93
|
- `prepare`: Stores the version number as an Azure DevOps pipeline variable available to downstream steps on the job
|
|
89
94
|
- [gradle-semantic-release](https://github.com/KengoTODA/gradle-semantic-release-plugin)
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "semantic-release",
|
|
3
3
|
"description": "Automated semver compliant package publishing",
|
|
4
|
-
"version": "22.0.0-beta.
|
|
4
|
+
"version": "22.0.0-beta.6",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"author": "Stephan Bönnemann <stephan@boennemann.me> (http://boennemann.me)",
|
|
7
7
|
"ava": {
|
|
@@ -29,7 +29,7 @@
|
|
|
29
29
|
"@semantic-release/commit-analyzer": "^11.0.0-beta.3",
|
|
30
30
|
"@semantic-release/error": "^4.0.0",
|
|
31
31
|
"@semantic-release/github": "^9.0.0",
|
|
32
|
-
"@semantic-release/npm": "^
|
|
32
|
+
"@semantic-release/npm": "^11.0.0",
|
|
33
33
|
"@semantic-release/release-notes-generator": "^12.0.0-beta.2",
|
|
34
34
|
"aggregate-error": "^4.0.1",
|
|
35
35
|
"cosmiconfig": "^8.0.0",
|
|
@@ -69,13 +69,13 @@
|
|
|
69
69
|
"nock": "13.3.3",
|
|
70
70
|
"p-retry": "6.0.0",
|
|
71
71
|
"prettier": "3.0.3",
|
|
72
|
-
"sinon": "
|
|
72
|
+
"sinon": "16.0.0",
|
|
73
73
|
"stream-buffers": "3.0.2",
|
|
74
74
|
"tempy": "3.1.0",
|
|
75
75
|
"testdouble": "3.18.0"
|
|
76
76
|
},
|
|
77
77
|
"engines": {
|
|
78
|
-
"node": ">=
|
|
78
|
+
"node": "^18.17 || >=20"
|
|
79
79
|
},
|
|
80
80
|
"exports": "./index.js",
|
|
81
81
|
"files": [
|