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

fix(deps): update serde #881

Merged
merged 1 commit into from
Jun 30, 2023
Merged

fix(deps): update serde #881

merged 1 commit into from
Jun 30, 2023

Conversation

renovate[bot]
Copy link
Contributor

@renovate renovate bot commented Dec 12, 2022

Mend Renovate

This PR contains the following updates:

Package Type Update Change
serde (source) dependencies patch 1.0.149 -> 1.0.164
serde_json dependencies patch 1.0.89 -> 1.0.99

Release Notes

serde-rs/serde

v1.0.164

Compare Source

v1.0.163

Compare Source

  • Eliminate build script from serde_derive crate to slightly reduce build time (#​2442, thanks @​taiki-e)

v1.0.162

Compare Source

  • Support deserializing flattened adjacently tagged enums from data formats which represent fields as bytes, such as the csv crate (#​2377, thanks @​mfro)

    #[derive(Deserialize)]
    pub struct Record {
        common: u64,
        #[serde(flatten)]
        kind: Kind,
    }
    
    #[derive(Deserialize)]
    #[serde(tag = "kind", content = "parameter", rename_all = "lowercase")]
    enum Kind {
        Foo(u64),
        Bar(bool),
    }
    common,kind,parameter
    1,foo,42
    2,bar,true
    

v1.0.161

Compare Source

  • Improve error messages produced by serde_test on test failure (#​2435, thanks @​Mingun)

v1.0.160

Compare Source

v1.0.159

Compare Source

  • Accept empty #[serde()] attribute (#​2422)

v1.0.158

Compare Source

  • Fix "expected serde crate attribute to be a string" error when using macro_rules metavariable inside of serde attribute: #[serde(crate = $serde_path)] (#​2409)

v1.0.157

Compare Source

  • Update syn dependency to 2.x

v1.0.156

Compare Source

  • Documentation improvements

v1.0.155

Compare Source

  • Support Serialize and Deserialize impls for core::ffi::CStr and alloc::ffi::CString without "std" feature (#​2374, thanks @​safarir)

v1.0.154

Compare Source

  • Fix "undeclared lifetime" error in generated code when deriving Deserialize for an enum with both flatten and 'static fields (#​2383, thanks @​Mingun)

v1.0.153

Compare Source

  • Support serde(alias = "…") attribute used inside of flattened struct (#​2387, thanks @​bebecue)

v1.0.152

Compare Source

  • Documentation improvements

v1.0.151

Compare Source

  • Update serde::{ser,de}::StdError to re-export core::error::Error when serde is built with feature="std" off and feature="unstable" on (#​2344)

v1.0.150

Compare Source

  • Relax some trait bounds from the Serialize impl of HashMap and BTreeMap (#​2334)
  • Enable Serialize and Deserialize impls of std::sync::atomic types on more platforms (#​2337, thanks @​badboy)
serde-rs/json

v1.0.99

Compare Source

v1.0.98

Compare Source

  • Update indexmap dependency used by "preserve_order" feature to version 2

v1.0.97

Compare Source

  • Add io_error_kind() method to serde_json::Error: fn io_error_kind(&self) -> Option<std::io::ErrorKind> (#​1026)

v1.0.96

Compare Source

v1.0.95

Compare Source

  • Preserve f32 precision when serializing f32 -> serde_json::Value -> JSON string in "arbitrary_precision" mode (#​1004, #​1005)

v1.0.94

Compare Source

  • Fix message duplication between serde_json::Error's Display and source() (#​991, #​992)

v1.0.93

Compare Source

  • Support 128-bit integers in serde_json::to_value (#​982)

v1.0.92

Compare Source

  • Documentation improvements

v1.0.91

Compare Source

  • Opt out of -Zrustdoc-scrape-examples on docs.rs for now

v1.0.90

Compare Source

  • Documentation improvements

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 added the PR: Dependency Update A dependency was updated label Dec 12, 2022
@changeset-bot
Copy link

changeset-bot bot commented Dec 12, 2022

⚠️ No Changeset found

Latest commit: 437eef5

Merging this PR will not cause a version bump for any packages. If these changes should not result in a new version, you're good to go. If these changes should result in a version bump, you need to add a changeset.

This PR includes no changesets

When changesets are added to this PR, you'll see the packages that this PR includes changesets for and the associated semver types

Click here to learn what changesets are, and how to add one.

Click here if you're a maintainer who wants to add a changeset to this PR

@github-actions
Copy link
Contributor

Linux Benchmarks for 5fc70c1

benchmark current value last value diff trend
fnm_basic/median 24.28ms 20.35ms +3.93ms

fnm_basic/max 38.09ms 30.63ms +7.45ms

fnm_basic/mean 24.78ms 20.45ms +4.32ms

fnm_basic/min 22.78ms 19.87ms +2.91ms

fnm_basic/stddev 2.05ms 0.95ms +1.11ms

binary size 6784kb 6788kb -4kb

@renovate renovate bot changed the title fix(deps): update rust crate serde to 1.0.150 fix(deps): update rust crate serde to 1.0.151 Dec 16, 2022
@github-actions
Copy link
Contributor

Linux Benchmarks for a218c56

benchmark current value last value diff trend
fnm_basic/median 22.58ms 20.22ms +2.35ms

fnm_basic/max 27.55ms 22.6ms +4.96ms

fnm_basic/mean 22.89ms 20.29ms +2.6ms

fnm_basic/min 21ms 19.56ms +1.45ms

fnm_basic/stddev 1.31ms 0.45ms +0.85ms

binary size 6772kb 6772kb 0

@renovate renovate bot changed the title fix(deps): update rust crate serde to 1.0.151 Update Rust crate serde to 1.0.151 Dec 17, 2022
@renovate renovate bot changed the title Update Rust crate serde to 1.0.151 fix(deps): update rust crate serde to 1.0.151 Dec 17, 2022
@renovate renovate bot changed the title fix(deps): update rust crate serde to 1.0.151 fix(deps): update serde Dec 17, 2022
@github-actions
Copy link
Contributor

Linux Benchmarks for 39999c5

benchmark current value last value diff trend
fnm_basic/median 20.57ms 20.22ms +0.34ms

fnm_basic/max 21.52ms 22.6ms -1.08ms

fnm_basic/mean 20.61ms 20.29ms +0.32ms

fnm_basic/min 19.94ms 19.56ms +0.39ms

fnm_basic/stddev 0.33ms 0.45ms -0.12ms

binary size 6772kb 6772kb 0

@github-actions
Copy link
Contributor

Linux Benchmarks for b8be62a

benchmark current value last value diff trend
fnm_basic/median 25.93ms 20.4ms +5.53ms

fnm_basic/max 30.09ms 32.91ms -2.81ms

fnm_basic/mean 26.13ms 21.12ms +5.02ms

fnm_basic/min 23.65ms 19.91ms +3.74ms

fnm_basic/stddev 1.27ms 1.9ms -0.63ms

binary size 6772kb 6772kb 0

@vercel
Copy link

vercel bot commented Dec 26, 2022

The latest updates on your projects. Learn more about Vercel for Git ↗︎

Name Status Preview Updated
fnm 🔄 Building (Inspect) Dec 26, 2022 at 8:27PM (UTC)

@github-actions
Copy link
Contributor

Linux Benchmarks for 39e768e

benchmark current value last value diff trend
fnm_basic/median 19.39ms 20.36ms -0.97ms

fnm_basic/max 20.02ms 28.57ms -8.55ms

fnm_basic/mean 19.43ms 20.94ms -1.51ms

fnm_basic/min 19.06ms 19.94ms -0.88ms

fnm_basic/stddev 0.21ms 1.61ms -1.4ms

binary size 6772kb 6772kb 0

@github-actions
Copy link
Contributor

github-actions bot commented Feb 5, 2023

Linux Benchmarks for cb1088a

benchmark current value last value diff trend
fnm_basic/median 20.75ms 20.81ms -0.07ms

fnm_basic/max 24.85ms 22.75ms +2.1ms

fnm_basic/mean 20.99ms 20.96ms +0.02ms

fnm_basic/min 19.98ms 20.29ms -0.31ms

fnm_basic/stddev 0.76ms 0.53ms +0.23ms

binary size 6864kb 6772kb +92kb

@github-actions
Copy link
Contributor

github-actions bot commented Feb 8, 2023

Linux Benchmarks for b563d57

benchmark current value last value diff trend
fnm_basic/median 27.28ms 20.81ms +6.46ms

fnm_basic/max 37.26ms 22.75ms +14.51ms

fnm_basic/mean 27.94ms 20.96ms +6.97ms

fnm_basic/min 24.84ms 20.29ms +4.56ms

fnm_basic/stddev 2.26ms 0.53ms +1.73ms

binary size 6864kb 6772kb +92kb

@github-actions
Copy link
Contributor

github-actions bot commented Mar 5, 2023

Linux Benchmarks for dfc3704

benchmark current value last value diff trend
fnm_basic/median 20.46ms 20.81ms -0.36ms

fnm_basic/max 34.01ms 22.75ms +11.26ms

fnm_basic/mean 20.8ms 20.96ms -0.16ms

fnm_basic/min 19.33ms 20.29ms -0.96ms

fnm_basic/stddev 1.61ms 0.53ms +1.08ms

binary size 6864kb 6772kb +92kb

@github-actions
Copy link
Contributor

Linux Benchmarks for 0c0b528

benchmark current value last value diff trend
fnm_basic/median 25.13ms 20.81ms +4.31ms

fnm_basic/max 32.86ms 22.75ms +10.12ms

fnm_basic/mean 25.43ms 20.96ms +4.46ms

fnm_basic/min 22.71ms 20.29ms +2.43ms

fnm_basic/stddev 1.93ms 0.53ms +1.4ms

binary size 6860kb 6772kb +88kb

@github-actions
Copy link
Contributor

Linux Benchmarks for 128886b

benchmark current value last value diff trend
fnm_basic/median 20.21ms 20.81ms -0.6ms

fnm_basic/max 22.96ms 22.75ms +0.21ms

fnm_basic/mean 20.33ms 20.96ms -0.64ms

fnm_basic/min 19.25ms 20.29ms -1.04ms

fnm_basic/stddev 0.7ms 0.53ms +0.17ms

binary size 6864kb 6772kb +92kb

@github-actions
Copy link
Contributor

Linux Benchmarks for fea6b38

benchmark current value last value diff trend
fnm_basic/median 20.11ms 20.81ms -0.7ms

fnm_basic/max 21.63ms 22.75ms -1.11ms

fnm_basic/mean 20.22ms 20.96ms -0.75ms

fnm_basic/min 19.78ms 20.29ms -0.51ms

fnm_basic/stddev 0.34ms 0.53ms -0.19ms

binary size 6860kb 6772kb +88kb

@github-actions
Copy link
Contributor

Linux Benchmarks for f4983df

benchmark current value last value diff trend
fnm_basic/median 22.05ms 20.81ms +1.24ms

fnm_basic/max 23.55ms 22.75ms +0.8ms

fnm_basic/mean 22.11ms 20.96ms +1.15ms

fnm_basic/min 21.26ms 20.29ms +0.97ms

fnm_basic/stddev 0.41ms 0.53ms -0.12ms

binary size 6856kb 6772kb +84kb

@github-actions
Copy link
Contributor

Linux Benchmarks for a92c45a

benchmark current value last value diff trend
fnm_basic/median 20.23ms 20.81ms -0.59ms

fnm_basic/max 24.48ms 22.75ms +1.73ms

fnm_basic/mean 20.27ms 20.96ms -0.69ms

fnm_basic/min 19.85ms 20.29ms -0.44ms

fnm_basic/stddev 0.4ms 0.53ms -0.13ms

binary size 6816kb 6772kb +44kb

@github-actions
Copy link
Contributor

github-actions bot commented Jun 8, 2023

Linux Benchmarks for 5ad8c54

benchmark current value last value diff trend
fnm_basic/median 23.51ms 20.81ms +2.7ms

fnm_basic/max 26.3ms 22.75ms +3.55ms

fnm_basic/mean 23.54ms 20.96ms +2.57ms

fnm_basic/min 21.67ms 20.29ms +1.38ms

fnm_basic/stddev 0.86ms 0.53ms +0.33ms

binary size 6796kb 6772kb +24kb

@github-actions
Copy link
Contributor

Linux Benchmarks for 67dd3cc

benchmark current value last value diff trend
fnm_basic/median 20.88ms 20.81ms +0.07ms

fnm_basic/max 22.65ms 22.75ms -0.09ms

fnm_basic/mean 20.91ms 20.96ms -0.05ms

fnm_basic/min 20.02ms 20.29ms -0.27ms

fnm_basic/stddev 0.49ms 0.53ms -0.04ms

binary size 6796kb 6772kb +24kb

@github-actions
Copy link
Contributor

Linux Benchmarks for af65173

benchmark current value last value diff trend
fnm_basic/median 21.79ms 20.81ms +0.97ms

fnm_basic/max 23.96ms 22.75ms +1.22ms

fnm_basic/mean 21.85ms 20.96ms +0.88ms

fnm_basic/min 20.91ms 20.29ms +0.63ms

fnm_basic/stddev 0.57ms 0.53ms +0.04ms

binary size 6784kb 6772kb +12kb

@github-actions
Copy link
Contributor

Linux Benchmarks for 437eef5

benchmark current value last value diff trend
fnm_basic/median 29.53ms 20.72ms +8.81ms

fnm_basic/max 34.04ms 22.02ms +12.02ms

fnm_basic/mean 29.83ms 20.78ms +9.05ms

fnm_basic/min 27.3ms 20.16ms +7.13ms

fnm_basic/stddev 1.57ms 0.36ms +1.2ms

binary size 6948kb 6804kb +144kb

@Schniz Schniz merged commit 4c5aca7 into master Jun 30, 2023
@Schniz Schniz deleted the renovate/serde branch June 30, 2023 04:32
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
PR: Dependency Update A dependency was updated
Projects
None yet
Development

Successfully merging this pull request may close these issues.

1 participant