Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore(deps): update serde crates #82

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open

Conversation

renovate[bot]
Copy link
Contributor

@renovate renovate bot commented Jul 21, 2023

Mend Renovate

This PR contains the following updates:

Package Type Update Change
serde (source) workspace.dependencies patch 1.0.193 -> 1.0.203
serde_json workspace.dependencies patch 1.0.108 -> 1.0.120
serde_qs workspace.dependencies minor 0.12.0 -> 0.13.0
serde_with workspace.dependencies minor 3.1.0 -> 3.8.3

Release Notes

serde-rs/serde (serde)

v1.0.203

Compare Source

v1.0.202

Compare Source

  • Provide public access to RenameAllRules in serde_derive_internals (#​2743)

v1.0.201

Compare Source

  • Resolve unexpected_cfgs warning (#​2737)

v1.0.200

Compare Source

  • Fix formatting of "invalid type" and "invalid value" deserialization error messages containing NaN or infinite floats (#​2733, thanks @​jamessan)

v1.0.199

Compare Source

  • Fix ambiguous associated item when forward_to_deserialize_any! is used on an enum with Error variant (#​2732, thanks @​aatifsyed)

v1.0.198

Compare Source

v1.0.197

Compare Source

  • Fix unused_imports warnings when compiled by rustc 1.78
  • Optimize code size of some Display impls (#​2697, thanks @​nyurik)

v1.0.196

Compare Source

  • Improve formatting of "invalid type" error messages involving floats (#​2682)

v1.0.195

Compare Source

  • Prevent remote definitions of tuple struct or tuple variant from triggering dead_code warning (#​2671)

v1.0.194

Compare Source

  • Update proc-macro2 to fix caching issue when using a rustc-wrapper such as sccache
serde-rs/json (serde_json)

v1.0.120

Compare Source

v1.0.119

Compare Source

v1.0.118

Compare Source

v1.0.117

Compare Source

  • Resolve unexpected_cfgs warning (#​1130)

v1.0.116

Compare Source

v1.0.115

Compare Source

  • Documentation improvements

v1.0.114

Compare Source

  • Fix unused_imports warnings when compiled by rustc 1.78

v1.0.113

Compare Source

  • Add swap_remove and shift_remove methods on Map (#​1109)

v1.0.112

Compare Source

  • Improve formatting of "invalid type" error messages involving floats (#​1107)

v1.0.111

Compare Source

v1.0.110

Compare Source

  • Update proc-macro2 to fix caching issue when using a rustc-wrapper such as sccache

v1.0.109

Compare Source

  • Documentation improvements
samscott89/serde_qs (serde_qs)

v0.13.0

  • Bump axum support to 0.7
  • Remove support for actix-web 2.0
  • Add support for extracting form data in actix via QsForm
jonasbb/serde_with (serde_with)

v3.8.3: serde_with v3.8.3

Compare Source

Fixed
  • Fix compile issues when dependency schemars_0_8 is used with the preserve_order features (#​762)

v3.8.2: serde_with v3.8.2

Compare Source

Changed
  • Bump MSRV to 1.67, since that is required for the time dependency.
    The time version needed to be updated for nightly compatibility.
Fixed

v3.8.1: serde_with v3.8.1

Compare Source

Fixed
  • Do not emit schemars(deserialize_with = "...") annotations, as schemars does not support them (#​735)
    Thanks to @​sivizius for reporting the issue.

v3.8.0: serde_with v3.8.0

Compare Source

Added
Changed
  • Bump base64 dependency to v0.22 (#​724)
  • Update dev dependencies
Fixed
  • serde_conv regressed and triggered clippy::ptr_arg and add test to prevent future problems. (#​731)

v3.7.0: serde_with v3.7.0

Compare Source

Added
Fixed
  • Detect conflicting schema_with attributes on fields with schemars annotations by @​swlynch99 (#​715)
    This extends the existing avoidance mechanism to a new variant fixing #​712.

v3.6.1: serde_with v3.6.1

Compare Source

Changed
  • Eliminate dependency on serde's "derive" feature by @​dtolnay (#​694)
    This allows parallel compilation of serde and serde_derive which can speed up the wallclock time.
    It requires that downstream crates do not use the "derive" feature either.

v3.6.0: serde_with v3.6.0

Compare Source

Added
  • Add IfIsHumanReadable for conditional implementation by @​irriden (#​690)
    Used to specify different transformations for text-based and binary formats.
  • Add more JsonSchemaAs impls for all Duration* and Timestamp* adaptors by @​swlynch99 (#​685)
Changed
  • Bump MSRV to 1.65, since that is required for the regex dependency.

v3.5.1: serde_with v3.5.1

Compare Source

Fixed
  • The serde_as macro now better detects existing schemars attributes on fields and incorporates them by @​swlynch99 (#​682)
    This avoids errors on existing #[schemars(with = ...)] annotations.

v3.5.0: serde_with v3.5.0

Compare Source

Added
  • Support for schemars integration added by @​swlynch99 (#​666)
    The support uses a new Schema top-level item which implements JsonSchema
    The serde_as macro can now detect schemars usage and emits matching annotations for all fields with serde_as attribute.
    Many types of this crate come already with support for the schemars, but support is not complete and will be extended over time.

v3.4.0: serde_with v3.4.0

Compare Source

  • Lower minimum required serde version to 1.0.152 (#​653)
    Thanks to @​banool for submitting the PR.

    This allows people that have a problem with 1.0.153 to still use serde_with.

  • Add support for core::ops::Bound (#​655)
    Thanks to @​qsantos for submitting the PR.

v3.3.0: serde_with v3.3.0

Compare Source

Added
  • Support the hashbrown type HashMap and HashSet (#​636, #​637)
    Thanks to @​OliverNChalk for raising the issue and submitting a PR.

    This extends the existing support for HashMaps and HashSets to the hashbrown crate v0.14.
    The same conversions as for the std and indexmap types are available, like general support for #[serde_as] and converting it to/from sequences or maps.

Changed
  • Generalize some trait bounds for DeserializeAs implementations

    While working on #​637 it came to light that some of the macros for generating DeserializeAs implementations were not as generic as they could.
    This means they didn't work with custom hasher types, but only the default hashers.
    This has now been fixed and custom hashers should work better, as long as they implement BuildHasher + Default.

  • (internal) Change how features are documented (#​639)

    This change moves the feature documentation into Cargo.toml in a format that can be read by lib.rs.
    It will improve the generated features documentation there.
    The page with all features remains in the guide but is now generated from the Cargo.toml information.

v3.2.0: serde_with v3.2.0

Compare Source

Added
  • Add optional support for indexmap v2 (#​621)
    Support for v1 is already available using the indexmap_1 feature.
    This adds identical support for v2 of indexmap using the indexmap_2 feature.
Changed
  • Bump MSRV to 1.64, since that is required for the indexmap v2 dependency.
Fixed
  • Prevent panics when deserializing i64::MIN using TimestampSeconds<i64> (#​632, #​633)
    Thanks to @​hollmmax for reporting and fixing the issue.

Configuration

📅 Schedule: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined).

🚦 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.


  • If you want to rebase/retry this PR, check this box

This PR has been generated by Mend Renovate. View repository job log here.

@renovate renovate bot force-pushed the renovate/serde-crates branch 2 times, most recently from fb3f0a9 to 0a3a775 Compare July 22, 2023 02:41
@renovate renovate bot changed the title chore(deps): update rust crate serde to 1.0.174 chore(deps): update rust crate serde to 1.0.175 Jul 24, 2023
@renovate renovate bot changed the title chore(deps): update rust crate serde to 1.0.175 chore(deps): update serde crates Jul 26, 2023
@renovate renovate bot force-pushed the renovate/serde-crates branch 5 times, most recently from b3b166a to fc7f4b8 Compare July 31, 2023 23:29
@renovate renovate bot force-pushed the renovate/serde-crates branch 4 times, most recently from b0acb79 to cc40744 Compare August 7, 2023 07:42
@renovate renovate bot force-pushed the renovate/serde-crates branch 4 times, most recently from 1c57f18 to a845956 Compare August 21, 2023 06:07
@renovate renovate bot force-pushed the renovate/serde-crates branch 3 times, most recently from 4d072c7 to 72c3626 Compare August 26, 2023 05:43
@renovate renovate bot force-pushed the renovate/serde-crates branch 7 times, most recently from 996b92f to 7c94c25 Compare September 14, 2023 00:30
@renovate renovate bot changed the title chore(deps): update rust crate serde_with to 3.4.0 chore(deps): update serde crates Jan 1, 2024
@renovate renovate bot force-pushed the renovate/serde-crates branch 3 times, most recently from 73ae21e to 0706e89 Compare January 6, 2024 04:08
@renovate renovate bot force-pushed the renovate/serde-crates branch 2 times, most recently from 0386e1a to c1c53f2 Compare January 21, 2024 00:53
@renovate renovate bot force-pushed the renovate/serde-crates branch 3 times, most recently from 8a62c6f to 800a9db Compare January 29, 2024 11:09
@renovate renovate bot force-pushed the renovate/serde-crates branch 2 times, most recently from e119a11 to 86be0e9 Compare April 16, 2024 22:05
@renovate renovate bot force-pushed the renovate/serde-crates branch 4 times, most recently from 6779156 to 411c1fd Compare May 1, 2024 18:53
@renovate renovate bot force-pushed the renovate/serde-crates branch from 411c1fd to 3da633c Compare May 8, 2024 00:42
@renovate renovate bot force-pushed the renovate/serde-crates branch 4 times, most recently from 3e4c3fa to e86a6a1 Compare July 1, 2024 20:41
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

Successfully merging this pull request may close these issues.

None yet

0 participants