fix(deps): patch rust advisories quinn-proto and memmap2#632
Merged
Conversation
Bump quinn-proto 0.11.14 -> 0.11.15 to resolve RUSTSEC-2026-0185 (remote memory exhaustion from unbounded out-of-order stream reassembly, CVSS 7.5) in 502-rust-http-connector broker. Bump memmap2 0.9.10 -> 0.9.11 to resolve RUSTSEC-2026-0186 (unchecked pointer offset / unsound) in 507-ai-inference services. Both are semver-compatible lockfile-only bumps that unblock the cargo-audit dependency-audit CI job.
Codecov Report✅ All modified and coverable lines are covered by tests. Additional details and impacted files@@ Coverage Diff @@
## main #632 +/- ##
=======================================
Coverage 32.09% 32.09%
=======================================
Files 40 40
Lines 5960 5960
=======================================
Hits 1913 1913
Misses 4047 4047
Flags with carried forward coverage won't be shown. Click here to find out more. 🚀 New features to boost your workflow:
|
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.
Description
Patches two newly published Rust security advisories that are failing the
Dependency Audit(cargo-audit) CI job and blocking unrelated PRs (for example #519) from merging. Both fixes are semver-compatible, lockfile-only dependency bumps with no source or behavior changes.0.11.14→0.11.15insrc/500-application/502-rust-http-connector/services/brokerto resolve RUSTSEC-2026-0185 — Remote memory exhaustion from unbounded out-of-order stream reassembly (CVSS 7.5 HIGH, denial-of-service).0.9.10→0.9.11insrc/500-application/507-ai-inference/services/ai-edge-inferenceandai-edge-inference-crateto resolve RUSTSEC-2026-0186 — Unchecked pointer offset (unsound).These were addressed by upgrading the affected dependencies to their patched releases rather than allow-listing them in
.github/audit.toml/osv-scanner.toml, because fixed versions are available and semver-compatible.Related Issue
Relates to #519 (the cargo-audit failures were blocking that PR)
Type of Change
Implementation Details
cargo update -p quinn-proto --precise 0.11.15in the502-rust-http-connectorbroker crate.cargo update -p memmap2 --precise 0.9.11in both507-ai-inferencecrates.Cargo.lockfiles changed; the affected entries are transitive dependencies, so noCargo.tomlmanifest edits were required.Testing Performed
Ran
cargo audit --deny warnings(with the repo.github/audit.tomlallow-list applied) against each affected crate; all three now report no advisories. The remaining allow-listed advisories (instant,paste,rustls-pemfile,rand) are unchanged.Validation Steps
cp .github/audit.toml <crate>/.cargo/audit.toml.cargo audit --deny warningsin:src/500-application/502-rust-http-connector/services/brokersrc/500-application/507-ai-inference/services/ai-edge-inferencesrc/500-application/507-ai-inference/services/ai-edge-inference-crateerror:advisories.Checklist
terraform fmton all Terraform codeterraform validateon all Terraform codeaz bicep formaton all Bicep codeaz bicep buildto validate all Bicep codeSecurity Review
Additional Notes
Cargo.lockfiles.SECURITY.md,src/000-cloud/010-security-identity/,deploy/), so thesecurity-reviewedlabel should not be required.