docs(changelog): roll shipped v0.16.2, v0.16.3, v0.16.4 out of Unreleased - #635
Merged
Conversation
…ased The newest rolled section was 0.16.1 while v0.16.2, v0.16.3, and v0.16.4 are all published, so every shipped fix sat under Unreleased and read as unreleased. Each entry is moved into the version that shipped it, attributed by the commit range that added it to the file, with the genuinely unreleased entries left in place. Compare links and the preamble are updated to match. Signed-off-by: Joshua Temple <joshua.temple@stablekernel.com>
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.
Problem
CHANGELOG.md's newest rolled section was[0.16.1], but v0.16.2, v0.16.3, and v0.16.4 are all published (2026-07-17). Every shipped fix (reaper pagination, retries ladder, trunk_branch enforcement, and the rest) sat under## [Unreleased], so a reader concluded the shipped work was unreleased. The preamble's claim that the file and the release notes tell the same story did not hold.Root cause
No automated roll exists. The
generate-changelogsubcommand only builds git-derived release notes for the GitHub Release from a commit range; nothing rewritesCHANGELOG.md. The file is maintained by hand, and the roll from[Unreleased]into a versioned section was simply never done for the last three releases. The freshness guard (TestChangelog_UnreleasedCoversUserFacingCommits) only catches a lagging Unreleased, not an unrolled release, so the drift was invisible.Fix
Manual roll. Each entry is attributed to the release that shipped it by the commit range that added it to the file (
git diff v0.16.N v0.16.N+1 -- CHANGELOG.md), not by guesswork:## [0.16.2]gets 12 entries,## [0.16.3]18,## [0.16.4]8, all dated 2026-07-17 (their publish dates).## [Unreleased].[Unreleased]at v0.16.4...HEAD.[Unreleased]when its release is cut, rather than implying the two are kept identical automatically.An automated roll (a release-time step that rewrites and commits
CHANGELOG.md) is the true long-term fix but is a substantial, higher-risk release-workflow change; recommending it as a separate followup rather than bundling it here.Verification
TestChangelog_UnreleasedCoversUserFacingCommitspasses post-commit (the guard is inert until committed).go build ./...andgolangci-lint run ./...clean.Not fleet-relevant: pure CHANGELOG roll, no generator, workflow, or release-path change.