Skip to content

Conversation

@dependabot
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Oct 23, 2025

Bumps the serialization group with 2 updates in the / directory: serde_json and serde_with.

Updates serde_json from 1.0.138 to 1.0.145

Release notes

Sourced from serde_json's releases.

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
Commits
  • efa66e3 Release 1.0.145
  • 23679e2 Add serde version constraint
  • fc27baf Release 1.0.144
  • caef3c6 Ignore uninlined_format_args pedantic clippy lint
  • 81ba3aa Merge pull request #1285 from dtolnay/serdecore
  • d21e8ce Switch serde dependency to serde_core
  • 6beb6cd Merge pull request #1286 from dtolnay/up
  • 1dbc803 Raise required compiler to Rust 1.61
  • 0bf5d87 Enforce trybuild >= 1.0.108
  • d12e943 Update actions/checkout@v4 -> v5
  • Additional commits viewable in compare view

Updates serde_with from 2.3.3 to 3.15.1

Release notes

Sourced from serde_with's releases.

serde_with v3.15.1

Fixed

  • Fix building of the documentation by updating references to use serde_core.

serde_with v3.15.0

Added

  • Added error inspection to VecSkipError and MapSkipError by @​michelhe (#878) This allows interacting with the previously hidden error, for example for logging. Checkout the newly added example to both types.

  • Allow documenting the types generated by serde_conv!. The serde_conv! macro now acceps outer attributes before the optional visibility modifier. This allow adding doc comments in the shape of #[doc = "..."] or any other attributes, such as lint modifiers.

    serde_conv!(
        #[doc = "Serialize bools as string"]
        #[allow(dead_code)]
        pub BoolAsString,
        bool,
        |x: &bool| ::std::string::ToString::to_string(x),
        |x: ::std::string::String| x.parse()
    );
  • Add support for hashbrown v0.16 (#877)

    This extends the existing support for hashbrown v0.14 and v0.15 to the newly released version.

Changed

  • Bump MSRV to 1.76, since that is required for toml dev-dependency.

serde_with v3.14.1

Fixed

  • Show macro expansion in the docs.rs generated rustdoc. Since macros are used to generate trait implementations, this is useful to understand the exact generated code.

serde_with v3.14.0

Added

  • Add support for Range, RangeFrom, RangeTo, RangeInclusive (#851) RangeToInclusive is currently unsupported by serde.
  • Add schemars implementations for Bound, Range, RangeFrom, RangeTo, RangeInclusive.
  • Added support for schemars v1 under the schemars_1 feature flag

serde_with v3.13.0

... (truncated)

Commits
  • d5ccc10 Bump version to v3.15.1 (#898)
  • 341fbc1 Bump version to v3.15.1
  • 18ca8f2 Update the documentation to refer to serde_core instead of serde (#897)
  • f5deae3 Update the documentation to refer to serde_core instead of serde
  • e8ad178 Bump github/codeql-action from 3 to 4 in the github-actions group (#893)
  • dcfb20f Bump regex from 1.11.2 to 1.12.1 (#894)
  • cb2fddd Bump regex from 1.11.2 to 1.12.1
  • 6a8cb9e Bump github/codeql-action from 3 to 4 in the github-actions group
  • ea38dce Bump version to 3.15.0 (#892)
  • a3da8e6 Bump version to 3.15.0
  • 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 merge will merge this PR after your CI passes on it
  • @dependabot squash and merge will squash and merge this PR after your CI passes on it
  • @dependabot cancel merge will cancel a previously requested merge and block automerging
  • @dependabot reopen will reopen this PR if it is closed
  • @dependabot close will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually
  • @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

@dependabot dependabot bot added dependencies Pull requests that update a dependency file rust Pull requests that update rust code labels Oct 23, 2025
@dependabot dependabot bot requested a review from yugure-orca as a code owner October 23, 2025 06:19
@dependabot dependabot bot added the dependencies Pull requests that update a dependency file label Oct 23, 2025
@dependabot dependabot bot added the rust Pull requests that update rust code label Oct 23, 2025
@dependabot dependabot bot requested a review from calintje as a code owner October 23, 2025 06:19
@github-actions github-actions bot enabled auto-merge (squash) October 23, 2025 06:20
@dependabot dependabot bot force-pushed the dependabot/cargo/serialization-ddb6c620e3 branch from 1bfbf53 to e639a67 Compare October 24, 2025 11:12
@dependabot dependabot bot force-pushed the dependabot/cargo/serialization-ddb6c620e3 branch from e639a67 to f9caf99 Compare November 4, 2025 11:13
@dependabot dependabot bot force-pushed the dependabot/cargo/serialization-ddb6c620e3 branch from f9caf99 to 4de0c58 Compare November 14, 2025 11:13
Bumps the serialization group with 2 updates in the / directory: [serde_json](https://github.com/serde-rs/json) and [serde_with](https://github.com/jonasbb/serde_with).


Updates `serde_json` from 1.0.138 to 1.0.145
- [Release notes](https://github.com/serde-rs/json/releases)
- [Commits](serde-rs/json@v1.0.138...v1.0.145)

Updates `serde_with` from 2.3.3 to 3.15.1
- [Release notes](https://github.com/jonasbb/serde_with/releases)
- [Commits](jonasbb/serde_with@v2.3.3...v3.15.1)

---
updated-dependencies:
- dependency-name: serde_json
  dependency-version: 1.0.145
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: serialization
- dependency-name: serde_with
  dependency-version: 3.15.1
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: serialization
...

Signed-off-by: dependabot[bot] <[email protected]>
@dependabot dependabot bot force-pushed the dependabot/cargo/serialization-ddb6c620e3 branch from 4de0c58 to 5e0d999 Compare November 17, 2025 11:19
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