chore: backfill missing patch releases in the v1.2.x changelog table - #835
Open
Ketharan wants to merge 1 commit into
Open
chore: backfill missing patch releases in the v1.2.x changelog table#835Ketharan wants to merge 1 commit into
Ketharan wants to merge 1 commit into
Conversation
Signed-off-by: Ketharan <ketharan.mail@gmail.com>
Contributor
|
Important
This repository does not receive automatic reviews because it has fewer than 10 stars. ⚙️ Run configurationConfiguration used: Path: .coderabbit.yaml Review profile: CHILL Plan: Pro Plus Run ID: Thanks for using CodeRabbit! It's free for OSS, and your support helps us grow. If you like it, consider giving us a shout-out. Comment |
akila-i
approved these changes
Aug 23, 2026
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.
Purpose
versioned_docs/version-v1.2.x/changelog.mdis missing five releases: v1.0.4, v1.0.5, v1.1.4, v1.1.5 and v1.1.6. Its v1.1 rows stop at v1.1.3 and its v1.0 rows at v1.0.3.That file backs the default
/docs/changelogpath, so the published changelog currently skips those releases.docs/changelog.md— served at/docs/next/changelog— has always been complete, so the two have silently diverged.Confirmed on the live site after the v1.1.6 docs update merged:
A reader on the default URL cannot see that v1.1.4, v1.1.5 or v1.1.6 were released at all.
Approach
Adds the five missing rows, each copied verbatim from
docs/changelog.mdso dates, links and column padding are identical rather than re-derived. After this change the two tables' row sets are byte-identical.Only the changelog table is touched. The v1.2.x
_constants.mdxand support tables are unaffected — this does not change which version the v1.2 docs install.Related Issues
Follow-up to #834, where this gap was noted but deliberately left out of scope.
Checklist
Remarks
Verified before raising:
diffof the two tables' row sets returns clean after the change.Likely cause: the per-release docs updates kept the v1.2.x tree's own rows current but not the older lines' rows, so each v1.0.x/v1.1.x patch since v1.2.0 was added to
docs/and its own versioned tree, but not to v1.2.x. Worth folding into the release-info checklist so it does not drift again.