@binden/semantic-release-config 2.0.0 → 3.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/.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
- { "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
+ {
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
- "type": "chore",
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,24 @@
1
1
  # Changelog
2
2
 
3
+ ## [3.0.0](https://github.com/binden-js/semantic-release-config/compare/v2.0.0...v3.0.0) (2024-01-28)
4
+
5
+ ### ⚠ BREAKING CHANGES
6
+
7
+ - bump `semantic-release` from `v21.0.7` to `v23.0.0`
8
+ - drop Node `<20` support
9
+
10
+ ### peerDependencies
11
+
12
+ - bump `semantic-release` from `v21.0.7` to `v23.0.0` ([f1a7178](https://github.com/binden-js/semantic-release-config/commit/f1a71788e39f7d3d10591a64c3f17717dce787d8))
13
+
14
+ ### Bug Fixes
15
+
16
+ - add the `hidden` property ([a73ddc9](https://github.com/binden-js/semantic-release-config/commit/a73ddc9293c4945c56190dc36300c26a129d4a33))
17
+
18
+ ### Performance Improvements
19
+
20
+ - drop Node `<20` support ([24bf3f5](https://github.com/binden-js/semantic-release-config/commit/24bf3f5b50d266c81c018f36e69e66d979a7e6d5))
21
+
3
22
  ## [2.0.0](https://github.com/binden-js/semantic-release-config/compare/v1.1.1...v2.0.0) (2023-07-12)
4
23
 
5
24
  ### ⚠ 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": "2.0.0",
3
+ "version": "3.0.0",
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": ">=18.6.0",
10
- "npm": ">=8.13.2"
9
+ "node": ">=20.11.0",
10
+ "npm": ">=10.2.4"
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 install",
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": "^21.0.7"
38
+ "semantic-release": "^23.0.0"
39
39
  },
40
40
  "devDependencies": {
41
41
  "@binden/commitlint-config": "^1.0.2",
42
- "husky": "^8.0.3",
43
- "lint-staged": "^13.2.3",
44
- "prettier": "^3.0.0"
42
+ "husky": "^9.0.6",
43
+ "lint-staged": "^15.2.0",
44
+ "prettier": "^3.2.4"
45
45
  },
46
46
  "publishConfig": {
47
47
  "access": "public"