Track intermediate upstream releases in version check workflow#92
Merged
Conversation
When multiple upstream releases are published between workflow runs (e.g., v26.02.1 and v26.02.2 within hours), the workflow was only fetching release notes for the single latest release. This caused intermediate releases with significant changes (new features, Firefox updates) to be silently skipped in the changelog. Changes: - Pass tracked_version from check job to update job - Instruct Claude to fetch all releases via /releases?per_page=20 and filter for ALL versions newer than the tracked version - Update changelog instructions to aggregate notes from all intermediate releases - Update PR body to show previous tracked version and note that all intermediate releases are included https://claude.ai/code/session_014cqbnXKcGxho7fwA7So4bX
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.
Summary
Enhanced the upstream release check workflow to properly handle and document multiple intermediate releases between the currently tracked version and the latest upstream release. This ensures that changelog entries include all relevant changes, not just the latest release.
Key Changes
tracked_versionas a workflow output from the check step, making the currently tracked version available to downstream jobsImplementation Details
tracked_versionis extracted from the.upstream-versionfile and exported via$GITHUB_OUTPUT?per_page=20) and filtering for versions between tracked and latesthttps://claude.ai/code/session_014cqbnXKcGxho7fwA7So4bX