humble-cli
humble-cli copied to clipboard
Bump serde_with from 2.3.3 to 3.9.0
Bumps serde_with from 2.3.3 to 3.9.0.
Release notes
Sourced from serde_with's releases.
serde_with v3.9.0
Added
Deserialize a map` and skip all elements failing to deserialize by
@​johnmave126(#763)
MapSkipErroracts like a map (HashMap/BTreeMap), but keys or values that fail to deserialize, like are ignored.For formats with heterogeneously typed maps, we can collect only the elements where both key and value are deserializable. This is also useful in conjunction to
#[serde(flatten)]to ignore some entries when capturing additional fields.// JSON "value": {"0": "v0", "5": "v5", "str": "str", "10": 2},// Rust #[serde_as(as = "MapSkipError<DisplayFromStr, _>")] value: BTreeMap<u32, String>,
// Only deserializes entries with a numerical key and a string value, i.e., {0 => "v0", 5 => "v5"}
serde_with v3.8.3
Fixed
- Fix compile issues when dependency
schemars_0_8is used with thepreserve_orderfeatures (#762)serde_with v3.8.2
Changed
- Bump MSRV to 1.67, since that is required for the
timedependency. Thetimeversion needed to be updated for nightly compatibility.Fixed
- Implement
JsonSchemaAsforOneOrManyinstead ofJsonSchemaby@​swlynch99(#760)serde_with v3.8.1
Fixed
- Do not emit
schemars(deserialize_with = "...")annotations, asschemarsdoes not support them (#735) Thanks to@​siviziusfor reporting the issue.serde_with v3.8.0
Added
- Implement (De)Serialization for Pinned Smart Pointers by
@​Astralchroma(#733)- Implement
JsonSchemaAsforPickFirstby@​swlynch99(#721)Changed
... (truncated)
Commits
c3e489fBump version to 3.9.0 (#770)57ad877Bump version to 3.9.0d038657ImplementMapSkipError, analogous toVecSkipError, but for map-like data ...aaa0a29Update serde_with/src/guide/serde_as_transformations.md17dec11Add tests to make sure syntax errors are not suppressed.97543d0Implement MapSkipError, skipping un-deserializable entries.bf6724dMove VecSkipError to a separate file, preparing for MapSkipError31e9172Fix dead code warning by correcting a typo (#769)f5b2626Fix dead code warnings in tests4ad4a1bFix dead code warning by correcting a typo- 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 rebasewill rebase this PR@dependabot recreatewill recreate this PR, overwriting any edits that have been made to it@dependabot mergewill merge this PR after your CI passes on it@dependabot squash and mergewill squash and merge this PR after your CI passes on it@dependabot cancel mergewill cancel a previously requested merge and block automerging@dependabot reopenwill reopen this PR if it is closed@dependabot closewill close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually@dependabot show <dependency name> ignore conditionswill show all of the ignore conditions of the specified dependency@dependabot ignore this major versionwill close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)@dependabot ignore this minor versionwill close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)@dependabot ignore this dependencywill close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)