Skip to content

Update Rust crate serde_yaml to v0.9.4 - #454

Closed
renovate[bot] wants to merge 1 commit into
mainfrom
renovate/serde_yaml-0.x
Closed

Update Rust crate serde_yaml to v0.9.4#454
renovate[bot] wants to merge 1 commit into
mainfrom
renovate/serde_yaml-0.x

Conversation

@renovate

@renovate renovate Bot commented Aug 5, 2022

Copy link
Copy Markdown
Contributor

Mend Renovate

This PR contains the following updates:

Package Type Update Change
serde_yaml dev-dependencies minor 0.8 -> 0.9
serde_yaml dependencies minor 0.8.26 -> 0.9.4

Release Notes

dtolnay/serde-yaml

v0.9.4

Compare Source

v0.9.3

Compare Source

v0.9.2

Compare Source

v0.9.1

Compare Source

v0.9.0

Compare Source

v0.8.26

Compare Source

v0.8.25

Compare Source

  • Add to "encoding" category on crates.io (#​246)

v0.8.24

Compare Source

v0.8.23

Compare Source

v0.8.22

Compare Source

v0.8.21

Compare Source

v0.8.20

Compare Source

v0.8.19

Compare Source

v0.8.18

Compare Source

v0.8.17

Compare Source

v0.8.16

Compare Source

  • Add a Serializer and Deserializer type (#​185, #​186)

    let mut buffer = Vec::new();
    let mut ser = serde_yaml::Serializer::new(&mut buffer);
    
    let mut object = BTreeMap::new();
    object.insert("k", 107);
    object.serialize(&mut ser)?;
    
    let de = serde_yaml::Deserializer::from_slice(&buffer);
    let value = Value::deserialize(de)?;
    println!("{:?}", value);
  • Support multi-doc serialization (#​187)

    let mut buffer = Vec::new();
    let mut ser = serde_yaml::Serializer::new(&mut buffer);
    
    let mut object = BTreeMap::new();
    object.insert("k", 107);
    object.serialize(&mut ser)?;
    
    object.insert("j", 106);
    object.serialize(&mut ser)?;
    
    assert_eq!(buffer, b"---\nk: 107\n...\n---\nj: 106\nk: 107\n");
  • Support multi-doc deserialization (#​189)

    let input = "---\nk: 107\n...\n---\nj: 106\n";
    
    for document in serde_yaml::Deserializer::from_str(input) {
        let value = Value::deserialize(document)?;
        println!("{:?}", value);
    }

v0.8.15

Compare Source

  • Declare dependency version requirements compatible with minimal-versions lockfile (#​183)

v0.8.14

Compare Source

v0.8.13

Compare Source

  • Documentation improvements

v0.8.12

Compare Source

  • Add serde_yaml::mapping module containing Mapping's various iterator types: Iter, IterMut, IntoIter
  • Fix deserialization of certain strings incorrectly as NaN or infinity; only .nan and .inf and -.inf are YAML's permitted representations for NaN and infinity

v0.8.11

Compare Source

v0.8.10

Compare Source

v0.8.9

Compare Source

  • Add Value::get_mut to index into a &mut Value, returning Option

v0.8.8

Compare Source

  • Provide an implementation of Default for serde_yaml::Value which produces Value::Null (#​120, thanks @​macisamuele)

v0.8.7

Compare Source

v0.8.6

Compare Source

  • 128-bit integer support (#​110)

v0.8.5

Compare Source

v0.8.4

Compare Source

  • Limit recursion to 128 levels to avoid stack overflows (#​105)

v0.8.3

Compare Source

  • Fix possible panic during deserialization (#​101)

v0.8.2

Compare Source

  • Documentation improvements

v0.8.1

Compare Source

  • Documentation improvements

Configuration

📅 Schedule: Branch creation - "after 5:00 and before 6:00 every weekday" in timezone Europe/Berlin, 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.

🔕 Ignore: Close this PR and you won't be reminded about these updates again.


  • If you want to rebase/retry this PR, click this checkbox.

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

@renovate renovate Bot added the dependencies Pull requests that update a dependency file label Aug 5, 2022
@renovate
renovate Bot requested a review from a team August 5, 2022 03:06
@Pscheidl

Pscheidl commented Aug 7, 2022

Copy link
Copy Markdown
Contributor

Can probably be closed in favor of #455 (the update breaks one test).

@nightkr

nightkr commented Aug 8, 2022

Copy link
Copy Markdown
Contributor

Handled in #450.

@nightkr nightkr closed this Aug 8, 2022
@renovate

renovate Bot commented Aug 8, 2022

Copy link
Copy Markdown
Contributor Author

Renovate Ignore Notification

As this PR has been closed unmerged, Renovate will now ignore this update (0.9). You will still receive a PR once a newer version is released, so if you wish to permanently ignore this dependency, please add it to the ignoreDeps array of your renovate config.

If this PR was closed by mistake or you changed your mind, you can simply rename this PR and you will soon get a fresh replacement PR opened.

@renovate
renovate Bot deleted the renovate/serde_yaml-0.x branch August 8, 2022 08:18
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

Projects

None yet

Development

Successfully merging this pull request may close these issues.

2 participants