semantic-release 23.0.1 → 23.0.3
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.
|
@@ -5,13 +5,13 @@
|
|
|
5
5
|
For [Node modules projects](https://docs.npmjs.com/getting-started/creating-node-modules) we recommend installing **semantic-release** locally and running the `semantic-release` command with [npx](https://www.npmjs.com/package/npx):
|
|
6
6
|
|
|
7
7
|
```bash
|
|
8
|
-
|
|
8
|
+
npm install --save-dev semantic-release
|
|
9
9
|
```
|
|
10
10
|
|
|
11
11
|
Then in the CI environment:
|
|
12
12
|
|
|
13
13
|
```bash
|
|
14
|
-
|
|
14
|
+
npx semantic-release
|
|
15
15
|
```
|
|
16
16
|
|
|
17
17
|
**Note:** `npx` is a tool bundled with `npm@>=5.2.0`. It is used to conveniently find the semantic-release binary and to execute it. See [What is npx](../support/FAQ.md#what-is-npx) for more details.
|
|
@@ -21,7 +21,7 @@ $ npx semantic-release
|
|
|
21
21
|
For other type of projects we recommend installing **semantic-release** directly in the CI environment, also with [npx](https://www.npmjs.com/package/npx):
|
|
22
22
|
|
|
23
23
|
```bash
|
|
24
|
-
|
|
24
|
+
npx semantic-release
|
|
25
25
|
```
|
|
26
26
|
|
|
27
27
|
### Notes
|
package/lib/get-git-auth-url.js
CHANGED
|
@@ -49,7 +49,7 @@ async function ensureValidAuthUrl({ cwd, env, branch }, authUrl) {
|
|
|
49
49
|
}
|
|
50
50
|
|
|
51
51
|
/**
|
|
52
|
-
* Determine the
|
|
52
|
+
* Determine the git repository URL to use to push, either:
|
|
53
53
|
* - The `repositoryUrl` as is if allowed to push
|
|
54
54
|
* - The `repositoryUrl` converted to `https` or `http` with Basic Authentication
|
|
55
55
|
*
|
|
@@ -5,7 +5,7 @@ import getLastRelease from "./get-last-release.js";
|
|
|
5
5
|
import { getLowerBound, makeTag } from "./utils.js";
|
|
6
6
|
|
|
7
7
|
/**
|
|
8
|
-
* Find releases that have been merged from
|
|
8
|
+
* Find releases that have been merged from a higher branch but not added on the channel of the current branch.
|
|
9
9
|
*
|
|
10
10
|
* @param {Object} context semantic-release context.
|
|
11
11
|
*
|
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.3",
|
|
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
|
"dependencies": {
|
|
30
30
|
"@semantic-release/commit-analyzer": "^11.0.0",
|
|
31
31
|
"@semantic-release/error": "^4.0.0",
|
|
32
|
-
"@semantic-release/github": "^
|
|
32
|
+
"@semantic-release/github": "^10.0.0",
|
|
33
33
|
"@semantic-release/npm": "^11.0.0",
|
|
34
34
|
"@semantic-release/release-notes-generator": "^12.0.0",
|
|
35
35
|
"aggregate-error": "^5.0.0",
|
|
@@ -45,7 +45,7 @@
|
|
|
45
45
|
"hosted-git-info": "^7.0.0",
|
|
46
46
|
"import-from-esm": "^1.3.1",
|
|
47
47
|
"lodash-es": "^4.17.21",
|
|
48
|
-
"marked": "^
|
|
48
|
+
"marked": "^12.0.0",
|
|
49
49
|
"marked-terminal": "^7.0.0",
|
|
50
50
|
"micromatch": "^4.0.2",
|
|
51
51
|
"p-each-series": "^3.0.0",
|
|
@@ -58,7 +58,7 @@
|
|
|
58
58
|
"yargs": "^17.5.1"
|
|
59
59
|
},
|
|
60
60
|
"devDependencies": {
|
|
61
|
-
"ava": "6.1.
|
|
61
|
+
"ava": "6.1.2",
|
|
62
62
|
"c8": "9.1.0",
|
|
63
63
|
"clear-module": "4.1.2",
|
|
64
64
|
"codecov": "3.8.3",
|
|
@@ -66,15 +66,15 @@
|
|
|
66
66
|
"dockerode": "4.0.2",
|
|
67
67
|
"file-url": "4.0.0",
|
|
68
68
|
"fs-extra": "11.2.0",
|
|
69
|
-
"got": "14.2.
|
|
69
|
+
"got": "14.2.1",
|
|
70
70
|
"js-yaml": "4.1.0",
|
|
71
|
-
"lockfile-lint": "4.
|
|
71
|
+
"lockfile-lint": "4.13.2",
|
|
72
72
|
"ls-engines": "0.9.1",
|
|
73
73
|
"mockserver-client": "5.15.0",
|
|
74
|
-
"nock": "13.5.
|
|
74
|
+
"nock": "13.5.4",
|
|
75
75
|
"npm-run-all2": "6.1.2",
|
|
76
76
|
"p-retry": "6.2.0",
|
|
77
|
-
"prettier": "3.2.
|
|
77
|
+
"prettier": "3.2.5",
|
|
78
78
|
"publint": "0.2.7",
|
|
79
79
|
"sinon": "17.0.1",
|
|
80
80
|
"stream-buffers": "3.0.2",
|
|
@@ -161,5 +161,6 @@
|
|
|
161
161
|
"extends": [
|
|
162
162
|
"github>semantic-release/.github:renovate-config"
|
|
163
163
|
]
|
|
164
|
-
}
|
|
164
|
+
},
|
|
165
|
+
"packageManager": "npm@10.5.0+sha256.17ca6e08e7633b624e8f870db81a78f46afe119de62bcaf0a7407574139198fc"
|
|
165
166
|
}
|