@binden/semantic-release-config 3.0.1 → 3.0.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/.releaserc.json +104 -35
- package/CHANGELOG.md +26 -0
- package/package.json +6 -6
package/.releaserc.json
CHANGED
|
@@ -1,38 +1,5 @@
|
|
|
1
1
|
{
|
|
2
2
|
"branches": "main",
|
|
3
|
-
"preset": "conventionalcommits",
|
|
4
|
-
"presetConfig": {
|
|
5
|
-
"types": [
|
|
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
|
-
},
|
|
22
|
-
{
|
|
23
|
-
"type": "devDependencies",
|
|
24
|
-
"section": "Dev dependencies",
|
|
25
|
-
"hidden": true
|
|
26
|
-
},
|
|
27
|
-
{ "type": "metadata", "section": "Metadata", "hidden": true },
|
|
28
|
-
{ "type": "docs", "section": "Documentation", "hidden": true },
|
|
29
|
-
{ "type": "style", "section": "Styles", "hidden": true },
|
|
30
|
-
{ "type": "chore", "section": "Miscellaneous Chores", "hidden": true },
|
|
31
|
-
{ "type": "refactor", "section": "Code Refactoring", "hidden": true },
|
|
32
|
-
{ "type": "test", "section": "Tests", "hidden": true },
|
|
33
|
-
{ "type": "ci", "section": "Continuous Integration", "hidden": true }
|
|
34
|
-
]
|
|
35
|
-
},
|
|
36
3
|
"plugins": [
|
|
37
4
|
[
|
|
38
5
|
"@semantic-release/commit-analyzer",
|
|
@@ -47,10 +14,112 @@
|
|
|
47
14
|
{ "type": "initial", "release": "minor" },
|
|
48
15
|
{ "type": "dependencies", "release": "patch" },
|
|
49
16
|
{ "type": "peerDependencies", "release": "patch" }
|
|
50
|
-
]
|
|
17
|
+
],
|
|
18
|
+
"preset": "conventionalcommits",
|
|
19
|
+
"presetConfig": {
|
|
20
|
+
"types": [
|
|
21
|
+
{ "type": "feat", "section": "Features", "hidden": false },
|
|
22
|
+
{ "type": "fix", "section": "Bug Fixes", "hidden": false },
|
|
23
|
+
{
|
|
24
|
+
"type": "perf",
|
|
25
|
+
"section": "Performance Improvements",
|
|
26
|
+
"hidden": false
|
|
27
|
+
},
|
|
28
|
+
{ "type": "revert", "section": "Reverts", "hidden": false },
|
|
29
|
+
{ "type": "build", "section": "Build System", "hidden": false },
|
|
30
|
+
{ "type": "initial", "section": "Initial", "hidden": false },
|
|
31
|
+
{
|
|
32
|
+
"type": "dependencies",
|
|
33
|
+
"section": "Dependencies",
|
|
34
|
+
"hidden": false
|
|
35
|
+
},
|
|
36
|
+
{
|
|
37
|
+
"type": "peerDependencies",
|
|
38
|
+
"section": "Peer dependencies",
|
|
39
|
+
"hidden": false
|
|
40
|
+
},
|
|
41
|
+
{
|
|
42
|
+
"type": "devDependencies",
|
|
43
|
+
"section": "Dev dependencies",
|
|
44
|
+
"hidden": true
|
|
45
|
+
},
|
|
46
|
+
{ "type": "metadata", "section": "Metadata", "hidden": true },
|
|
47
|
+
{ "type": "docs", "section": "Documentation", "hidden": true },
|
|
48
|
+
{ "type": "style", "section": "Styles", "hidden": true },
|
|
49
|
+
{
|
|
50
|
+
"type": "chore",
|
|
51
|
+
"section": "Miscellaneous Chores",
|
|
52
|
+
"hidden": true
|
|
53
|
+
},
|
|
54
|
+
{
|
|
55
|
+
"type": "refactor",
|
|
56
|
+
"section": "Code Refactoring",
|
|
57
|
+
"hidden": true
|
|
58
|
+
},
|
|
59
|
+
{ "type": "test", "section": "Tests", "hidden": true },
|
|
60
|
+
{
|
|
61
|
+
"type": "ci",
|
|
62
|
+
"section": "Continuous Integration",
|
|
63
|
+
"hidden": true
|
|
64
|
+
}
|
|
65
|
+
]
|
|
66
|
+
}
|
|
67
|
+
}
|
|
68
|
+
],
|
|
69
|
+
[
|
|
70
|
+
"@semantic-release/release-notes-generator",
|
|
71
|
+
{
|
|
72
|
+
"preset": "conventionalcommits",
|
|
73
|
+
"presetConfig": {
|
|
74
|
+
"types": [
|
|
75
|
+
{ "type": "feat", "section": "Features", "hidden": false },
|
|
76
|
+
{ "type": "fix", "section": "Bug Fixes", "hidden": false },
|
|
77
|
+
{
|
|
78
|
+
"type": "perf",
|
|
79
|
+
"section": "Performance Improvements",
|
|
80
|
+
"hidden": false
|
|
81
|
+
},
|
|
82
|
+
{ "type": "revert", "section": "Reverts", "hidden": false },
|
|
83
|
+
{ "type": "build", "section": "Build System", "hidden": false },
|
|
84
|
+
{ "type": "initial", "section": "Initial", "hidden": false },
|
|
85
|
+
{
|
|
86
|
+
"type": "dependencies",
|
|
87
|
+
"section": "Dependencies",
|
|
88
|
+
"hidden": false
|
|
89
|
+
},
|
|
90
|
+
{
|
|
91
|
+
"type": "peerDependencies",
|
|
92
|
+
"section": "Peer dependencies",
|
|
93
|
+
"hidden": false
|
|
94
|
+
},
|
|
95
|
+
{
|
|
96
|
+
"type": "devDependencies",
|
|
97
|
+
"section": "Dev dependencies",
|
|
98
|
+
"hidden": true
|
|
99
|
+
},
|
|
100
|
+
{ "type": "metadata", "section": "Metadata", "hidden": true },
|
|
101
|
+
{ "type": "docs", "section": "Documentation", "hidden": true },
|
|
102
|
+
{ "type": "style", "section": "Styles", "hidden": true },
|
|
103
|
+
{
|
|
104
|
+
"type": "chore",
|
|
105
|
+
"section": "Miscellaneous Chores",
|
|
106
|
+
"hidden": true
|
|
107
|
+
},
|
|
108
|
+
{
|
|
109
|
+
"type": "refactor",
|
|
110
|
+
"section": "Code Refactoring",
|
|
111
|
+
"hidden": true
|
|
112
|
+
},
|
|
113
|
+
{ "type": "test", "section": "Tests", "hidden": true },
|
|
114
|
+
{
|
|
115
|
+
"type": "ci",
|
|
116
|
+
"section": "Continuous Integration",
|
|
117
|
+
"hidden": true
|
|
118
|
+
}
|
|
119
|
+
]
|
|
120
|
+
}
|
|
51
121
|
}
|
|
52
122
|
],
|
|
53
|
-
"@semantic-release/release-notes-generator",
|
|
54
123
|
["@semantic-release/changelog", { "changelogTitle": "# Changelog" }],
|
|
55
124
|
"@semantic-release/npm",
|
|
56
125
|
"@semantic-release/github",
|
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,31 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## <small>3.0.4 (2026-04-12)</small>
|
|
4
|
+
|
|
5
|
+
- fix: pass presets to plugins directly ([f3c4667](https://github.com/binden-js/semantic-release-config/commit/f3c4667))
|
|
6
|
+
- fix!: bump version ([c68f34e](https://github.com/binden-js/semantic-release-config/commit/c68f34e))
|
|
7
|
+
|
|
8
|
+
## <small>3.0.3 (2026-04-12)</small>
|
|
9
|
+
|
|
10
|
+
- Merge pull request #100 from binden-js/dependabot/github_actions/actions/setup-node-6 ([6daa66e](https://github.com/binden-js/semantic-release-config/commit/6daa66e)), closes [#100](https://github.com/binden-js/semantic-release-config/issues/100)
|
|
11
|
+
- Merge pull request #103 from binden-js/dependabot/npm_and_yarn/lint-staged-16.2.7 ([f53fcb8](https://github.com/binden-js/semantic-release-config/commit/f53fcb8)), closes [#103](https://github.com/binden-js/semantic-release-config/issues/103)
|
|
12
|
+
- Merge pull request #104 from binden-js/dependabot/github_actions/actions/checkout-6 ([e470536](https://github.com/binden-js/semantic-release-config/commit/e470536)), closes [#104](https://github.com/binden-js/semantic-release-config/issues/104)
|
|
13
|
+
- Merge pull request #109 from binden-js/dependabot/npm_and_yarn/prettier-3.8.1 ([07114cb](https://github.com/binden-js/semantic-release-config/commit/07114cb)), closes [#109](https://github.com/binden-js/semantic-release-config/issues/109)
|
|
14
|
+
- perf!: drop Node.js <24 support ([d8caa5c](https://github.com/binden-js/semantic-release-config/commit/d8caa5c))
|
|
15
|
+
- peerDependencies: bump semantic-release to v25 ([7a2021b](https://github.com/binden-js/semantic-release-config/commit/7a2021b))
|
|
16
|
+
- devDependencies: bump lint-staged from 16.1.2 to 16.2.7 ([06a70c4](https://github.com/binden-js/semantic-release-config/commit/06a70c4))
|
|
17
|
+
- devDependencies: bump prettier from 3.6.2 to 3.8.1 ([d29726d](https://github.com/binden-js/semantic-release-config/commit/d29726d))
|
|
18
|
+
- ci: bump actions/checkout from 4 to 6 ([cc6009e](https://github.com/binden-js/semantic-release-config/commit/cc6009e))
|
|
19
|
+
- ci: bump actions/setup-node from 4 to 6 ([17ec06d](https://github.com/binden-js/semantic-release-config/commit/17ec06d))
|
|
20
|
+
|
|
21
|
+
## <small>3.0.2 (2025-06-29)</small>
|
|
22
|
+
|
|
23
|
+
- Merge pull request #87 from binden-js/dependabot/npm_and_yarn/lint-staged-16.1.2 ([8327c04](https://github.com/binden-js/semantic-release-config/commit/8327c04)), closes [#87](https://github.com/binden-js/semantic-release-config/issues/87)
|
|
24
|
+
- Merge pull request #90 from binden-js/dependabot/npm_and_yarn/prettier-3.6.2 ([458489d](https://github.com/binden-js/semantic-release-config/commit/458489d)), closes [#90](https://github.com/binden-js/semantic-release-config/issues/90)
|
|
25
|
+
- peerDependencies: bump `semantic-release` to `v24.2.6` ([1a24503](https://github.com/binden-js/semantic-release-config/commit/1a24503))
|
|
26
|
+
- devDependencies: bump lint-staged from 15.5.1 to 16.1.2 ([fb4e4b3](https://github.com/binden-js/semantic-release-config/commit/fb4e4b3))
|
|
27
|
+
- devDependencies: bump prettier from 3.5.3 to 3.6.2 ([5021492](https://github.com/binden-js/semantic-release-config/commit/5021492))
|
|
28
|
+
|
|
3
29
|
## <small>3.0.1 (2025-04-30)</small>
|
|
4
30
|
|
|
5
31
|
- 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)
|
package/package.json
CHANGED
|
@@ -1,13 +1,13 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@binden/semantic-release-config",
|
|
3
|
-
"version": "3.0.
|
|
3
|
+
"version": "3.0.4",
|
|
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": ">=24.14.1",
|
|
10
|
+
"npm": ">=11.11.0"
|
|
11
11
|
},
|
|
12
12
|
"scripts": {
|
|
13
13
|
"commitlint": "commitlint --verbose --from=$( git rev-list --max-parents=0 $( git rev-parse --abbrev-ref HEAD ) )",
|
|
@@ -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": "^25.0.3"
|
|
39
39
|
},
|
|
40
40
|
"devDependencies": {
|
|
41
41
|
"@binden/commitlint-config": "^2.1.0",
|
|
42
42
|
"husky": "^9.1.7",
|
|
43
|
-
"lint-staged": "^
|
|
44
|
-
"prettier": "^3.
|
|
43
|
+
"lint-staged": "^16.4.0",
|
|
44
|
+
"prettier": "^3.8.2"
|
|
45
45
|
},
|
|
46
46
|
"publishConfig": {
|
|
47
47
|
"access": "public"
|