fix(deps): bump openssl and rustls-webpki for high-severity Dependabot alerts - #83
Merged
Merged
Conversation
…pendabot alerts openssl 0.10.75 -> 0.10.81 (>= 0.10.79 required): fixes an OCSP-URL UB bug, an AES key-wrap bounds assertion, a digest_final buffer overrun, and a PSK/cookie callback memory leak (alerts #132-134, #136, #138). Pulled in transitively via native-tls -> reqwest/tauri, always active. rustls-webpki 0.103.9 -> 0.103.15 (>= 0.103.13 required): fixes a panic-based DoS on malformed CRL BIT STRINGs (alert #137). Pulled in via ureq -> velopack, behind the optional velopack-updates feature that release builds enable. Both are `cargo update -p` bumps with no direct dependency or code changes. Verified with `cargo build --release --features velopack-updates` (exercises the rustls-webpki path) and `cargo test --release` (968/968 passing).
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
Resolves the 6 new high-severity Dependabot alerts (https://github.com/PMTLabs/termflow-core/security/dependabot) reported against
src-tauri/Cargo.lock:openssl0.10.75 -> 0.10.81(need >= 0.10.79) — fixes OCSP-URL UB, AES key-wrap bounds assertion, adigest_finalbuffer overrun, and a PSK/cookie callback memory leak (#132, #133, #134, #136, #138). Transitive vianative-tls -> reqwest/tauri, always in the build.rustls-webpki0.103.9 -> 0.103.15(need >= 0.103.13) — fixes a panic-based DoS on a malformed CRL BIT STRING (#137). Transitive viaureq -> velopack, behind the optionalvelopack-updatesfeature that release builds enable.Both are
cargo update -pbumps — no direct-dependency version pins or application code changed.Test plan
cargo build --release --features velopack-updatessucceeds (exercises therustls-webpkipath, which isn't in the default feature set)cargo test --release— 968/968 passing