fix(dev): validate integration version bumps - #8139
Merged
Merged
Conversation
Xuanwo
marked this pull request as ready for review
August 25, 2026 09:17
PsiACE
approved these changes
Aug 26, 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.
Which issue does this PR close?
Follow-up to #8008.
Rationale for this change
object_store_opendal0.58.1 upgradedobject_storefrom 0.13 to 0.14 under a patch release, which broke downstream trait compatibility. The release tool currently trusts manually selected package versions and can repeat this mistake when an integration exposes types or traits from an incompatible dependency line.What changes are included in this PR?
Before writing any files,
update-versionnow compares configured public compatibility dependencies with the latest reachable final release tag. It requiresobject_store_opendalandparquet_opendalto cross the corresponding Cargo compatibility boundary whenopendal,object_store, orparquetdoes.The check uses the planned OpenDAL version from the release package graph and external dependency versions from the integration manifests. Missing release tags and unsupported dependency requirement shapes fail with actionable errors.
Are there any user-facing changes?
Release managers receive an error before version files are updated when an integration target is incompatible. Library APIs and runtime behavior do not change.
AI Usage Statement
Codex materially assisted with repository and release-history analysis, implementation, and regression-test design. The change assumes the latest reachable non-prerelease tag represents the release baseline and accepts dependency requirements with one caret, exact, or tilde comparator; other requirement shapes fail closed.