@binden/semantic-release-config 2.0.0 → 3.0.1
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/.releaserc.json +19 -23
- package/CHANGELOG.md +55 -0
- package/index.d.ts +8 -8
- package/package.json +9 -9
package/.releaserc.json
CHANGED
|
@@ -3,14 +3,22 @@
|
|
|
3
3
|
"preset": "conventionalcommits",
|
|
4
4
|
"presetConfig": {
|
|
5
5
|
"types": [
|
|
6
|
-
{ "type": "feat", "section": "Features" },
|
|
7
|
-
{ "type": "fix", "section": "Bug Fixes" },
|
|
8
|
-
{
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
{ "type": "
|
|
6
|
+
{ "type": "feat", "section": "Features", "hidden": false },
|
|
7
|
+
{ "type": "fix", "section": "Bug Fixes", "hidden": false },
|
|
8
|
+
{
|
|
9
|
+
"type": "perf",
|
|
10
|
+
"section": "Performance Improvements",
|
|
11
|
+
"hidden": false
|
|
12
|
+
},
|
|
13
|
+
{ "type": "revert", "section": "Reverts", "hidden": false },
|
|
14
|
+
{ "type": "build", "section": "Build System", "hidden": false },
|
|
15
|
+
{ "type": "initial", "section": "Initial", "hidden": false },
|
|
16
|
+
{ "type": "dependencies", "section": "Dependencies", "hidden": false },
|
|
17
|
+
{
|
|
18
|
+
"type": "peerDependencies",
|
|
19
|
+
"section": "Peer dependencies",
|
|
20
|
+
"hidden": false
|
|
21
|
+
},
|
|
14
22
|
{
|
|
15
23
|
"type": "devDependencies",
|
|
16
24
|
"section": "Dev dependencies",
|
|
@@ -19,22 +27,10 @@
|
|
|
19
27
|
{ "type": "metadata", "section": "Metadata", "hidden": true },
|
|
20
28
|
{ "type": "docs", "section": "Documentation", "hidden": true },
|
|
21
29
|
{ "type": "style", "section": "Styles", "hidden": true },
|
|
22
|
-
{
|
|
23
|
-
|
|
24
|
-
"section": "Miscellaneous Chores",
|
|
25
|
-
"hidden": true
|
|
26
|
-
},
|
|
27
|
-
{
|
|
28
|
-
"type": "refactor",
|
|
29
|
-
"section": "Code Refactoring",
|
|
30
|
-
"hidden": true
|
|
31
|
-
},
|
|
30
|
+
{ "type": "chore", "section": "Miscellaneous Chores", "hidden": true },
|
|
31
|
+
{ "type": "refactor", "section": "Code Refactoring", "hidden": true },
|
|
32
32
|
{ "type": "test", "section": "Tests", "hidden": true },
|
|
33
|
-
{
|
|
34
|
-
"type": "ci",
|
|
35
|
-
"section": "Continuous Integration",
|
|
36
|
-
"hidden": true
|
|
37
|
-
}
|
|
33
|
+
{ "type": "ci", "section": "Continuous Integration", "hidden": true }
|
|
38
34
|
]
|
|
39
35
|
},
|
|
40
36
|
"plugins": [
|
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,60 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## <small>3.0.1 (2025-04-30)</small>
|
|
4
|
+
|
|
5
|
+
- Merge pull request #46 from binden-js/dependabot/npm_and_yarn/binden/commitlint-config-2.0.0 ([37bf3e0](https://github.com/binden-js/semantic-release-config/commit/37bf3e0)), closes [#46](https://github.com/binden-js/semantic-release-config/issues/46)
|
|
6
|
+
- Merge pull request #47 from binden-js/dependabot/npm_and_yarn/husky-9.0.7 ([0fd764b](https://github.com/binden-js/semantic-release-config/commit/0fd764b)), closes [#47](https://github.com/binden-js/semantic-release-config/issues/47)
|
|
7
|
+
- Merge pull request #50 from binden-js/dependabot/npm_and_yarn/binden/commitlint-config-2.1.0 ([70a782d](https://github.com/binden-js/semantic-release-config/commit/70a782d)), closes [#50](https://github.com/binden-js/semantic-release-config/issues/50)
|
|
8
|
+
- Merge pull request #53 from binden-js/dependabot/npm_and_yarn/husky-9.0.11 ([7561728](https://github.com/binden-js/semantic-release-config/commit/7561728)), closes [#53](https://github.com/binden-js/semantic-release-config/issues/53)
|
|
9
|
+
- Merge pull request #54 from binden-js/dependabot/npm_and_yarn/prettier-3.3.2 ([c9e2288](https://github.com/binden-js/semantic-release-config/commit/c9e2288)), closes [#54](https://github.com/binden-js/semantic-release-config/issues/54)
|
|
10
|
+
- Merge pull request #55 from binden-js/dependabot/npm_and_yarn/lint-staged-15.2.7 ([ff612fd](https://github.com/binden-js/semantic-release-config/commit/ff612fd)), closes [#55](https://github.com/binden-js/semantic-release-config/issues/55)
|
|
11
|
+
- Merge pull request #56 from binden-js/dependabot/npm_and_yarn/prettier-3.3.3 ([1aded64](https://github.com/binden-js/semantic-release-config/commit/1aded64)), closes [#56](https://github.com/binden-js/semantic-release-config/issues/56)
|
|
12
|
+
- Merge pull request #63 from binden-js/dependabot/npm_and_yarn/lint-staged-15.2.9 ([0316eed](https://github.com/binden-js/semantic-release-config/commit/0316eed)), closes [#63](https://github.com/binden-js/semantic-release-config/issues/63)
|
|
13
|
+
- Merge pull request #65 from binden-js/dependabot/npm_and_yarn/lint-staged-15.2.10 ([d7d757d](https://github.com/binden-js/semantic-release-config/commit/d7d757d)), closes [#65](https://github.com/binden-js/semantic-release-config/issues/65)
|
|
14
|
+
- Merge pull request #67 from binden-js/dependabot/npm_and_yarn/husky-9.1.7 ([e9c4f6d](https://github.com/binden-js/semantic-release-config/commit/e9c4f6d)), closes [#67](https://github.com/binden-js/semantic-release-config/issues/67)
|
|
15
|
+
- Merge pull request #70 from binden-js/dependabot/npm_and_yarn/prettier-3.4.2 ([512ae9a](https://github.com/binden-js/semantic-release-config/commit/512ae9a)), closes [#70](https://github.com/binden-js/semantic-release-config/issues/70)
|
|
16
|
+
- Merge pull request #79 from binden-js/dependabot/npm_and_yarn/prettier-3.5.2 ([c2772a5](https://github.com/binden-js/semantic-release-config/commit/c2772a5)), closes [#79](https://github.com/binden-js/semantic-release-config/issues/79)
|
|
17
|
+
- Merge pull request #80 from binden-js/dependabot/npm_and_yarn/prettier-3.5.3 ([af4b9c6](https://github.com/binden-js/semantic-release-config/commit/af4b9c6)), closes [#80](https://github.com/binden-js/semantic-release-config/issues/80)
|
|
18
|
+
- Merge pull request #82 from binden-js/dependabot/npm_and_yarn/lint-staged-15.5.1 ([ad79dbf](https://github.com/binden-js/semantic-release-config/commit/ad79dbf)), closes [#82](https://github.com/binden-js/semantic-release-config/issues/82)
|
|
19
|
+
- Merge pull request #83 from binden-js/node22 ([3569285](https://github.com/binden-js/semantic-release-config/commit/3569285)), closes [#83](https://github.com/binden-js/semantic-release-config/issues/83)
|
|
20
|
+
- perf!: drop Node.js <22 support ([e5f0123](https://github.com/binden-js/semantic-release-config/commit/e5f0123))
|
|
21
|
+
- peerDependencies: bump `semantic-release` to `v24.2.3` ([1ddb640](https://github.com/binden-js/semantic-release-config/commit/1ddb640))
|
|
22
|
+
- devDependencies: bump @binden/commitlint-config from 1.0.2 to 2.0.0 ([0cb78c1](https://github.com/binden-js/semantic-release-config/commit/0cb78c1))
|
|
23
|
+
- devDependencies: bump @binden/commitlint-config from 2.0.0 to 2.1.0 ([c7bc25c](https://github.com/binden-js/semantic-release-config/commit/c7bc25c))
|
|
24
|
+
- devDependencies: bump husky from 9.0.11 to 9.1.7 ([dedf14f](https://github.com/binden-js/semantic-release-config/commit/dedf14f))
|
|
25
|
+
- devDependencies: bump husky from 9.0.6 to 9.0.7 ([8a71d45](https://github.com/binden-js/semantic-release-config/commit/8a71d45))
|
|
26
|
+
- devDependencies: bump husky from 9.0.7 to 9.0.11 ([3084e35](https://github.com/binden-js/semantic-release-config/commit/3084e35))
|
|
27
|
+
- devDependencies: bump lint-staged from 15.2.0 to 15.2.7 ([76b13bc](https://github.com/binden-js/semantic-release-config/commit/76b13bc))
|
|
28
|
+
- devDependencies: bump lint-staged from 15.2.10 to 15.5.1 ([6cefc50](https://github.com/binden-js/semantic-release-config/commit/6cefc50))
|
|
29
|
+
- devDependencies: bump lint-staged from 15.2.7 to 15.2.9 ([4bb3869](https://github.com/binden-js/semantic-release-config/commit/4bb3869))
|
|
30
|
+
- devDependencies: bump lint-staged from 15.2.9 to 15.2.10 ([ed0f2c7](https://github.com/binden-js/semantic-release-config/commit/ed0f2c7))
|
|
31
|
+
- devDependencies: bump prettier from 3.2.4 to 3.3.2 ([95c8e23](https://github.com/binden-js/semantic-release-config/commit/95c8e23))
|
|
32
|
+
- devDependencies: bump prettier from 3.3.2 to 3.3.3 ([2f78026](https://github.com/binden-js/semantic-release-config/commit/2f78026))
|
|
33
|
+
- devDependencies: bump prettier from 3.3.3 to 3.4.2 ([0bd7433](https://github.com/binden-js/semantic-release-config/commit/0bd7433))
|
|
34
|
+
- devDependencies: bump prettier from 3.4.2 to 3.5.2 ([b8afa47](https://github.com/binden-js/semantic-release-config/commit/b8afa47))
|
|
35
|
+
- devDependencies: bump prettier from 3.5.2 to 3.5.3 ([81e8a48](https://github.com/binden-js/semantic-release-config/commit/81e8a48))
|
|
36
|
+
- ci: bump `Node.js` to `v20` ([8d9e344](https://github.com/binden-js/semantic-release-config/commit/8d9e344))
|
|
37
|
+
- dependencies: bump `semantic-release` to `v24.0.0` ([e4fc5df](https://github.com/binden-js/semantic-release-config/commit/e4fc5df))
|
|
38
|
+
|
|
39
|
+
## [3.0.0](https://github.com/binden-js/semantic-release-config/compare/v2.0.0...v3.0.0) (2024-01-28)
|
|
40
|
+
|
|
41
|
+
### ⚠ BREAKING CHANGES
|
|
42
|
+
|
|
43
|
+
- bump `semantic-release` from `v21.0.7` to `v23.0.0`
|
|
44
|
+
- drop Node `<20` support
|
|
45
|
+
|
|
46
|
+
### peerDependencies
|
|
47
|
+
|
|
48
|
+
- bump `semantic-release` from `v21.0.7` to `v23.0.0` ([f1a7178](https://github.com/binden-js/semantic-release-config/commit/f1a71788e39f7d3d10591a64c3f17717dce787d8))
|
|
49
|
+
|
|
50
|
+
### Bug Fixes
|
|
51
|
+
|
|
52
|
+
- add the `hidden` property ([a73ddc9](https://github.com/binden-js/semantic-release-config/commit/a73ddc9293c4945c56190dc36300c26a129d4a33))
|
|
53
|
+
|
|
54
|
+
### Performance Improvements
|
|
55
|
+
|
|
56
|
+
- drop Node `<20` support ([24bf3f5](https://github.com/binden-js/semantic-release-config/commit/24bf3f5b50d266c81c018f36e69e66d979a7e6d5))
|
|
57
|
+
|
|
3
58
|
## [2.0.0](https://github.com/binden-js/semantic-release-config/compare/v1.1.1...v2.0.0) (2023-07-12)
|
|
4
59
|
|
|
5
60
|
### ⚠ BREAKING CHANGES
|
package/index.d.ts
CHANGED
|
@@ -3,14 +3,14 @@ declare const _default: {
|
|
|
3
3
|
preset: "conventionalcommits";
|
|
4
4
|
presetConfig: {
|
|
5
5
|
types: [
|
|
6
|
-
{ type: "feat"; section: "Features" },
|
|
7
|
-
{ type: "fix"; section: "Bug Fixes" },
|
|
8
|
-
{ type: "perf"; section: "Performance Improvements" },
|
|
9
|
-
{ type: "revert"; section: "Reverts" },
|
|
10
|
-
{ type: "build"; section: "Build System" },
|
|
11
|
-
{ type: "initial"; section: "Initial" },
|
|
12
|
-
{ type: "dependencies"; section: "Dependencies" },
|
|
13
|
-
{ type: "peerDependencies"; section: "Peer dependencies" },
|
|
6
|
+
{ type: "feat"; section: "Features"; hidden: false },
|
|
7
|
+
{ type: "fix"; section: "Bug Fixes"; hidden: false },
|
|
8
|
+
{ type: "perf"; section: "Performance Improvements"; hidden: false },
|
|
9
|
+
{ type: "revert"; section: "Reverts"; hidden: false },
|
|
10
|
+
{ type: "build"; section: "Build System"; hidden: false },
|
|
11
|
+
{ type: "initial"; section: "Initial"; hidden: false },
|
|
12
|
+
{ type: "dependencies"; section: "Dependencies"; hidden: false },
|
|
13
|
+
{ type: "peerDependencies"; section: "Peer dependencies"; hidden: false },
|
|
14
14
|
{ type: "devDependencies"; section: "Dev dependencies"; hidden: true },
|
|
15
15
|
{ type: "metadata"; section: "Metadata"; hidden: true },
|
|
16
16
|
{ type: "docs"; section: "Documentation"; hidden: true },
|
package/package.json
CHANGED
|
@@ -1,19 +1,19 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@binden/semantic-release-config",
|
|
3
|
-
"version": "
|
|
3
|
+
"version": "3.0.1",
|
|
4
4
|
"description": "Shareable semantic-release config (based on Conventional Commits)",
|
|
5
5
|
"main": ".releaserc.json",
|
|
6
6
|
"type": "commonjs",
|
|
7
7
|
"types": "index.d.ts",
|
|
8
8
|
"engines": {
|
|
9
|
-
"node": ">=
|
|
10
|
-
"npm": ">=
|
|
9
|
+
"node": ">=22.15.0",
|
|
10
|
+
"npm": ">=10.9.2"
|
|
11
11
|
},
|
|
12
12
|
"scripts": {
|
|
13
13
|
"commitlint": "commitlint --verbose --from=$( git rev-list --max-parents=0 $( git rev-parse --abbrev-ref HEAD ) )",
|
|
14
14
|
"install:clean": "npm install",
|
|
15
15
|
"preinstall:clean": "rm -rf node_modules package-lock.json",
|
|
16
|
-
"prepare": "husky
|
|
16
|
+
"prepare": "husky",
|
|
17
17
|
"prettier": "prettier -c .",
|
|
18
18
|
"prettier:write": "npm run prettier -- --write"
|
|
19
19
|
},
|
|
@@ -35,13 +35,13 @@
|
|
|
35
35
|
"peerDependencies": {
|
|
36
36
|
"@semantic-release/changelog": "^6.0.3",
|
|
37
37
|
"@semantic-release/git": "^10.0.1",
|
|
38
|
-
"semantic-release": "^
|
|
38
|
+
"semantic-release": "^24.2.3"
|
|
39
39
|
},
|
|
40
40
|
"devDependencies": {
|
|
41
|
-
"@binden/commitlint-config": "^1.0
|
|
42
|
-
"husky": "^
|
|
43
|
-
"lint-staged": "^
|
|
44
|
-
"prettier": "^3.
|
|
41
|
+
"@binden/commitlint-config": "^2.1.0",
|
|
42
|
+
"husky": "^9.1.7",
|
|
43
|
+
"lint-staged": "^15.5.1",
|
|
44
|
+
"prettier": "^3.5.3"
|
|
45
45
|
},
|
|
46
46
|
"publishConfig": {
|
|
47
47
|
"access": "public"
|