chore: bump rustls-webpki to 0.103.15 in the lockfile - #6270
Merged
Conversation
Clears RUSTSEC-2026-0098, -0099 and -0104 on the libduckdb-sys -> reqwest -> hyper-rustls -> rustls 0.23 path. Refs #6269
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.
Problem
#6269 reports three RUSTSEC advisories reachable through
tiberius. Investigating them showed the advisories are actually againstrustls-webpki(nottiberiusitself), and the lockfile reaches affected versions by two independent paths — only one of which involvestiberius:rustls-webpkitiberius 0.12.3→tokio-rustls 0.24.1→rustls 0.21.12libduckdb-sys(build script) →reqwest 0.12.28→hyper-rustls 0.27.7→tokio-rustls 0.26.4→rustls 0.23.37>= 0.103.12/>= 0.103.13The
tiberiuspath needs the crate swap #6269 proposes, which is blocked on aljazerzen/connector_arrow#81. The second path is fixable today with a lockfile bump, and would not have been cleared by thetiberiusswap.Solution
cargo update -p rustls-webpki@0.103.9→ 0.103.15, which is patched for all three advisories (2026-0098, 2026-0099, 2026-0104). Lockfile-only, three lines, no manifest change —hyper-rustls/rustlsalready accept this version under their existing requirements.Scope
Low urgency, filed for hygiene rather than exposure: both paths sit behind test-only features (
test-dbs/test-dbs-external), so no publishedprqlcartifact contains either. The remaining 0.101.7 entry is untouched by this PR and stays until thetiberiusquestion in #6269 is resolved.Testing
cargo metadata --locked --all-featuresresolves cleanly against the updated lockfile. Compilation of the affected path happens under thetest-dbsfeature in thetestsmatrix.Refs #6269