Conversation
A missing header-template file was silently ignored and the default header was used. Now prints a warning to stderr so users knowtheir custom header is not being applied.
Replace pipe character (|) with ASCII unit separator (\x1f) in --pretty=format strings and SplitN calls. Prevents commit subjects containing | from corrupting field parsing.
…onal When include-non-conventional is false and all commits in the range are non-conventional, do not write a header-only .changes/v*.md file.
When workspace.versioning is "independent" and a module path is set,
write the unified changelog to {modulePath}/CHANGELOG.md instead of
the shared root CHANGELOG.md. Follows the same auto-follow pattern
used by tag-manager prefix interpolation.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Description
Fixes and improvements to the
changelog-generatorplugin:regroupCommitsiterated a Go map, causing non-deterministic commit ordering when multiple original groups mapped to the same Keep a Changelog section. Now iteratessortedKeysfor stable output.header-templatefile was silently ignored. Now prints a warning to stderr.include-non-conventional: false, no longer writes a header-only.changes/v*.mdfile.|with\x1f(ASCII unit separator) in git log format strings to prevent commit subjects containing|from corrupting field parsing.workspace.versioning: independent, writes unified changelog to{modulePath}/CHANGELOG.mdinstead of root.Related Issue
Notes for Reviewers