[PR #730] [CLOSED] Bump serde_yaml from 0.8.15 to 0.8.16 #1004

Closed
opened 2026-02-28 14:54:08 +03:00 by kerem · 0 comments
Owner

📋 Pull Request Information

Original PR: https://github.com/Rigellute/spotify-tui/pull/730
Author: @dependabot-preview[bot]
Created: 2/2/2021
Status: Closed

Base: masterHead: dependabot/cargo/serde_yaml-0.8.16


📝 Commits (1)

  • 255d235 Bump serde_yaml from 0.8.15 to 0.8.16

📊 Changes

1 file changed (+2 additions, -2 deletions)

View changed files

📝 Cargo.lock (+2 -2)

📄 Description

Bumps serde_yaml from 0.8.15 to 0.8.16.

Release notes

Sourced from serde_yaml's releases.

0.8.16

  • 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); }

Commits
  • 02e9940 Release 0.8.16
  • 667bd47 Merge pull request #190 from dtolnay/doc
  • 52de1e0 Fix Serializer example code on rustc pre-1.47
  • 5b91abf Add multi-doc examples
  • cfe758b Merge pull request #189 from dtolnay/multide
  • 2903742 Support multi-doc deserialization
  • 037519e Merge pull request #188 from dtolnay/shared
  • 2700f69 Ignore unused Shared error until multi-doc deserialization
  • 4200736 Add an error variant with shared ownership
  • 7ea4775 Factor out error trait impls to work without outer Error wrapper
  • Additional commits viewable in compare view

Dependabot compatibility score

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 ignore this major version will 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 version will 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 dependency will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)
  • @dependabot use these labels will set the current labels as the default for future PRs for this repo and language
  • @dependabot use these reviewers will set the current reviewers as the default for future PRs for this repo and language
  • @dependabot use these assignees will set the current assignees as the default for future PRs for this repo and language
  • @dependabot use this milestone will set the current milestone as the default for future PRs for this repo and language
  • @dependabot badge me will comment on this PR with code to add a "Dependabot enabled" badge to your readme

Additionally, you can set the following in your Dependabot dashboard:

  • Update frequency (including time of day and day of week)
  • Pull request limits (per update run and/or open at any time)
  • Out-of-range updates (receive only lockfile updates, if desired)
  • Security updates (receive only security updates, if desired)

🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.

## 📋 Pull Request Information **Original PR:** https://github.com/Rigellute/spotify-tui/pull/730 **Author:** [@dependabot-preview[bot]](https://github.com/apps/dependabot-preview) **Created:** 2/2/2021 **Status:** ❌ Closed **Base:** `master` ← **Head:** `dependabot/cargo/serde_yaml-0.8.16` --- ### 📝 Commits (1) - [`255d235`](https://github.com/Rigellute/spotify-tui/commit/255d2359d3dfb9d841ae579b717c14453fb9411f) Bump serde_yaml from 0.8.15 to 0.8.16 ### 📊 Changes **1 file changed** (+2 additions, -2 deletions) <details> <summary>View changed files</summary> 📝 `Cargo.lock` (+2 -2) </details> ### 📄 Description Bumps [serde_yaml](https://github.com/dtolnay/serde-yaml) from 0.8.15 to 0.8.16. <details> <summary>Release notes</summary> <p><em>Sourced from <a href="https://github.com/dtolnay/serde-yaml/releases">serde_yaml's releases</a>.</em></p> <blockquote> <h2>0.8.16</h2> <ul> <li> <p>Add a Serializer and Deserializer type (<a href="https://github-redirect.dependabot.com/dtolnay/serde-yaml/issues/185">#185</a>, <a href="https://github-redirect.dependabot.com/dtolnay/serde-yaml/issues/186">#186</a>)</p> <pre lang="rust"><code>let mut buffer = Vec::new(); let mut ser = serde_yaml::Serializer::new(&amp;mut buffer); <p>let mut object = BTreeMap::new(); object.insert(&quot;k&quot;, 107); object.serialize(&amp;mut ser)?;</p> <p>let de = serde_yaml::Deserializer::from_slice(&amp;buffer); let value = Value::deserialize(de)?; println!(&quot;{:?}&quot;, value); </code></pre></p> </li> <li> <p>Support multi-doc serialization (<a href="https://github-redirect.dependabot.com/dtolnay/serde-yaml/issues/187">#187</a>)</p> <pre lang="rust"><code>let mut buffer = Vec::new(); let mut ser = serde_yaml::Serializer::new(&amp;mut buffer); <p>let mut object = BTreeMap::new(); object.insert(&quot;k&quot;, 107); object.serialize(&amp;mut ser)?;</p> <p>object.insert(&quot;j&quot;, 106); object.serialize(&amp;mut ser)?;</p> <p>assert_eq!(buffer, b&quot;---\nk: 107\n...\n---\nj: 106\nk: 107\n&quot;); </code></pre></p> </li> <li> <p>Support multi-doc deserialization (<a href="https://github-redirect.dependabot.com/dtolnay/serde-yaml/issues/189">#189</a>)</p> <pre lang="rust"><code>let input = &quot;---\nk: 107\n...\n---\nj: 106\n&quot;; <p>for document in serde_yaml::Deserializer::from_str(input) { let value = Value::deserialize(document)?; println!(&quot;{:?}&quot;, value); } </code></pre></p> </li> </ul> </blockquote> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/dtolnay/serde-yaml/commit/02e99401eaefed7324317e123d65200782a131c7"><code>02e9940</code></a> Release 0.8.16</li> <li><a href="https://github.com/dtolnay/serde-yaml/commit/667bd478d99dcc93425be4a82d05caeaee3fe32a"><code>667bd47</code></a> Merge pull request <a href="https://github-redirect.dependabot.com/dtolnay/serde-yaml/issues/190">#190</a> from dtolnay/doc</li> <li><a href="https://github.com/dtolnay/serde-yaml/commit/52de1e08a9213e2604c5f93da462a91a1ed0f9a2"><code>52de1e0</code></a> Fix Serializer example code on rustc pre-1.47</li> <li><a href="https://github.com/dtolnay/serde-yaml/commit/5b91abf52c3be34bd2831233b0a31815f030b1a4"><code>5b91abf</code></a> Add multi-doc examples</li> <li><a href="https://github.com/dtolnay/serde-yaml/commit/cfe758b640bb311d4c0cea67d87f2ebdeca984a9"><code>cfe758b</code></a> Merge pull request <a href="https://github-redirect.dependabot.com/dtolnay/serde-yaml/issues/189">#189</a> from dtolnay/multide</li> <li><a href="https://github.com/dtolnay/serde-yaml/commit/2903742033050dcf4489be94408faa9a496af990"><code>2903742</code></a> Support multi-doc deserialization</li> <li><a href="https://github.com/dtolnay/serde-yaml/commit/037519e859fd179a7110318799f5de88353c7f21"><code>037519e</code></a> Merge pull request <a href="https://github-redirect.dependabot.com/dtolnay/serde-yaml/issues/188">#188</a> from dtolnay/shared</li> <li><a href="https://github.com/dtolnay/serde-yaml/commit/2700f693e6f54f193ee335512b3bf7a802681fd9"><code>2700f69</code></a> Ignore unused Shared error until multi-doc deserialization</li> <li><a href="https://github.com/dtolnay/serde-yaml/commit/42007362ce114ad2e6eff04fa9e98d4b01970dba"><code>4200736</code></a> Add an error variant with shared ownership</li> <li><a href="https://github.com/dtolnay/serde-yaml/commit/7ea47751d3a8ebc9f7ed1d9e39f444a34f39c643"><code>7ea4775</code></a> Factor out error trait impls to work without outer Error wrapper</li> <li>Additional commits viewable in <a href="https://github.com/dtolnay/serde-yaml/compare/0.8.15...0.8.16">compare view</a></li> </ul> </details> <br /> [![Dependabot compatibility score](https://api.dependabot.com/badges/compatibility_score?dependency-name=serde_yaml&package-manager=cargo&previous-version=0.8.15&new-version=0.8.16)](https://dependabot.com/compatibility-score/?dependency-name=serde_yaml&package-manager=cargo&previous-version=0.8.15&new-version=0.8.16) 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-automerge-start) [//]: # (dependabot-automerge-end) --- <details> <summary>Dependabot commands and options</summary> <br /> 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 ignore this major version` will 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 version` will 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 dependency` will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself) - `@dependabot use these labels` will set the current labels as the default for future PRs for this repo and language - `@dependabot use these reviewers` will set the current reviewers as the default for future PRs for this repo and language - `@dependabot use these assignees` will set the current assignees as the default for future PRs for this repo and language - `@dependabot use this milestone` will set the current milestone as the default for future PRs for this repo and language - `@dependabot badge me` will comment on this PR with code to add a "Dependabot enabled" badge to your readme Additionally, you can set the following in your Dependabot [dashboard](https://app.dependabot.com): - Update frequency (including time of day and day of week) - Pull request limits (per update run and/or open at any time) - Out-of-range updates (receive only lockfile updates, if desired) - Security updates (receive only security updates, if desired) </details> --- <sub>🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.</sub>
kerem 2026-02-28 14:54:08 +03:00
Sign in to join this conversation.
No milestone
No project
No assignees
1 participant
Notifications
Due date
The due date is invalid or out of range. Please use the format "yyyy-mm-dd".

No due date set.

Dependencies

No dependencies set.

Reference
starred/spotify-tui#1004
No description provided.