deps: bump h2 / rustls / wasmtime / webbrowser past open RustSec advisories - #521
Merged
Merged
Conversation
…sories The `Licenses & Vulnerabilities` (cargo deny) job fails on main and every PR with five advisories, all fixed in semver-compatible patch releases: - RUSTSEC-2026-0258 h2 0.4.14 -> 0.4.19 (unbounded empty DATA frames) - RUSTSEC-2026-0285 rustls 0.23.40 -> 0.23.45 (TLS 1.3 handshake messages accepted across encryption-level boundaries); pulls aws-lc-rs 1.18.1 / aws-lc-sys 0.45.0 / rustls-webpki 0.103.15 - RUSTSEC-2026-0268 / RUSTSEC-2026-0269 wasmtime 47.0.3 -> 47.0.4 (WASIp3 stream host allocation; filesystem sandbox escape via trailing slashes) - RUSTSEC-2026-0257 webbrowser 1.2.1 -> 1.2.4 (BROWSER argument injection) The workspace floors for the two direct deps are raised to the patched versions (wasmtime "47.0.4", rustls "0.23.45"), following the existing load-bearing patch-floor convention on wasmtime. Co-Authored-By: Claude Opus 5.5 (1M context) <noreply@anthropic.com>
Codex Review SummaryThis comment shows the latest Codex review activity on this pull request.
ℹ️ About Codex in GitHubYour team has set up Codex to review pull requests in this repo. Reviews are triggered when you
Codex reacts with 👀 while any review is running, comments if it has suggestions, and reacts with 👍 once all reviews finish with no findings. |
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
Licenses & Vulnerabilities(cargo deny) is failing onmainand every PR (e.g. run 35838703540). Five advisories were the cause, and every one is fixed in a semver-compatible patch release:BROWSERargument injectionaws-lc-rs1.17.0 → 1.18.1,aws-lc-sys0.41.0 → 0.45.0 andrustls-webpki0.103.13 → 0.103.15. A plaincargo update -p rustlsstopped at 0.23.43, so I used--precise 0.23.45.Cargo.toml, the version floors for the two direct dependencies now match the patched versions:wasmtime = "47.0.4"andrustls = "0.23.45". This follows the existing convention of a patch-level floor on wasmtime. I also updated the wasmtime floor's explanatory comment for the new advisories.Verification (local)
cargo deny checkwith cargo-deny 0.20.2 (the same version CI uses):advisories ok, bans ok, licenses ok, sources ok.mise run check/lint/test-all(12785 passed) /doc/trip-wires: all EXIT=0.Cargo.toml:cargo check --workspace --all-features --lockedpasses andcargo fmt --checkis clean.🤖 Generated with Claude Code