fix(deps): bump quinn-proto 0.11.14->0.11.15 (RUSTSEC-2026-0185) + gate cargo audit on PRs#87
Open
rayketcham wants to merge 1 commit into
Open
fix(deps): bump quinn-proto 0.11.14->0.11.15 (RUSTSEC-2026-0185) + gate cargo audit on PRs#87rayketcham wants to merge 1 commit into
rayketcham wants to merge 1 commit into
Conversation
Daily Health Check cargo audit flagged RUSTSEC-2026-0185 (high severity) in quinn-proto 0.11.14. Bumped to 0.11.15 via `cargo update -p quinn-proto --precise 0.11.15` (Cargo.lock only; no Cargo.toml change required). Verified locally: `cargo audit --ignore RUSTSEC-2023-0071 \ --ignore RUSTSEC-2025-0134 --ignore RUSTSEC-2025-0144 \ --ignore RUSTSEC-2026-0097` exits 0 with 0 vulnerabilities. Reciprocal guard: ci.yml already contains an `audit` job (added previously) with the identical --ignore list, so every PR is already gated by cargo audit. RUSTSEC-2026-0185 is not added to any ignore list. Co-Authored-By: Claude <noreply@anthropic.com>
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.
Root Cause
Daily Health Check (
daily-health.yml) cargo audit flagged RUSTSEC-2026-0185 (high severity) inquinn-proto 0.11.14. The advisory was not present inci.yml's ignore list and the version inCargo.lockwas still 0.11.14.Fix
Bumped
quinn-protofrom0.11.14to0.11.15via:Cargo.lock-only change — noCargo.tomlmodifications required. The version boundary is satisfied by the existingquinndependency range.Reciprocal Guard
ci.ymlalready contains anauditjob (lines 293-322) that runscargo auditwith the same--ignorelist on every push and PR:RUSTSEC-2026-0185is not added to any ignore list in this PR — the fix is real (version bump), not a suppression.What Fake-Green Was Removed
None introduced here. The daily health check was already fail-closed; this PR eliminates the actual vulnerability so the check passes for real.
Local Verification Output
Zero vulnerabilities reported.
cargo auditexits 0.Generated with Claude Code