fix: repair release preflight - #207
Merged
Merged
Conversation
|
The latest updates on your projects. Learn more about Vercel for GitHub. 1 Skipped Deployment
|
|
|
||
| steps: | ||
| - name: Checkout | ||
| uses: actions/checkout@v4 |
Comment on lines
+76
to
+77
| - name: Checkout | ||
| uses: actions/checkout@v4 |
salasebas
force-pushed
the
agent/fix-release-preflight-206
branch
from
July 20, 2026 18:50
99cd259 to
0ac183b
Compare
salasebas
marked this pull request as ready for review
July 20, 2026 19:15
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
rustauth/rustauth-fredpackage-verification cycle by moving Fred cross-crate/live tests into an unpublished integration-test craterustauth-passkey→rustauth-pluginsverification edgeRebase note
Rebased onto
mainat58319769(#208). Main already contains the Rust 1.97 Clippy rewrite and duplicateworkflow_dispatchremoval originally included here, so those changes are no longer part of this PR's diff. The Integration workflow keeps #208's serializedrustauth-clitests and this PR only replaces the Fred live-test matrix entry withrustauth-integration-tests.Root cause
Versioned dev-dependencies in
rustauth-fredare retained by Cargo during package verification. Fred therefore required the same-releaserustauthfacade, while the facade normally/optionally required Fred, leaving no valid clean publication order.The documented order also placed
rustauth-pluginsbefore its versioned verification dependencyrustauth-passkey.Validation
cargo fmt --all --checkcargo deny check— advisories, bans, licenses, and sources passenv RUSTC_WRAPPER= cargo +1.97.0 clippy --workspace --all-targets --all-features -- -D warningsenv RUSTC_WRAPPER= cargo nextest run -p rustauth-fred --all-features— 19 passedenv RUSTC_WRAPPER= cargo nextest run -p rustauth-integration-tests --all-features— 22 passed against local Redispython3 -m unittest discover -s scripts/tests -p test_check_release_order.py— 5 passedpython3 scripts/check_release_order.py— 23 publishable packages and 68 packaged workspace edges, acyclic and correctly orderedzizmor --offline --strict-collection --no-exit-codes .github/workflows/ci.yml .github/workflows/integration.yml— both workflows parse; only pre-existing action pin/cache findings remaincargo package -p rustauth-fred --allow-dirty --offline --no-verify— package succeeds and retains only the expected core/time/tokio dev-dependenciesCloses #206