-
Notifications
You must be signed in to change notification settings - Fork 0
ci: add releases.toml automation for compatibility tracking
#121
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
Merged
Conversation
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
PR SummaryAdds CI job and script to append dependency versions to
Written by Cursor Bugbot for commit 7bee68e. This will update automatically on new commits. Configure here. |
Contributor
d09ae11 to
779be44
Compare
779be44 to
3e88aa5
Compare
Add CI automation to track dependency versions for each release: - Add `update_releases.sh` script that extracts sway, fuel-core, and fuels-rs versions from Cargo.lock and appends entries to releases.toml - Add `update-releases` job to CI that runs after publish-crates and opens a PR with the updated releases.toml - Update RELEASING.md to document the new compatibility tracking step This implements the compatibility tracking section from the forc-tooling monorepo RFC. The releases.toml file serves as an append-only log that fuelup and fuel.nix can use to determine compatible toolchain versions. Also bump forc-wallet to 0.16.2 to test the automation after merge.
3e88aa5 to
9f0c1d3
Compare
kayagokalp
approved these changes
Dec 6, 2025
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.
Add CI automation to track dependency versions for each release:
update_releases.shscript that extractssway,fuel-core, andfuels-rsversions fromCargo.lockand appends entries toreleases.tomlupdate-releasesjob to CI that runs after publish-crates and opens a PR with the updated releases.tomlRELEASING.mdto document the new compatibility tracking stepThe script only records dependency versions that the specific crate actually uses - it checks the crate's own
Cargo.tomlrather than recording all versions from the workspace'sCargo.lock.This implements the compatibility tracking section from the forc-tooling monorepo RFC. The
releases.tomlfile serves as an append-only log thatfuelupandfuel.nixcan use to determine compatible toolchain versions.Also bump
forc-walletto 0.16.2 to test the automation after merge.