@alanscodelog/semantic-release-config 5.0.2 → 5.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/README.md CHANGED
@@ -1,4 +1,4 @@
1
- [![Release](https://github.com/alanscodelog/my-semantic-release-config/actions/workflows/release.yml/badge.svg)](https://github.com/alanscodelog/my-semantic-release-config/actions/workflows/release.yml)
1
+ [![Release](https://github.com/alanscodelog/semantic-release-config/actions/workflows/release.yml/badge.svg)](https://github.com/alanscodelog/semantic-release-config/actions/workflows/release.yml)
2
2
  [![NPM Version (with latest tag)](https://img.shields.io/npm/v/%40alanscodelog%2Fsemantic-release-config/latest)](https://www.npmjs.com/package/@alanscodelog/semantic-release-config/v/latest)
3
3
 
4
4
  My preferred semantic release config:
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@alanscodelog/semantic-release-config",
3
3
  "description": "My preferred semantic release config.",
4
- "version": "5.0.2",
4
+ "version": "5.0.4",
5
5
  "type": "module",
6
6
  "main": "release.config.js",
7
7
  "scripts": {
@@ -13,10 +13,11 @@
13
13
  "@alanscodelog/semantic-release-config": "^5.0.1",
14
14
  "@semantic-release/changelog": "^6.0.3",
15
15
  "@semantic-release/commit-analyzer": "^13.0.0",
16
+ "@semantic-release/git": "^10.0.1",
16
17
  "@semantic-release/github": "^11.0.0",
17
18
  "@semantic-release/npm": "^12.0.1",
18
19
  "@semantic-release/release-notes-generator": "^14.0.1",
19
- "@semantic-release/git": "^10.0.1",
20
+ "conventional-changelog-conventionalcommits": "^8.0.0",
20
21
  "semantic-release": "^24.1.2"
21
22
  },
22
23
  "devDependencies": {
@@ -24,7 +25,7 @@
24
25
  "husky": "^9.0.11"
25
26
  },
26
27
  "author": "Alan <alanscodelog@gmail.com>",
27
- "repository": "https://github.com/alanscodelog/my-semantic-release-config",
28
+ "repository": "https://github.com/alanscodelog/semantic-release-config",
28
29
  "license": "MIT",
29
30
  "files": [
30
31
  "release.config.js",
package/release.config.js CHANGED
@@ -61,6 +61,9 @@ export default{
61
61
  } ],
62
62
  [ "@semantic-release/release-notes-generator", {
63
63
  parserOpts,
64
+ // this HAS to be here even though we completely override it because
65
+ // it is not the default and only it supports the presetConfig options
66
+ preset: "conventionalcommits",
64
67
  presetConfig: {
65
68
  types: presetConfig_types
66
69
  },