[branch-54] chore: fix cargo audit#23607
Merged
Merged
Conversation
alamb
commented
Jul 15, 2026
| # run: cargo audit --ignore RUSTSEC-2026-0001 | ||
| run: cargo audit | ||
| # | ||
| # RUSTSEC-2026-0194 and RUSTSEC-2026-0195 (quick-xml) are ignored because |
Contributor
Author
There was a problem hiding this comment.
alamb
marked this pull request as ready for review
July 15, 2026 12:47
Update crossbeam-epoch, postgres-protocol, quinn-proto, and tokio-postgres to resolve RUSTSEC advisories, and ignore the two quick-xml advisories that require an object_store 0.14 (breaking) upgrade to fix. Co-Authored-By: Claude Fable 5 <noreply@anthropic.com>
alamb
force-pushed
the
alamb/branch-54-cargo-audit
branch
from
July 15, 2026 12:50
ee9a101 to
d07a227
Compare
31 tasks
comphead
approved these changes
Jul 15, 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?
54.1.0(minor/patch) Release #22547 (54.1.0 release)Rationale for this change
cargo auditis failing onbranch-54with 7 vulnerabilities across 5 crates:crossbeam-epoch0.9.18: RUSTSEC-2026-0204postgres-protocol0.6.11: RUSTSEC-2026-0179 (high), RUSTSEC-2026-0180quinn-proto0.11.14: RUSTSEC-2026-0185 (high)tokio-postgres0.7.17: RUSTSEC-2026-0178quick-xml0.39.2: RUSTSEC-2026-0194 (high), RUSTSEC-2026-0195 (high)This follows the model of similar fixes on earlier maintenance branches:
What changes are included in this PR?
cargo updatefor crates that have dependenciesquick-xmladvisories. The fix requiresquick-xml0.41, which is only used byobject_store0.14 — a breaking upgrade that can not be backported to this maintenance branch. The same advisories are ignored onmain(added in Fix CI failure by Ignore quick-xml audit advisories #23298, tracked by Cargo audit is failing on main #23297).Are these changes tested?
Yes, by CI.
cargo auditnow passes locally with the ignore flags (only allowed warnings remain).Are there any user-facing changes?
No, dependency version bumps in
Cargo.lockand a CI change only.