@anolilab/semantic-release-preset 1.2.1 → 2.0.0
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/CHANGELOG.md +18 -0
- package/README.md +4 -4
- package/package.json +2 -2
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,21 @@
|
|
|
1
|
+
## @anolilab/semantic-release-preset [2.0.0](https://github.com/anolilab/javascript-style-guide/compare/@anolilab/semantic-release-preset@1.2.1...@anolilab/semantic-release-preset@2.0.0) (2022-02-15)
|
|
2
|
+
|
|
3
|
+
|
|
4
|
+
### ⚠ BREAKING CHANGES
|
|
5
|
+
|
|
6
|
+
* remove old node version from our supported versions
|
|
7
|
+
|
|
8
|
+
Signed-off-by: prisis <d.bannert@anolilab.de>
|
|
9
|
+
|
|
10
|
+
### Bug Fixes
|
|
11
|
+
|
|
12
|
+
* markdown lint ([24059d4](https://github.com/anolilab/javascript-style-guide/commit/24059d41ca682ca21b39ad7f6dff594be734329d))
|
|
13
|
+
|
|
14
|
+
|
|
15
|
+
### Performance Improvements
|
|
16
|
+
|
|
17
|
+
* support for v12, v14 was removed from our supported versions of node ([83d6a80](https://github.com/anolilab/javascript-style-guide/commit/83d6a8058ed7791135aff03d4cd734327bb1b694))
|
|
18
|
+
|
|
1
19
|
### @anolilab/semantic-release-preset [1.2.1](https://github.com/anolilab/javascript-style-guide/compare/@anolilab/semantic-release-preset@1.2.0...@anolilab/semantic-release-preset@1.2.1) (2022-01-11)
|
|
2
20
|
|
|
3
21
|
|
package/README.md
CHANGED
|
@@ -128,8 +128,8 @@ Add `cz` to your `package.json scripts`
|
|
|
128
128
|
|
|
129
129
|
Ensure that your CI configuration has the following environment variables set:
|
|
130
130
|
|
|
131
|
-
- GITHUB_TOKEN: [A GitHub personal access token](https://docs.github.com/en/
|
|
132
|
-
- NPM_TOKEN: [A npm personal access token](https://www.npmjs.com/settings)
|
|
131
|
+
- GITHUB_TOKEN: [A GitHub personal access token](https://docs.github.com/en/authentication/keeping-your-account-and-data-secure/creating-a-personal-access-token)
|
|
132
|
+
- NPM_TOKEN: [A npm personal access token](https://www.npmjs.com/package/settings)
|
|
133
133
|
|
|
134
134
|
You can test your config with a dry run:
|
|
135
135
|
|
|
@@ -252,7 +252,7 @@ jobs:
|
|
|
252
252
|
|
|
253
253
|
## Note on GitHub protected branches
|
|
254
254
|
|
|
255
|
-
If you’re releasing a [GitHub protected branch](https://docs.github.com/en/
|
|
255
|
+
If you’re releasing a [GitHub protected branch](https://docs.github.com/en/repositories/configuring-branches-and-merges-in-your-repository/defining-the-mergeability-of-pull-requests/about-protected-branches) you need to change the git committer to an owner/admin and allow repo admins to bypass the branch protection (make sure "include administrators" is disabled in the branch protection rules.)
|
|
256
256
|
|
|
257
257
|
If your repo is under an organisation, you can create a bot account and give it admin rights on the repo. If your repo is under a personal account, you have no choice to make the repo owner the commiter for the release.
|
|
258
258
|
|
|
@@ -263,7 +263,7 @@ Either way, you have to create a GitHub personal access token for the committer
|
|
|
263
263
|
## Supported Node.js Versions
|
|
264
264
|
|
|
265
265
|
Libraries in this ecosystem make the best effort to track
|
|
266
|
-
[Node.js
|
|
266
|
+
[Node.js’ release schedule](https://nodejs.org/en/about/releases/). Here’s [a
|
|
267
267
|
post on why we think this is important](https://medium.com/the-node-js-collection/maintainers-should-consider-following-node-js-release-schedule-ab08ed4de71a).
|
|
268
268
|
|
|
269
269
|
Contributing
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@anolilab/semantic-release-preset",
|
|
3
|
-
"version": "
|
|
3
|
+
"version": "2.0.0",
|
|
4
4
|
"description": "Anolilab Coding Standard for semantic-release.",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"anolilab",
|
|
@@ -70,7 +70,7 @@
|
|
|
70
70
|
"semantic-release": "^18.0.1"
|
|
71
71
|
},
|
|
72
72
|
"engines": {
|
|
73
|
-
"node": ">=
|
|
73
|
+
"node": ">=16"
|
|
74
74
|
},
|
|
75
75
|
"publishConfig": {
|
|
76
76
|
"access": "public"
|