You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Hi, "breaking changes" are important things for users to watch out for in new versions. i usually include them in the commit messages, but i think it would be useful to have a specific section to display them, like in the example image. Is there a way to do this?
The text was updated successfully, but these errors were encountered:
Hi. In order to do this, you need to add an ! to the type in commit message like refactor!: change options interface. This will be automatically detected by changelogen to bump a major version + adding to the BREAKING CHANGES section.
@pi0 It does add the commit into the Breaking changes section, but it doesn't provide the breaking change details if provided.
Like :
chore!: drop support for Node 6
BREAKING CHANGE: use JavaScript features not available in Node 6.
will generate:
⚠️ Breaking Changes
⚠️ drop support for Node 6 (beb780c3)
but use JavaScript features not available in Node 6. would not appear in the changelog. It seems unfortunate to mention that there's a breaking change if we couldn't provide any details about it.
Hi, "breaking changes" are important things for users to watch out for in new versions. i usually include them in the commit messages, but i think it would be useful to have a specific section to display them, like in the example image. Is there a way to do this?
The text was updated successfully, but these errors were encountered: