Questions tagged [conventional-changelog]
7 questions
12
votes
1 answer
semantic-release breaking-change using ! (exclamation mark)
Can Major version changes (aka Breaking Changes) be handled in semantic-release using the exclamation mark?
git commit -m 'feat!: this is breaking, but is not recognized by semantic-release'
Conventional Commit guidelines show that breaking changes…

David Cruwys
- 6,262
- 12
- 45
- 91
3
votes
0 answers
lerna conventional versioning with github actions
I've setup the github actions to run on PRs against development and main. Then in the workflow I have a task as follow:
if [ ${{ github.base_ref }} = development ]; then
npx lerna version --conventional-prerelease --preid beta --yes
else
npx…

Jackson
- 1,340
- 3
- 12
2
votes
1 answer
Semantic release - include in CHANGELOG the commit subject, body and footer
I am trying to configure semantic release to include the subject, body and footer of the commit messages in CHANGELOG.md file, not just the subject of commit message, but no success. In my changelog I still have only the short subject of commit…

Peter
- 31
- 3
1
vote
2 answers
Commitlint - Allow '/' in scope-enum
In my Angular project, I want to extend @commitlint/config-conventional with some pre-defined scopes.
The Angular project has a library for UI components (generated via ng generate library) and a default app which consumes the UI library.
In…

andreivictor
- 7,628
- 3
- 48
- 75
0
votes
1 answer
Lerna problem using conventional commits with an existing project
I've been manually managing my package versions and changelog.md file up to the 5.2.0. Now I'm trying to integrate Lerna to manage my package but facing an issue while doing that.
Issue: lerna version --conventional-commits,
Lerna is treating it as…
0
votes
0 answers
Can conventional changelog entry have more than one feature/bugfix item?
According to the conventional commits, only fix, feat or BREAKING CHANGE commits bumps version number. Following this specification, one may conclude that:
changelog version entry can't have "Features" (type feat) and "Bugfixes" (type fix) sections…

peetonn
- 2,942
- 4
- 32
- 49
0
votes
0 answers
Limiting conventional commits only to pull requests
As part of my CI/CD pipeline workflow, I am considering to make use of conventional commits to auto-generate release drafts in github. The idea of creating draft is to allow the code owners to review release notes before publishing it.
However, I am…

iamsmkr
- 800
- 2
- 10
- 29