Bump phonenumber to 0.3.10, clearing the quick-xml advisories#116
Merged
Conversation
`cargo deny` flagged two RUSTSEC advisories (RUSTSEC-2026-0194 quadratic run-time, RUSTSEC-2026-0195 unbounded namespace-declaration allocation) against a transitive `quick-xml 0.38.4` — a build-dependency of `phonenumber`. `phonenumber 0.3.10` drops that vulnerable `quick-xml` entirely, so bumping it (a lockfile-only change; `"0.3"` already permits it) removes both advisories at the source rather than suppressing them. Also clears the duplicate-`quick-xml` bans warning. `cargo deny check` is now clean (advisories/bans/licenses/sources all ok); pattern and workspace tests pass. Co-Authored-By: Claude Opus 4.8 <[email protected]>
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.
cargo deny checkfailed on two RUSTSEC advisories:NsReader(memory-exhaustion DoS)Both are against a transitive
quick-xml 0.38.4, which is a build-dependency ofphonenumber(used to generate phone-number metadata tables at compile time). Our own directquick-xmlis already 0.41.0.Fix
phonenumber 0.3.9 → 0.3.10— the new release dropsquick-xml 0.38.4entirely, so this removes both advisories at the source rather than suppressing them indeny.toml. Lockfile-only change (phonenumber = "0.3"already permits 0.3.10; noCargo.tomledit). Also clears the duplicate-quick-xmlbanswarning as a bonus.Verification
cargo deny check→advisories ok, bans ok, licenses ok, sources ok.elide-patterntests pass (phone-number validation intact after the metadata bump) and the workspace tests pass.🤖 Generated with Claude Code