chore(deps): update cargo minor/patch updates - #1792
Merged
Merged
Conversation
Contributor
Merge Protections🟢 All 6 merge protections satisfied — ready to merge. Show 6 satisfied protections🟢 🤖 Continuous Integration
🟢 👀 Review Requirements
🟢 Enforce conventional commitMake sure that we follow https://www.conventionalcommits.org/en/v1.0.0/
🟢 🔎 Reviews
🟢 📕 PR description
🟢 🚦 Auto-queueWhen all merge protections are satisfied, this pull request will be queued automatically. |
renovate
Bot
force-pushed
the
renovate/cargo-minorpatch-updates
branch
from
September 2, 2026 22:33
1b1cc8d to
86cc5da
Compare
renovate
Bot
force-pushed
the
renovate/cargo-minorpatch-updates
branch
from
September 4, 2026 06:04
86cc5da to
b1dfa99
Compare
renovate
Bot
force-pushed
the
renovate/cargo-minorpatch-updates
branch
from
September 7, 2026 22:39
b1dfa99 to
d397fcb
Compare
renovate
Bot
force-pushed
the
renovate/cargo-minorpatch-updates
branch
from
September 9, 2026 08:21
d397fcb to
5939bfa
Compare
renovate
Bot
force-pushed
the
renovate/cargo-minorpatch-updates
branch
from
September 10, 2026 02:02
5939bfa to
7d3ecec
Compare
renovate
Bot
force-pushed
the
renovate/cargo-minorpatch-updates
branch
from
September 13, 2026 01:24
7d3ecec to
a4c74c7
Compare
renovate
Bot
force-pushed
the
renovate/cargo-minorpatch-updates
branch
from
September 13, 2026 21:10
a4c74c7 to
a0c6e65
Compare
renovate
Bot
force-pushed
the
renovate/cargo-minorpatch-updates
branch
from
September 15, 2026 11:54
a0c6e65 to
c149359
Compare
renovate
Bot
force-pushed
the
renovate/cargo-minorpatch-updates
branch
from
September 15, 2026 15:40
c149359 to
a12a0ab
Compare
renovate
Bot
force-pushed
the
renovate/cargo-minorpatch-updates
branch
from
September 15, 2026 23:58
a12a0ab to
4f9e1b7
Compare
renovate
Bot
force-pushed
the
renovate/cargo-minorpatch-updates
branch
from
September 16, 2026 13:52
4f9e1b7 to
8391beb
Compare
jd
added a commit
that referenced
this pull request
Sep 16, 2026
flate2 1.1.9 -> 1.1.10, quick-xml 0.41 -> 0.42, jsonschema 0.49 -> 0.55. Supersedes renovate's #1792, which never got past `renovate/artifacts`: the bot regenerates Cargo.lock itself and couldn't, so every downstream job (rust, MSRV, cargo-deny, wheels, smoke tests, ci-gate) was red for want of a lockfile, not a real break in the bump. quick-xml 0.42 replaces its whole byte-oriented name/text API with `&str` (`QName` is now `QName<'a>(pub &'a str)`, and `BytesText` / `BytesCData` / `BytesRef` all implement `AsRef<str>` instead of `AsRef<[u8]>`), since the crate only ever accepted UTF-8 XML anyway. Update the JUnit parser's `local_name()` and every attribute/tag match in junit.rs from byte-string patterns to string patterns to match. jsonschema 0.49 -> 0.55 is six minor versions of a pre-1.0 crate; read the crate's changelog end to end rather than trusting a clean compile. The one behavior-relevant note (0.52.0: with `default-features = false`, `idn-hostname`/`idn-email` need the new `idna` feature or they're unknown formats) doesn't apply here — the Mergify config schema's own `format` keywords (`date-time`, `duration`, `regex`, `simple-template`, `template`) are all custom or already outside that set, so they were unknown formats (silently accepted) before this bump too. No code changes needed for `mergify-config`'s `validate_against_schema`, which only uses `options().build()` / `iter_errors()` / `instance_path()` — none of which changed shape across the six releases. Cargo.lock's other moves (jsonschema-regex, jsonschema-value, referencing pinned in lockstep with jsonschema; fraction and num-bigint pulled in by jsonschema's own updated deps; miniz_oxide and an inactive optional zlib-rs pulled in by flate2) are all forced by these three bumps, not separate dependency moves. Verified locally against the exact CI steps: `cargo fmt --all --check`, `cargo clippy --workspace --all-targets --all-features --locked -- -D warnings`, `cargo test --workspace --all-features --locked` (668 passed), `cargo build --workspace --all-features --locked`, all green. Co-Authored-By: Claude Sonnet 5 <noreply@anthropic.com> Change-Id: I34925c0376293e993db7b1048faa55005f3d1b9e
renovate
Bot
force-pushed
the
renovate/cargo-minorpatch-updates
branch
from
September 17, 2026 17:40
8391beb to
ebc58f9
Compare
mergify Bot
pushed a commit
that referenced
this pull request
Sep 18, 2026
flate2 1.1.9 -> 1.1.10, quick-xml 0.41 -> 0.42, jsonschema 0.49 -> 0.55. Supersedes renovate's #1792, which never got past `renovate/artifacts`: the bot regenerates Cargo.lock itself and couldn't, so every downstream job (rust, MSRV, cargo-deny, wheels, smoke tests, ci-gate) was red for want of a lockfile, not a real break in the bump. quick-xml 0.42 replaces its whole byte-oriented name/text API with `&str` (`QName` is now `QName<'a>(pub &'a str)`, and `BytesText` / `BytesCData` / `BytesRef` all implement `AsRef<str>` instead of `AsRef<[u8]>`), since the crate only ever accepted UTF-8 XML anyway. Update the JUnit parser's `local_name()` and every attribute/tag match in junit.rs from byte-string patterns to string patterns to match. jsonschema 0.49 -> 0.55 is six minor versions of a pre-1.0 crate; read the crate's changelog end to end rather than trusting a clean compile. The one behavior-relevant note (0.52.0: with `default-features = false`, `idn-hostname`/`idn-email` need the new `idna` feature or they're unknown formats) doesn't apply here — the Mergify config schema's own `format` keywords (`date-time`, `duration`, `regex`, `simple-template`, `template`) are all custom or already outside that set, so they were unknown formats (silently accepted) before this bump too. No code changes needed for `mergify-config`'s `validate_against_schema`, which only uses `options().build()` / `iter_errors()` / `instance_path()` — none of which changed shape across the six releases. Cargo.lock's other moves (jsonschema-regex, jsonschema-value, referencing pinned in lockstep with jsonschema; fraction and num-bigint pulled in by jsonschema's own updated deps; miniz_oxide and an inactive optional zlib-rs pulled in by flate2) are all forced by these three bumps, not separate dependency moves. Verified locally against the exact CI steps: `cargo fmt --all --check`, `cargo clippy --workspace --all-targets --all-features --locked -- -D warnings`, `cargo test --workspace --all-features --locked` (668 passed), `cargo build --workspace --all-features --locked`, all green. Co-Authored-By: Claude Sonnet 5 <noreply@anthropic.com>
renovate
Bot
force-pushed
the
renovate/cargo-minorpatch-updates
branch
from
September 18, 2026 09:13
ebc58f9 to
f72f557
Compare
Contributor
Merge Queue Status
This pull request spent 6 minutes 59 seconds in the queue, including 3 seconds running CI. Required conditions to merge
|
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.
This PR contains the following updates:
0.16.4→0.16.60.55→0.560.13.4→0.13.5Release Notes
console-rs/console (console)
v0.16.6Compare Source
What's Changed
Stranger6667/jsonschema (jsonschema)
v0.56.0Added
canonical::RawReason, what stopped a run from modeling a document, andcanonical::RawView, carrying it beside the document and a pointer to the subschema the run stopped on.ValidationOptions::is_known_format, whether aformatof that name is checked under a draft.Changed
canonical::CanonicalView::Rawcarries acanonical::RawViewin place of the document alone.oneOfwhose branches share a region too wide to expand, which spent the document's whole intersection allowance on that choice and kept the documentRaw.Performance
seanmonstar/reqwest (reqwest)
v0.13.5Compare Source
Error::is_dns()to identify errors caused by DNS resolution failures.ClientBuilder::http1_max_headers(usize)to configure the maximum number of headers accepted in an HTTP/1 response (default 100).TlsInfoextension.Ipv6AndIpv4strategy to prefer IPv6.Configuration
📅 Schedule: (UTC)
🚦 Automerge: Disabled by config. Please merge this manually once you are satisfied.
♻ Rebasing: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox.
👻 Immortal: This PR will be recreated if closed unmerged. Get config help if that's undesired.
This PR was generated by Mend Renovate. View the repository job log.