chore(deps): bump quinn-proto to 0.11.15 in the lockfile - #271
Merged
Conversation
Clears GHSA-4w2j-m93h-cj5j (high), the only open runtime-scope Dependabot alert on this repo. Lockfile-only: quinn-proto is a transitive dependency, so no Cargo.toml declares it. quinn-proto 0.11.14 -> 0.11.15 Verified per-crate as CI does (a bare cargo test --workspace fails to compile by design — pg-core's tests are gated behind its test feature, see CLAUDE.md): - cargo test pg-core --features test,rust,stream: 67 passed - cargo test pg-{pkg,cli,ffi} --all-features: 69 passed - cargo clippy on all four crates with -D warnings: clean - cargo fmt --all --check: clean - cargo build --workspace and cargo build --profile edge --bin pg-pkg: both succeed (CLAUDE.md asks for the edge build on any dependency bump) Co-Authored-By: Claude Opus 5 <noreply@anthropic.com>
dobby-coder
Bot
force-pushed
the
chore/bump-quinn-proto
branch
from
July 28, 2026 22:38
54b56ef to
b76e0fc
Compare
rubenhensen
approved these changes
Jul 29, 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.
Clears GHSA-4w2j-m93h-cj5j (high), the only open runtime-scope Dependabot alert on this repo.
quinn-protoLockfile-only —
quinn-protois transitive (QUIC support reached through thereqweststack), so noCargo.tomldeclares it and there is no version constraint to relax. The whole change is two lines in the rootCargo.lock.Separate from #195, which tracks the
rand0.8 → 0.9 major and is still blocked upstream. This one has no such coupling.Verification
A bare
cargo test --workspacefails to compile on this tree by design —pg-core's tests are gated behind itstestfeature, as CLAUDE.md documents — so I verified per crate the waybuild.ymldoes. I confirmed that workspace-level failure reproduces unchanged onmain, so it is not from this bump.cargo test --manifest-path pg-core/Cargo.toml --features test,rust,stream— 67 passed, 0 failedcargo test --manifest-path pg-{pkg,cli,ffi}/Cargo.toml --all-features— 69 passed, 0 failedcargo clippy --all-targets -- -D warningson all four crates — cleancargo fmt --all -- --check— cleancargo build --workspace— succeedscargo build --profile edge --bin pg-pkg— succeeds (CLAUDE.md asks for this specifically on a dependency bump, since the Dockerfile's Rust pin differs from the CI toolchain)Because this touches the root
Cargo.lock, it also trips thewire-compat-rustpath filter, so the cross-version wire-compatibility gate will run on this PR — which is the right check for a lockfile change and I'd expect it to pass, as no serialization crate moved.pg-wasmandpg-compatare excluded from the workspace and carry their own lockfiles, so neither is affected.