-
Notifications
You must be signed in to change notification settings - Fork 0
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Better support for change groups in our Keep a Changelog parser & writer #153
Comments
For "No Changes" I wonder if we should follow similar guidance for yanked releases given in the FAQ:
We could do something similar for releases with no changes and use |
By fixing them. We have full control over them and if they are not compliant to the spec they're supposed to follow they are wrong and need fixing (regardless of the release automation). I created an issue for the JVM one: heroku/buildpacks-jvm#595 |
I've fixed Go's changelog in heroku/buildpacks-go#172. |
The JVM changelogs should now be in order as soon as heroku/buildpacks-jvm#716 is merged. Do we have further blockers? |
Yes, but I'm not sure how many are non-compliant. So to move this issue along without breaking anyone for release automation I think we'd first need:
I've been meaning to look into those but just haven't had the time 😞 |
Perhaps to avoid the overhead of another shared action and having to add it everywhere, we could start with having the prepare-release workflow run some checks and output warnings (the kind that get shown on the checks overview)? |
Yeah, that's a reasonable alternative. As long as we can surface changelog issues without blocking releases for now. We can enable stricter enforcement later on. |
Our representation of the Keep a Changelog format is compliant with the following Guiding Principles from the spec:
As noted above, we currently do not parse or validate the "change groups" listed in the spec:
Added
for new features.Changed
for changes in existing functionality.Deprecated
for soon-to-be removed features.Removed
for now removed features.Fixed
for any bug fixes.Security
in case of vulnerabilities.Instead, the content between version entries is simply treated as literal text. This is because we have existing changelogs that aren't in compliance with the spec. For example:
We also automatically add an default
- No Changes.
entry when a version is bumped as part of our fixed versioning strategy and there are no notable changes from the last version. This does not have an easy representation in the spec.Questions to discuss:
The text was updated successfully, but these errors were encountered: