How can we highlight breaking changes? #509
-
My understanding of https://keepachangelog.com/en/1.0.0/ is that all This does not seem obvious enough: It would also be important to list the breaking changes first, since they are the most important part of a release for end-users. Given this starting point - https://github.com/dagger/dagger/blob/62ab7216d8b6f01fe3348778aa909b57dc68d420/sdk/python/.changie.yaml - how would you recommend @miniscruff that we went about this? cc @helderco |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 2 replies
-
Kinds are in sorted order from the config and can be customized via the https://changie.dev/config/#kindconfig-type options. For your particular question I would do something like: kinds:
- label: Breaking Changes
format: '### :fire: **Breaking Changes**'
- label: Added
- label: Deprecated
- label: Fixed
- label: Dependencies Customize as you wish but just remember the order is preserved and you can separate the prompt label from the final output via the format. |
Beta Was this translation helpful? Give feedback.
Kinds are in sorted order from the config and can be customized via the https://changie.dev/config/#kindconfig-type options. For your particular question I would do something like:
Customize as you wish but just remember the order is preserved and you can separate the prompt label from the final output via the format.
You can also further customize change format or even adding additional prompts only for that kind, eg if you wanted to link to a CVE or something idk.