Skip to content

chore(deps): bump the patch-updates group across 1 directory with 6 updates#635

Merged
forkwright merged 4 commits into
mainfrom
dependabot/cargo/patch-updates-7d3b0d86c5
Jul 23, 2026
Merged

chore(deps): bump the patch-updates group across 1 directory with 6 updates#635
forkwright merged 4 commits into
mainfrom
dependabot/cargo/patch-updates-7d3b0d86c5

Conversation

@dependabot

@dependabot dependabot Bot commented on behalf of github Jul 20, 2026

Copy link
Copy Markdown
Contributor

Bumps the patch-updates group with 6 updates in the / directory:

Package From To
serde 1.0.228 1.0.229
serde_json 1.0.150 1.0.151
jiff 0.2.32 0.2.34
mdns-sd 0.20.1 0.20.2
clap 4.6.1 4.6.3
futures-util 0.3.32 0.3.33

Updates serde from 1.0.228 to 1.0.229

Release notes

Sourced from serde's releases.

v1.0.229

  • Update to syn 3
Commits
  • 7fc3b4c Release 1.0.229
  • 6d6e9a1 Merge pull request #3085 from dtolnay/syn3
  • 6dec3b7 Update to syn 3
  • cfe6692 Resolve mut_mut pedantic clippy lint
  • 1023d07 Update actions/upload-artifact@v6 -> v7
  • dd682c2 Update actions/checkout@v6 -> v7
  • 5f0f18b Update ui test suite to nightly-2026-06-01
  • 63a1498 Regenerate stderr with trybuild normalization fixes
  • fa7da4a Fix unused_features warning
  • 6b1a178 Unpin CI miri toolchain
  • Additional commits viewable in compare view

Updates serde_json from 1.0.150 to 1.0.151

Release notes

Sourced from serde_json's releases.

v1.0.151

Commits
  • de85007 Release 1.0.151
  • 3b2b3c5 Merge pull request #1331 from WonderLawrence/rawvalue-from-string-unchecked
  • 0406d96 Debug-assert well-formedness and no-whitespace in from_string_unchecked
  • cf16f75 Add RawValue::from_string_unchecked
  • 827a315 Update actions/upload-artifact@v6 -> v7
  • cea36a5 Update actions/checkout@v6 -> v7
  • See full diff in compare view

Updates jiff from 0.2.32 to 0.2.34

Changelog

Sourced from jiff's changelog.

0.2.34 (2026-07-19)

This release contains a few small enhancements. Namely, some error messages for parsing datetime values have been improved by removing some redundant messaging. Additionally, the strftime APIs on datetime values can no longer panic. Instead, they'll silently pass through invalid formatting directives.

Enhancements:

  • #519: Improve some parsing error messages by removing redundancy.
  • #585: Change Timestamp::strftime (and similar methods) so that they will never panic.

0.2.33 (2026-07-18)

This release permits the use of a global time zone database in alloc-only environments. It also contains a massive internal refactor that introduces a new jiff-core crate for better code sharing.

Enhancements:

  • #285: Decouple naming of time zones from their TZif data.
  • #373: Add a new jiff-core crate for better code sharing.
  • #533: A bundled TimeZoneDatabase is now available when only alloc is enabled.
Commits
  • 7311a6a 0.2.34
  • 5682809 test: fixes for testing from released crates
  • cebda72 cargo: switch to a virtual manifest
  • 21be3de util: remove vestigial bounds error wrapper
  • 1f9cf9e error: tighten up some error messages
  • afc23a2 fmt: use lenient formatting mode for strftime APIs
  • ddd26a8 0.2.33
  • 4c480d9 scripts: allow unbound variables
  • 496428e ci: clarify comment about ranged integers
  • c0b0d4b tz: remove TZif name jiff_core::tz::tzif::TimeZone
  • Additional commits viewable in compare view

Updates mdns-sd from 0.20.1 to 0.20.2

Release notes

Sourced from mdns-sd's releases.

v0.20.2

This is a feature and bugfix release focused on improved RFC 6762 compliance.

New features

  • Implement RFC 6762 section 6 multicast rate limiting: responses to the same record are rate-limited to no more than once per second on a given interface. (#476, commit 76f42bd)
  • Delay responses to PTR queries per RFC 6762 section 6, spreading responses over a random 10-50ms (instead of 20-120ms) window to reduce collisions. (#479, commit a37e959)
  • Add a random jitter 10-50ms (instead of 20-120ms) before sending the initial query per RFC 6762 section 5.2. (#480, commit 7c55c75)

What's Changed

Full Changelog: keepsimple1/mdns-sd@v0.20.1...v0.20.2

Changelog

Sourced from mdns-sd's changelog.

Version 0.20.2 (2026-07-16)

This is a feature and bugfix release focused on improved RFC 6762 compliance.

New features

  • Implement RFC 6762 section 6 multicast rate limiting: responses to the same record are rate-limited to no more than once per second on a given interface. (#476, commit 76f42bd)
  • Delay responses to PTR queries per RFC 6762 section 6, spreading responses over a random 10-50ms (instead of 20-120ms) window to reduce collisions. (#479, commit a37e959)
  • Add a random jitter 10-50ms (instead of 20-120ms) before sending the initial query per RFC 6762 section 5.2. (#480, commit 7c55c75)

Bug fixes / improvements

  • Space announcement retransmissions wider than the rate-limit window so that repeated announcements are not dropped. (#477, commit 6f39a46)
  • Avoid leaking empty cache entries for records that are not for us. (#481, commit 5cfa13a)

All changes

  • 5cfa13a 2026-07-15 fix: avoid leaking empty cache entries for records not for us (#481) (keepsimple1)
  • 7c55c75 2026-07-14 feat: add a jitter for initial query per RFC 6762 section 5.2 (#480) (keepsimple1)
  • a37e959 2026-07-12 feat: delay PTR query responses per RFC 6762 section 6 (#479) (keepsimple1)
  • 6f39a46 2026-07-08 fix: space announcement retransmissions wider than the rate-limit window (#477) (keepsimple1)
  • 76f42bd 2026-07-07 feat: Implement RFC 6762 section 6 multicast rate limiting (#476) (keepsimple1)
Commits
  • 42d99a8 prepare for a new release v0.20.2 (#482)
  • 5cfa13a fix: avoid leaking empty cache entries for records not for us (#481)
  • 7c55c75 feat: add a jitter for initial query per RFC 6762 section 5.2 (#480)
  • a37e959 feat: delay PTR query responses per RFC 6762 section 6 (#479)
  • 6f39a46 fix: space announcement retransmissions wider than the rate-limit window (#477)
  • 76f42bd feat: Implement RFC 6762 section 6 multicast rate limiting (#476)
  • See full diff in compare view

Updates clap from 4.6.1 to 4.6.3

Release notes

Sourced from clap's releases.

v4.6.3

[4.6.3] - 2026-07-20

Fixes

  • (derive) Allow "literal".function() as attribute values

v4.6.2

[4.6.2] - 2026-07-15

Fixes

  • (help) Say alias when there is only one
Changelog

Sourced from clap's changelog.

[4.6.3] - 2026-07-20

Fixes

  • (derive) Allow "literal".function() as attribute values

[4.6.2] - 2026-07-15

Fixes

  • (help) Say alias when there is only one
Commits
  • 7e0bcca chore: Release
  • 0f09905 docs: Update changelog
  • 9706951 Merge pull request #6353 from truffle-dev/feat-completer-arg-index
  • ac0d148 feat(complete): Index-aware ValueCompleter
  • 1565a3c test(complete): Cover indexed multi-value case
  • 48fc10a Merge pull request #6350 from stefankreutz/missing_docs
  • 7d4c353 docs: Hint at clippy's missing docs lint
  • f6a6701 chore(deps): Update Rust Stable to v1.95 (#6347)
  • ac5fda6 chore: Release
  • b73c627 docs: Update changelog
  • Additional commits viewable in compare view

Updates futures-util from 0.3.32 to 0.3.33

Release notes

Sourced from futures-util's releases.

0.3.33

  • Fix ReadLine's soundness issue regarding to exception safety. (#3020)
  • Fix unsound Send impl for IterPinRef and Iter. (#3003)
  • Fix stacked borrows violation in compat01as03 implementation. (#3012)
  • Fix memory leak in FuturesUnordered::IntoIter. (#3005)
  • Add portable-atomic-alloc feature and use it in FuturesUnordered. (#3007)
  • Re-export alloc::task::Wake. (#3010)
  • Update spin to 0.12. (#3014)
Changelog

Sourced from futures-util's changelog.

0.3.33 - 2026-07-18

  • Fix ReadLine's soundness issue regarding to exception safety. (#3020)
  • Fix unsound Send impl for IterPinRef and Iter. (#3003)
  • Fix stacked borrows violation in compat01as03 implementation. (#3012)
  • Fix memory leak in FuturesUnordered::IntoIter. (#3005)
  • Add portable-atomic-alloc feature and use it in FuturesUnordered. (#3007)
  • Re-export alloc::task::Wake. (#3010)
  • Update spin to 0.12. (#3014)
Commits
  • 89cc254 Release 0.3.33
  • cd9f5be ci: Update release workflow
  • d79a499 Resolve rustdoc::broken_intra_doc_links warning
  • 95bbcf8 Resolve rustdoc ambiguous link error
  • 303c165 Resolve rustdoc::redundant_explicit_links warning
  • f34e3f5 ci: Cleanup
  • 66591a2 Enable Miri for more tests
  • ab1072f Simplify target_has_atomic cfg in utility crates
  • cf5d23b Fix unsound compat01as03 implementation (fixes #2514) (#3012)
  • 8ae794f Add portable-atomic-alloc feature and use it in FuturesUnordered (#3007)
  • Additional commits viewable in compare view

@dependabot dependabot Bot added dependencies Pull requests that update a dependency file rust Pull requests that update Rust code labels Jul 20, 2026
…pdates

Bumps the patch-updates group with 6 updates in the / directory:

| Package | From | To |
| --- | --- | --- |
| [serde](https://github.com/serde-rs/serde) | `1.0.228` | `1.0.229` |
| [serde_json](https://github.com/serde-rs/json) | `1.0.150` | `1.0.151` |
| [jiff](https://github.com/BurntSushi/jiff) | `0.2.32` | `0.2.34` |
| [mdns-sd](https://github.com/keepsimple1/mdns-sd) | `0.20.1` | `0.20.2` |
| [clap](https://github.com/clap-rs/clap) | `4.6.1` | `4.6.3` |
| [futures-util](https://github.com/rust-lang/futures-rs) | `0.3.32` | `0.3.33` |



Updates `serde` from 1.0.228 to 1.0.229
- [Release notes](https://github.com/serde-rs/serde/releases)
- [Commits](serde-rs/serde@v1.0.228...v1.0.229)

Updates `serde_json` from 1.0.150 to 1.0.151
- [Release notes](https://github.com/serde-rs/json/releases)
- [Commits](serde-rs/json@v1.0.150...v1.0.151)

Updates `jiff` from 0.2.32 to 0.2.34
- [Release notes](https://github.com/BurntSushi/jiff/releases)
- [Changelog](https://github.com/BurntSushi/jiff/blob/master/CHANGELOG.md)
- [Commits](BurntSushi/jiff@jiff-static-0.2.32...jiff-static-0.2.34)

Updates `mdns-sd` from 0.20.1 to 0.20.2
- [Release notes](https://github.com/keepsimple1/mdns-sd/releases)
- [Changelog](https://github.com/keepsimple1/mdns-sd/blob/main/CHANGELOG.md)
- [Commits](keepsimple1/mdns-sd@v0.20.1...v0.20.2)

Updates `clap` from 4.6.1 to 4.6.3
- [Release notes](https://github.com/clap-rs/clap/releases)
- [Changelog](https://github.com/clap-rs/clap/blob/master/CHANGELOG.md)
- [Commits](clap-rs/clap@clap_complete-v4.6.1...clap_complete-v4.6.3)

Updates `futures-util` from 0.3.32 to 0.3.33
- [Release notes](https://github.com/rust-lang/futures-rs/releases)
- [Changelog](https://github.com/rust-lang/futures-rs/blob/main/CHANGELOG.md)
- [Commits](rust-lang/futures-rs@0.3.32...0.3.33)

---
updated-dependencies:
- dependency-name: clap
  dependency-version: 4.6.2
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: patch-updates
- dependency-name: futures-util
  dependency-version: 0.3.33
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: patch-updates
- dependency-name: jiff
  dependency-version: 0.2.34
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: patch-updates
- dependency-name: mdns-sd
  dependency-version: 0.20.2
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: patch-updates
- dependency-name: serde
  dependency-version: 1.0.229
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: patch-updates
- dependency-name: serde_json
  dependency-version: 1.0.151
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: patch-updates
...

Signed-off-by: dependabot[bot] <support@github.com>
@dependabot dependabot Bot changed the title chore(deps): bump the patch-updates group with 6 updates chore(deps): bump the patch-updates group across 1 directory with 6 updates Jul 21, 2026
@dependabot
dependabot Bot force-pushed the dependabot/cargo/patch-updates-7d3b0d86c5 branch from 7717760 to a9e9c41 Compare July 21, 2026 03:04
@forkwright
forkwright enabled auto-merge (squash) July 23, 2026 01:25
forkwright and others added 2 commits July 22, 2026 20:56
serde_derive moved to syn 3.x while the remaining proc-macro tree pins
2.x — transient ecosystem migration, same justified-pair class as
bincode and thiserror.

Refs #635
@forkwright
forkwright merged commit 769804c into main Jul 23, 2026
12 of 15 checks passed
@forkwright
forkwright deleted the dependabot/cargo/patch-updates-7d3b0d86c5 branch July 23, 2026 05:24
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

dependencies Pull requests that update a dependency file rust Pull requests that update Rust code

Projects

None yet

Development

Successfully merging this pull request may close these issues.

1 participant