semantic-release 23.0.0-beta.2 → 23.0.0-beta.4
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 +3 -3
- package/docs/support/node-version.md +1 -1
- package/package.json +8 -8
package/README.md
CHANGED
|
@@ -110,9 +110,9 @@ In order to use **semantic-release** you need:
|
|
|
110
110
|
## Documentation
|
|
111
111
|
|
|
112
112
|
- Usage
|
|
113
|
-
- [Getting started](docs/usage/getting-started.md
|
|
114
|
-
- [Installation](docs/usage/installation.md
|
|
115
|
-
- [CI Configuration](docs/usage/ci-configuration.md
|
|
113
|
+
- [Getting started](docs/usage/getting-started.md)
|
|
114
|
+
- [Installation](docs/usage/installation.md)
|
|
115
|
+
- [CI Configuration](docs/usage/ci-configuration.md)
|
|
116
116
|
- [Configuration](docs/usage/configuration.md#configuration)
|
|
117
117
|
- [Plugins](docs/usage/plugins.md)
|
|
118
118
|
- [Workflow configuration](docs/usage/workflow-configuration.md)
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
# Node version requirement
|
|
2
2
|
|
|
3
|
-
**semantic-release** is written using the latest [ECMAScript 2017](https://www.ecma-international.org/publications/standards/Ecma-262.htm) features, without transpilation which **requires Node version
|
|
3
|
+
**semantic-release** is written using the latest [ECMAScript 2017](https://www.ecma-international.org/publications/standards/Ecma-262.htm) features, without transpilation which **requires Node version 20.8.1 or higher**.
|
|
4
4
|
|
|
5
5
|
**semantic-release** is meant to be used in a CI environment as a development support tool, not as a production dependency.
|
|
6
6
|
Therefore, the only constraint is to run the `semantic-release` in a CI environment providing version of Node that meets our version requirement.
|
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.0-beta.
|
|
4
|
+
"version": "23.0.0-beta.4",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"author": "Stephan Bönnemann <stephan@boennemann.me> (http://boennemann.me)",
|
|
7
7
|
"ava": {
|
|
@@ -35,7 +35,7 @@
|
|
|
35
35
|
"aggregate-error": "^5.0.0",
|
|
36
36
|
"cosmiconfig": "^9.0.0",
|
|
37
37
|
"debug": "^4.0.0",
|
|
38
|
-
"env-ci": "^
|
|
38
|
+
"env-ci": "^11.0.0",
|
|
39
39
|
"execa": "^8.0.0",
|
|
40
40
|
"figures": "^6.0.0",
|
|
41
41
|
"find-versions": "^5.1.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": "^11.0.0",
|
|
49
49
|
"marked-terminal": "^6.0.0",
|
|
50
50
|
"micromatch": "^4.0.2",
|
|
51
51
|
"p-each-series": "^3.0.0",
|
|
@@ -59,11 +59,11 @@
|
|
|
59
59
|
},
|
|
60
60
|
"devDependencies": {
|
|
61
61
|
"ava": "6.0.1",
|
|
62
|
-
"c8": "
|
|
62
|
+
"c8": "9.0.0",
|
|
63
63
|
"clear-module": "4.1.2",
|
|
64
64
|
"codecov": "3.8.3",
|
|
65
65
|
"cz-conventional-changelog": "3.3.0",
|
|
66
|
-
"dockerode": "4.0.
|
|
66
|
+
"dockerode": "4.0.2",
|
|
67
67
|
"file-url": "4.0.0",
|
|
68
68
|
"fs-extra": "11.2.0",
|
|
69
69
|
"got": "14.0.0",
|
|
@@ -73,9 +73,9 @@
|
|
|
73
73
|
"mockserver-client": "5.15.0",
|
|
74
74
|
"nock": "13.4.0",
|
|
75
75
|
"npm-run-all2": "6.1.1",
|
|
76
|
-
"p-retry": "6.
|
|
76
|
+
"p-retry": "6.2.0",
|
|
77
77
|
"prettier": "3.1.1",
|
|
78
|
-
"publint": "0.2.
|
|
78
|
+
"publint": "0.2.7",
|
|
79
79
|
"sinon": "17.0.1",
|
|
80
80
|
"stream-buffers": "3.0.2",
|
|
81
81
|
"tempy": "3.1.0",
|
|
@@ -159,7 +159,7 @@
|
|
|
159
159
|
},
|
|
160
160
|
"renovate": {
|
|
161
161
|
"extends": [
|
|
162
|
-
"github>semantic-release/.github"
|
|
162
|
+
"github>semantic-release/.github:renovate-config"
|
|
163
163
|
]
|
|
164
164
|
}
|
|
165
165
|
}
|