semantic-release 23.0.5 → 23.0.7
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.
|
@@ -194,3 +194,11 @@
|
|
|
194
194
|
- `verifyConditions`: Verify the presence of the `pub.dev` authentication and release configuration
|
|
195
195
|
- `prepare`: Update the `pubspec.yaml` version
|
|
196
196
|
- `publish`: Publish the package onto the `pub.dev` registry
|
|
197
|
+
- [semantic-release-hackage](https://github.com/stackbuilders/semantic-release-hackage)
|
|
198
|
+
- `verifyConditions`: Verify the environment variable `HACKAGE_TOKEN`
|
|
199
|
+
- `prepare`: Update the version of .cabal file and create the distribution package (.tar)
|
|
200
|
+
- `publish`: Publish the release candidate to the specified repository in Hackage
|
|
201
|
+
- [semantic-release-pull-request-analyzer](https://github.com/bobvanderlinden/semantic-release-pull-request-analyzer)
|
|
202
|
+
- `verifyConditions` Verify configuration options and existance of GitHub token.
|
|
203
|
+
- `analyzeCommits` Determine the type of release by analyzing merged GitHub pull requests and their labels.
|
|
204
|
+
- `generateNotes` Generates release notes using [GitHub release notes generator](https://docs.github.com/en/repositories/releasing-projects-on-github/automatically-generated-release-notes).
|
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": "23.0.
|
|
4
|
+
"version": "23.0.7",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"author": "Stephan Bönnemann <stephan@boennemann.me> (http://boennemann.me)",
|
|
7
7
|
"ava": {
|
|
@@ -31,14 +31,14 @@
|
|
|
31
31
|
"@semantic-release/error": "^4.0.0",
|
|
32
32
|
"@semantic-release/github": "^10.0.0",
|
|
33
33
|
"@semantic-release/npm": "^12.0.0",
|
|
34
|
-
"@semantic-release/release-notes-generator": "^
|
|
34
|
+
"@semantic-release/release-notes-generator": "^13.0.0",
|
|
35
35
|
"aggregate-error": "^5.0.0",
|
|
36
36
|
"cosmiconfig": "^9.0.0",
|
|
37
37
|
"debug": "^4.0.0",
|
|
38
38
|
"env-ci": "^11.0.0",
|
|
39
39
|
"execa": "^8.0.0",
|
|
40
40
|
"figures": "^6.0.0",
|
|
41
|
-
"find-versions": "^
|
|
41
|
+
"find-versions": "^6.0.0",
|
|
42
42
|
"get-stream": "^6.0.0",
|
|
43
43
|
"git-log-parser": "^1.2.0",
|
|
44
44
|
"hook-std": "^3.0.0",
|
|
@@ -79,7 +79,7 @@
|
|
|
79
79
|
"sinon": "17.0.1",
|
|
80
80
|
"stream-buffers": "3.0.2",
|
|
81
81
|
"tempy": "3.1.0",
|
|
82
|
-
"testdouble": "3.20.
|
|
82
|
+
"testdouble": "3.20.2"
|
|
83
83
|
},
|
|
84
84
|
"engines": {
|
|
85
85
|
"node": ">=20.8.1"
|
|
@@ -162,5 +162,5 @@
|
|
|
162
162
|
"github>semantic-release/.github:renovate-config"
|
|
163
163
|
]
|
|
164
164
|
},
|
|
165
|
-
"packageManager": "npm@10.5.
|
|
165
|
+
"packageManager": "npm@10.5.1"
|
|
166
166
|
}
|