Skip to content

Bump the minor-and-patch group across 1 directory with 10 updates#1953

Open
dependabot[bot] wants to merge 1 commit into
mainfrom
dependabot/cargo/minor-and-patch-9078953cb6
Open

Bump the minor-and-patch group across 1 directory with 10 updates#1953
dependabot[bot] wants to merge 1 commit into
mainfrom
dependabot/cargo/minor-and-patch-9078953cb6

Conversation

@dependabot

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

Copy link
Copy Markdown

Bumps the minor-and-patch group with 10 updates in the / directory:

Package From To
derive_arbitrary 1.3.2 1.4.2
serde 1.0.210 1.0.229
serde_json 1.0.128 1.0.151
proptest 1.5.0 1.11.0
libfuzzer-sys 0.4.7 0.4.13
expect-test 1.5.0 1.5.1
trybuild 1.0.115 1.0.118
quote 1.0.37 1.0.47
proc-macro2 1.0.95 1.0.107
serde_with 3.12.0 3.21.0

Updates derive_arbitrary from 1.3.2 to 1.4.2

Changelog

Sourced from derive_arbitrary's changelog.

1.4.2

Released 2025-08-13.

Added

  • Added formal MSRV policy: "We reserve the right to increment the MSRV on minor releases, however we will strive to only do it deliberately and for good reasons." The current MSRV is 1.63.0.
  • Added an Arbitrary implementation for core::cmp::Reverse.

Changed

  • Landed a handful of changes to the code generated by #[derive(Arbitrary)] that speed up compilation.

Fixed

  • Better documented bias and behavior when running out of entropy, fixed some outdated and incorrect docs related to this.

1.4.1

Released 2024-11-05.


1.4.0

Released 2024-10-30.

Added

  • Added an Arbitrary implementation for PhantomPinned.
  • Added the Unstructured::choose_iter helper method.
  • Added #[arbitrary(skip)] for enum variants in the derive macro.
  • Added the Arbitrary::try_size_hint trait method.

Changed

  • Implement Arbitrary for PhantomData<A> even when A does not implement Arbitrary and when A is ?Sized.
  • Make usize's underlying encoding independent of machine word size so that corpora are more portable.

Fixed

  • Make derive(Arbitrary) work for local definitions of struct Option.

... (truncated)

Commits
  • dc22fde Merge pull request #230 from fitzgen/bump-to-1.4.2
  • 2032403 Bump to version 1.4.2
  • 688b494 Merge pull request #229 from nnethercote/with_recursive_count
  • 40fe82d Shrink derived code size with with_recursive_count.
  • 3fbc2d7 Merge pull request #228 from nnethercote/fieldless-enums-no-recursion
  • 88bb8e2 Avoid recursive count guard for fieldless enums.
  • 95cc16a Use size_hint for enum discriminants.
  • 698d491 Use TokenStream instead of impl quote::ToTokens.
  • 9029685 Merge pull request #227 from nnethercote/const-recursive_count
  • 27241c6 Mark RECURSIVE_COUNT_* as const.
  • Additional commits viewable in compare view

Updates serde from 1.0.210 to 1.0.229

Release notes

Sourced from serde's releases.

v1.0.229

  • Update to syn 3

v1.0.228

  • Allow building documentation with RUSTDOCFLAGS='--cfg=docsrs' set for the whole dependency graph (#2995)

v1.0.227

  • Documentation improvements (#2991)

v1.0.226

  • Deduplicate variant matching logic inside generated Deserialize impl for adjacently tagged enums (#2935, thanks @​Mingun)

v1.0.225

  • Avoid triggering a deprecation warning in derived Serialize and Deserialize impls for a data structure that contains its own deprecations (#2879, thanks @​rcrisanti)

v1.0.224

  • Remove private types being suggested in rustc diagnostics (#2979)

v1.0.223

  • Fix serde_core documentation links (#2978)

v1.0.222

  • Make serialize_with attribute produce code that works if respanned to 2024 edition (#2950, thanks @​aytey)

v1.0.221

  • Documentation improvements (#2973)
  • Deprecate serde_if_integer128! macro (#2975)

v1.0.220

v1.0.219

  • Prevent absolute_paths Clippy restriction being triggered inside macro-generated code (#2906, thanks @​davidzeng0)

v1.0.218

  • Documentation improvements

v1.0.217

  • Support serializing externally tagged unit variant inside flattened field (#2786, thanks @​Mingun)

v1.0.216

  • Mark all generated impls with #[automatically_derived] to exclude from code coverage (#2866, #2868, thanks @​tdittr)

v1.0.215

  • Produce warning when multiple fields or variants have the same deserialization name (#2855, #2856, #2857)

v1.0.214

  • Implement IntoDeserializer for all Deserializers in serde::de::value module (#2568, thanks @​Mingun)

v1.0.213

... (truncated)

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.128 to 1.0.151

Release notes

Sourced from serde_json's releases.

v1.0.151

v1.0.150

v1.0.149

  • Align arbitrary_precision number strings with zmij's formatting (#1306, thanks @​b41sh)

v1.0.148

  • Update zmij dependency to 1.0

v1.0.147

  • Switch float-to-string algorithm from Ryū to Żmij for better f32 and f64 serialization performance (#1304)

v1.0.146

v1.0.145

  • Raise serde version requirement to >=1.0.220

v1.0.144

  • Switch serde dependency to serde_core (#1285)

v1.0.143

v1.0.142

v1.0.141

v1.0.140

  • Documentation improvements

v1.0.139

  • Documentation improvements

v1.0.138

  • Documentation improvements

v1.0.137

  • Turn on "float_roundtrip" and "unbounded_depth" features for serde_json in play.rust-lang.org (#1231)

v1.0.136

  • Optimize serde_json::value::Serializer::serialize_map by using Map::with_capacity (#1230, thanks @​goffrie)

... (truncated)

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
  • a1ae73a Release 1.0.150
  • 1a360b0 Merge pull request #1324 from puneetdixit200/reject-non-string-enum-keys
  • 2037b63 Reject non-string enum object keys
  • 5d30df6 Resolve manual_assert_eq pedantic clippy lint
  • Additional commits viewable in compare view

Updates proptest from 1.5.0 to 1.11.0

Commits

Updates libfuzzer-sys from 0.4.7 to 0.4.13

Changelog

Sourced from libfuzzer-sys's changelog.

0.4.13

Released 2026-06-04.

Changed

  • Updated docs for the fuzz_mutator! macro to link to the mutatis crate, which is a helpful crate when writing complex custom mutators.

0.4.12

Released 2026-02-10.

Changed

  • Recommend SmallRng over StdRng in the examples for faster, more lightweight seeding and sampling
  • Updated rand dependency from 0.8.5 to 0.10
  • Updated flate2 dependency from 1.0.24 to 1.1
  • Rename gen variable to rng for better 2024 Edition compatibility

0.4.11

Released 2026-02-10.

Changed

  • Updated to libFuzzer commit a47b42eb9f9b (release/22.x).

0.4.10

Released 2025-07-03.

Changed

  • Updated to libFuzzer commit 6146a88f6049 (release/20.x).
  • Fuzz targets taking raw byte slice inputs can now return Corpus results.

0.4.9

Released 2025-01-28.

... (truncated)

Commits
  • 719e4ef Merge pull request #144 from fitzgen/bump-to-0.4.13
  • 2500b23 Bump to version 0.4.13
  • e9120b0 Merge pull request #143 from fitzgen/link-to-mutatis-from-fuzz-mutator
  • 0743afb Link to mutatis from the fuzz_mutator! docs
  • 752f2e2 Merge pull request #142 from fitzgen/bump-to-0.4.12
  • 735448b Bump to 0.4.12
  • be9241f Merge pull request #140 from rchildre3/update-deps-and-rand-algos
  • 4b013b6 Merge pull request #141 from fitzgen/bump-to-version-0.4.11
  • 312386d Bump to version 0.4.11
  • 31764e3 Merge pull request #139 from rchildre3/update-libfuzzer-22.x
  • Additional commits viewable in compare view

Updates expect-test from 1.5.0 to 1.5.1

Changelog

Sourced from expect-test's changelog.

1.5.1

  • Documentation improvements
Commits

Updates trybuild from 1.0.115 to 1.0.118

Release notes

Sourced from trybuild's releases.

1.0.118

  • Normalize cargo registry paths for any registry source (#331, thanks @​devjgm)
  • Limit custom registry to new normalization level (#334)

1.0.117

  • Better error message when TRYBUILD env var is wrong (#332, thanks @​tisonkun)

1.0.116

  • Update toml dependency to v1
Commits
  • 7ce4c26 Release 1.0.118
  • b359f4a Update to 2024 edition
  • 3551315 Merge pull request #334 from dtolnay/customregistry
  • 5209787 Limit custom registry to new normalization level
  • 528223c Merge pull request 331 from devjgm/greg/trybuild-custom-registry-normalization
  • 69689b3 Update actions/upload-artifact@v6 -> v7
  • 333eb00 Release 1.0.117
  • 820b8a5 Merge pull request #332 from tisonkun/patch-1
  • 7e9d0a6 Update actions/checkout@v6 -> v7
  • 8dd2668 Better error message when TRYBUILD env var is wrong
  • Additional commits viewable in compare view

Updates quote from 1.0.37 to 1.0.47

Release notes

Sourced from quote's releases.

1.0.47

  • Documentation improvements

1.0.46

1.0.45

  • Add ToTokens impl for Arc<T> (#326)

1.0.44

  • Support raw lifetime syntax 'r#async (#323)

1.0.43

  • Disambiguate references to stringify! macro inside generated code (#316)

1.0.42

1.0.41

  • Improve compile error when repetition contains no interpolated value that is an iterator (#302)

1.0.40

1.0.39

  • Documentation improvements

1.0.38

  • Support interpolating arrays inside of arrays using a repetition (#286)
Commits
  • 723dcb4 Release 1.0.47
  • 86e2967 Update documentation links to syn 3
  • b56db87 Update ui test suite to nightly-2026-07-14
  • cba5d96 Update actions/upload-artifact@v6 -> v7
  • bc4caf2 Release 1.0.46
  • dc0e304 Format with rustfmt
  • 712114c Drop arrow from syntax of quote_spanned_with_expanded_span
  • f93ab8a Eliminate quote_spanned_with_expanded_span_as_expr macro
  • 1ff3951 Eliminate __quote_spanned macro
  • 64e913a Unify quote_spanned definitions
  • Additional commits viewable in compare view

Updates proc-macro2 from 1.0.95 to 1.0.107

Release notes

Sourced from proc-macro2's releases.

1.0.107

  • Documentation improvements

1.0.106

  • Optimize Span::byte_range (#530)

1.0.105

  • Make std dependencies more easily discoverable in source code (#528)

1.0.104

1.0.103

  • Add semver-exempt Literal methods str_value, cstr_value, byte_str_value (#525)

1.0.102

  • Fix interaction of Display impls for TokenStream and Ident with formatting specifiers for padding, alignment, width (#523, #524)

1.0.101

  • Optimize Span location accessors (#519)

1.0.100

  • Stabilize Span methods on Rust 1.88+: start, end, line, column, file, local_file (#517, #518)

1.0.99

  • Prevent Span's unstable API becoming unavailable from a future new compiler lint (#515)

1.0.98

1.0.97

  • Allow build-script cleanup failure with NFSv3 output directory to be non-fatal (#505, #512, thanks @​davvid)

1.0.96

  • Simplify how rustdoc flags are decided during docs.rs builds (#511)
Commits
  • ed8a549 Release 1.0.107
  • d2550fb Update documentation links to syn 3
  • 0bf387d Resolve redundant_else pedantic clippy lint
  • 949d696 Update actions/upload-artifact@v6 -> v7
  • 294a2bb Update actions/checkout@v6 -> v7
  • cd46c1b Lint clippy::from_iter_instead_of_collect has been removed
  • bb38d83 Update afl fuzzer from 0.17 to 0.18
  • 0f510db Unpin CI miri toolchain
  • b3c5fe3 Pin CI miri to nightly-2026-02-11
  • 7e2a990 Raise required compiler to Rust 1.71
  • Additional commits viewable in compare view

Updates serde_with from 3.12.0 to 3.21.0

Release notes

Sourced from serde_with's releases.

serde_with v3.21.0

Security

  • GHSA-7gcf-g7xr-8hxj: KeyValueMap serialization panics on empty sequence or map entries Bad or attacker controlled values could cause a panic while allocating too large values. Fixed in #966 by setting a maximum allocation size during the creation of collections like Vec or sets.

    Thanks to @​7thParkk for reporting the issue.

Added

  • Add NoneAsZero adapter that maps Option<NonZero*> to a plain integer, encoding None as 0 by @​SAY-5 (#486)

Changed

  • Re-enable link-to-definition on docs.rs (#964)

Fixed

  • Fix some doc links to point to the correct types (#963)
  • Re-enable unused_qualifications and fix the resulting findings by @​lms0806 (#962)

serde_with v3.20.0

Added

  • Add support for base58 encoding, similar to the existing base64 setup by @​mitinarseny (#943)

Fixed

serde_with v3.19.0

Added

  • Add support for hashbrown v0.17 (#940)

    This extends the existing support for hashbrown to the newly released version.

serde_with v3.18.0

Added

  • Support OneOrMany with more sequence and set types (#929)

Changed

  • Bump MSRV to 1.88 due to the darling dependency

serde_with v3.17.0

Added

... (truncated)

Commits
  • 0f4ca67 Update changelog for 3.21.0 (#967)
  • 7654841 Update changelog for 3.21.0
  • c8a1d82 Protect all collection creations against capacity overflow by using `size_hin...
  • 6ad5fa5 Properly feature gate the vec_with_capacity_cautious function
  • ef7d141 Protect all collection creations against capacity overflow by using `size_hin...
  • a348da3 Add serde_as deserialize_as explain (#958)
  • 2e5bc20 Bump the github-actions group with 3 updates (#965)
  • 927a3d6 Bump the github-actions group with 3 updates
  • 62d14ec Enable link-to-definition on docs.rs again, after the upstream issue was reso...
  • 4584d94 Enable link-to-definition on docs.rs again, after the upstream issue was reso...
  • Additional commits viewable in compare view

Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting @dependabot rebase.


Dependabot commands and options

You can trigger Dependabot actions by commenting on this PR:

  • @dependabot rebase will rebase this PR
  • @dependabot recreate will recreate this PR, overwriting any edits that have been made to it
  • @dependabot show <dependency name> ignore conditions will show all of the ignore conditions of the specified dependency
  • @dependabot ignore <dependency name> major version will close this group update PR and stop Dependabot creating any more for the specific dependency's major version (unless you unignore this specific dependency's major version or upgrade to it yourself)
  • @dependabot ignore <dependency name> minor version will close this group update PR and stop Dependabot creating any more for the specific dependency's minor version (unless you unignore this specific dependency's minor version or upgrade to it yourself)
  • @dependabot ignore <dependency name> will close this group update PR and stop Dependabot creating any more for the specific dependency (unless you unignore this specific dependency or upgrade to it yourself)
  • @dependabot unignore <dependency name> will remove all of the ignore conditions of the specified dependency
  • @dependabot unignore <dependency name> <ignore condition> will remove the ignore condition of the specified dependency and ignore conditions

Bumps the minor-and-patch group with 10 updates in the / directory:

| Package | From | To |
| --- | --- | --- |
| [derive_arbitrary](https://github.com/rust-fuzz/arbitrary) | `1.3.2` | `1.4.2` |
| [serde](https://github.com/serde-rs/serde) | `1.0.210` | `1.0.229` |
| [serde_json](https://github.com/serde-rs/json) | `1.0.128` | `1.0.151` |
| [proptest](https://github.com/proptest-rs/proptest) | `1.5.0` | `1.11.0` |
| [libfuzzer-sys](https://github.com/rust-fuzz/libfuzzer) | `0.4.7` | `0.4.13` |
| [expect-test](https://github.com/rust-analyzer/expect-test) | `1.5.0` | `1.5.1` |
| [trybuild](https://github.com/dtolnay/trybuild) | `1.0.115` | `1.0.118` |
| [quote](https://github.com/dtolnay/quote) | `1.0.37` | `1.0.47` |
| [proc-macro2](https://github.com/dtolnay/proc-macro2) | `1.0.95` | `1.0.107` |
| [serde_with](https://github.com/jonasbb/serde_with) | `3.12.0` | `3.21.0` |



Updates `derive_arbitrary` from 1.3.2 to 1.4.2
- [Changelog](https://github.com/rust-fuzz/arbitrary/blob/main/CHANGELOG.md)
- [Commits](rust-fuzz/arbitrary@v1.3.2...v1.4.2)

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

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

Updates `proptest` from 1.5.0 to 1.11.0
- [Release notes](https://github.com/proptest-rs/proptest/releases)
- [Changelog](https://github.com/proptest-rs/proptest/blob/main/CHANGELOG.md)
- [Commits](proptest-rs/proptest@v1.5.0...v1.11.0)

Updates `libfuzzer-sys` from 0.4.7 to 0.4.13
- [Changelog](https://github.com/rust-fuzz/libfuzzer/blob/main/CHANGELOG.md)
- [Commits](rust-fuzz/libfuzzer@0.4.7...0.4.13)

Updates `expect-test` from 1.5.0 to 1.5.1
- [Changelog](https://github.com/rust-analyzer/expect-test/blob/master/CHANGELOG.md)
- [Commits](rust-analyzer/expect-test@v1.5.0...v1.5.1)

Updates `trybuild` from 1.0.115 to 1.0.118
- [Release notes](https://github.com/dtolnay/trybuild/releases)
- [Commits](dtolnay/trybuild@1.0.115...1.0.118)

Updates `quote` from 1.0.37 to 1.0.47
- [Release notes](https://github.com/dtolnay/quote/releases)
- [Commits](dtolnay/quote@1.0.37...1.0.47)

Updates `proc-macro2` from 1.0.95 to 1.0.107
- [Release notes](https://github.com/dtolnay/proc-macro2/releases)
- [Commits](dtolnay/proc-macro2@1.0.95...1.0.107)

Updates `serde_with` from 3.12.0 to 3.21.0
- [Release notes](https://github.com/jonasbb/serde_with/releases)
- [Commits](jonasbb/serde_with@v3.12.0...v3.21.0)

---
updated-dependencies:
- dependency-name: derive_arbitrary
  dependency-version: 1.4.2
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: minor-and-patch
- dependency-name: serde
  dependency-version: 1.0.229
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: minor-and-patch
- dependency-name: serde_json
  dependency-version: 1.0.151
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: minor-and-patch
- dependency-name: proptest
  dependency-version: 1.11.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: minor-and-patch
- dependency-name: libfuzzer-sys
  dependency-version: 0.4.13
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: minor-and-patch
- dependency-name: expect-test
  dependency-version: 1.5.1
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: minor-and-patch
- dependency-name: trybuild
  dependency-version: 1.0.118
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: minor-and-patch
- dependency-name: quote
  dependency-version: 1.0.47
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: minor-and-patch
- dependency-name: proc-macro2
  dependency-version: 1.0.107
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: minor-and-patch
- dependency-name: serde_with
  dependency-version: 3.21.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: minor-and-patch
...

Signed-off-by: dependabot[bot] <support@github.com>
@dependabot dependabot Bot added dependencies Pull requests that update a dependency file rust Pull requests that update rust code labels Jul 26, 2026
Copilot AI review requested due to automatic review settings July 26, 2026 02:09
@dependabot dependabot Bot added dependencies Pull requests that update a dependency file rust Pull requests that update rust code labels Jul 26, 2026
@socket-security

Copy link
Copy Markdown

Copilot AI left a comment

Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Pull request overview

Note

Copilot could not run the full agentic suite for this review because it was automatically requested on a bot-authored pull request. Request a review from Copilot under Reviewers to retry with the full agentic suite. Improved support for bot-authored pull requests is coming soon.

Updates the derive_arbitrary dependency version in soroban-sdk to a newer release.

Changes:

  • Bumped derive_arbitrary from ~1.3.0 to ~1.4.2 in dependencies.
  • Bumped derive_arbitrary from ~1.3.0 to ~1.4.2 in the second dependency section (likely dev-dependencies).

Comment thread soroban-sdk/Cargo.toml
Comment on lines 35 to +36
arbitrary = { version = "~1.3.0", features = ["derive"], optional = true }
derive_arbitrary = { version = "~1.3.0", optional = true }
derive_arbitrary = { version = "~1.4.2", optional = true }
Comment thread soroban-sdk/Cargo.toml
Comment on lines 55 to +56
arbitrary = { version = "~1.3.0", features = ["derive"] }
derive_arbitrary = { version = "~1.3.0" }
derive_arbitrary = { version = "~1.4.2" }
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