Now that https://github.com/spring-io/github-changelog-generator/issues/34 is implemented, It would be great if dependency upgrades were sorted in the changelog as I feel it would be easier for folks to identify dependency upgrades they're interested in.
Comment From: snicoll
Unfortunately we can't just ask the changelog generator to sort the dependency upgrades section. As soon as we have an opinion, we lose the default sections and we have to copy over the defaults. I guess it's not so bad to have our own configuration file for this but flagging for team attention to get some more feedback.
Comment From: snicoll
For the record, the following configuration file does the trick:
changelog:
repository: spring-projects/spring-boot
sections:
- title: ":star: New Features"
labels:
- "type: enhancement"
- title: ":beetle: Bug Fixes"
labels:
- "type: bug"
- "type: regression"
- title: ":notebook_with_decorative_cover: Documentation"
labels:
- "type: documentation"
- title: ":hammer: Dependency Upgrades"
sort: "title"
labels:
- "type: dependency-upgrade"
Comment From: snicoll
Getting our own configuration file is probably what we should be doing anyway if we want to extend the defaults, see #23483
Comment From: snicoll
We've decided to give the yaml above a try.