semantic-release 24.2.1 → 24.2.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.
|
@@ -20,7 +20,7 @@ Find more detail about configuring npm to publish with provenance through semant
|
|
|
20
20
|
### `.github/workflows/release.yml` configuration for Node projects
|
|
21
21
|
|
|
22
22
|
The following is a minimal configuration for [`semantic-release`](https://github.com/semantic-release/semantic-release) with a build running on the latest LTS version of Node when a new commit is pushed to a `master/main` branch.
|
|
23
|
-
See [
|
|
23
|
+
See the [Workflow syntax for GitHub Actions](https://docs.github.com/en/actions/writing-workflows/workflow-syntax-for-github-actions) for additional configuration options.
|
|
24
24
|
|
|
25
25
|
```yaml
|
|
26
26
|
name: Release
|
package/index.d.ts
CHANGED
|
@@ -41,6 +41,11 @@ declare module "semantic-release" {
|
|
|
41
41
|
* Has error, log, warn and success methods.
|
|
42
42
|
*/
|
|
43
43
|
logger: Signale<"error" | "log" | "success" | "warn">;
|
|
44
|
+
|
|
45
|
+
/**
|
|
46
|
+
* Semantic release configuration
|
|
47
|
+
*/
|
|
48
|
+
options: Options;
|
|
44
49
|
}
|
|
45
50
|
|
|
46
51
|
/**
|
|
@@ -668,6 +673,11 @@ declare module "semantic-release" {
|
|
|
668
673
|
*/
|
|
669
674
|
ci?: boolean | undefined;
|
|
670
675
|
|
|
676
|
+
/**
|
|
677
|
+
* Set to true when the `ci` option is set to false.
|
|
678
|
+
*/
|
|
679
|
+
noCi?: true;
|
|
680
|
+
|
|
671
681
|
/**
|
|
672
682
|
* Any other options supported by plugins.
|
|
673
683
|
*/
|
package/lib/get-git-auth-url.js
CHANGED
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": "24.2.
|
|
4
|
+
"version": "24.2.3",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"author": "Stephan Bönnemann <stephan@boennemann.me> (http://boennemann.me)",
|
|
7
7
|
"ava": {
|
|
@@ -58,23 +58,25 @@
|
|
|
58
58
|
"yargs": "^17.5.1"
|
|
59
59
|
},
|
|
60
60
|
"devDependencies": {
|
|
61
|
+
"@types/node": "^22.13.4",
|
|
62
|
+
"@types/signale": "^1.4.7",
|
|
61
63
|
"ava": "6.2.0",
|
|
62
64
|
"c8": "10.1.3",
|
|
63
65
|
"clear-module": "4.1.2",
|
|
64
66
|
"cz-conventional-changelog": "3.3.0",
|
|
65
|
-
"dockerode": "4.0.
|
|
67
|
+
"dockerode": "4.0.4",
|
|
66
68
|
"file-url": "4.0.0",
|
|
67
|
-
"fs-extra": "11.
|
|
68
|
-
"got": "14.4.
|
|
69
|
+
"fs-extra": "11.3.0",
|
|
70
|
+
"got": "14.4.6",
|
|
69
71
|
"js-yaml": "4.1.0",
|
|
70
72
|
"lockfile-lint": "4.14.0",
|
|
71
73
|
"ls-engines": "0.9.3",
|
|
72
74
|
"mockserver-client": "5.15.0",
|
|
73
|
-
"nock": "
|
|
75
|
+
"nock": "14.0.1",
|
|
74
76
|
"npm-run-all2": "7.0.2",
|
|
75
77
|
"p-retry": "6.2.1",
|
|
76
|
-
"prettier": "3.
|
|
77
|
-
"publint": "0.
|
|
78
|
+
"prettier": "3.5.1",
|
|
79
|
+
"publint": "0.3.5",
|
|
78
80
|
"sinon": "19.0.2",
|
|
79
81
|
"stream-buffers": "3.0.3",
|
|
80
82
|
"tempy": "3.1.0",
|
|
@@ -161,5 +163,5 @@
|
|
|
161
163
|
"github>semantic-release/.github:renovate-config"
|
|
162
164
|
]
|
|
163
165
|
},
|
|
164
|
-
"packageManager": "npm@11.
|
|
166
|
+
"packageManager": "npm@11.1.0"
|
|
165
167
|
}
|