Skip to content

Commit

Permalink
chore(deps): temporary override conventional-changelog-conventionalco…
Browse files Browse the repository at this point in the history
…mmits to v8 (#171)

## Context

This fixes
semantic-release/release-notes-generator#657
until @commitlint/config-conventional is updated, see
conventional-changelog/commitlint#4063.

## Changes

- Added: override in package.json
- Updated: `.releaserc`

## Checklist

- [x] My code follows the style guidelines of this project
- [x] I have performed a self-review of my own code
- [x] I have commented my code, particularly in hard-to-understand areas
- [x] I have made corresponding changes to the documentation
- [x] I have tested my code for breaking changes and added the
corresponding footer in this PR if needed
- [x] I have added tests that prove my fix is effective or that my
feature works
  • Loading branch information
remcolakens authored Feb 2, 2025
1 parent 86668fd commit 90b8b0e
Show file tree
Hide file tree
Showing 3 changed files with 32 additions and 28 deletions.
40 changes: 18 additions & 22 deletions .releaserc
Original file line number Diff line number Diff line change
Expand Up @@ -35,52 +35,48 @@
"presetConfig": {
"types": [
{
"type": "feat",
"section": "🚀 Features"
},
{
"type": "perf",
"section": "🏎 Performance"
"type": "build",
"section": "📦 Build"
},
{
"type": "fix",
"section": "🐞 Bug Fixes"
"type": "chore",
"section": "🏡 Chores"
},
{
"type": "refactor",
"section": "💅 Refactors"
"type": "ci",
"section": "🤖 CI"
},
{
"type": "docs",
"section": "📖 Documentation"
},
{
"type": "build",
"section": "📦 Build"
"type": "feat",
"section": "🚀 Features"
},
{
"type": "types",
"section": "🌊 Types"
"type": "fix",
"section": "🐞 Bug Fixes"
},
{
"type": "chore",
"section": "🏡 Chore"
"type": "perf",
"section": "🏎 Performance"
},
{
"type": "examples",
"section": "🏀 Examples"
"type": "refactor",
"section": "💅 Refactors"
},
{
"type": "test",
"section": "✅ Tests"
"type": "revert",
"section": "⏪ Reverts"
},
{
"type": "style",
"section": "🎨 Styles"
},
{
"type": "ci",
"section": "🤖 CI"
"type": "test",
"section": "✅ Tests"
}
]
}
Expand Down
7 changes: 6 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -77,5 +77,10 @@
"engines": {
"node": "22.x"
},
"packageManager": "[email protected]"
"packageManager": "[email protected]",
"pnpm": {
"overrides": {
"conventional-changelog-conventionalcommits": ">=8.0.0"
}
}
}
13 changes: 8 additions & 5 deletions pnpm-lock.yaml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

0 comments on commit 90b8b0e

Please sign in to comment.