[PR #735] [MERGED] Bump serde_yaml from 0.8.15 to 0.8.17 #1007

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

📋 Pull Request Information

Original PR: https://github.com/Rigellute/spotify-tui/pull/735
Author: @dependabot-preview[bot]
Created: 2/11/2021
Status: Merged
Merged: 2/27/2021
Merged by: @Rigellute

Base: masterHead: dependabot/cargo/serde_yaml-0.8.17


📝 Commits (1)

  • 59108c3 Bump serde_yaml from 0.8.15 to 0.8.17

📊 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.17.

Release notes

Sourced from serde_yaml's releases.

0.8.17

  • Add IntoDeserializer implementation to Value enum (#192, thanks @luke-biel)

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

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/735 **Author:** [@dependabot-preview[bot]](https://github.com/apps/dependabot-preview) **Created:** 2/11/2021 **Status:** ✅ Merged **Merged:** 2/27/2021 **Merged by:** [@Rigellute](https://github.com/Rigellute) **Base:** `master` ← **Head:** `dependabot/cargo/serde_yaml-0.8.17` --- ### 📝 Commits (1) - [`59108c3`](https://github.com/Rigellute/spotify-tui/commit/59108c321400cca59ac7f21bc8612f5065970f32) Bump serde_yaml from 0.8.15 to 0.8.17 ### 📊 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.17. <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.17</h2> <ul> <li>Add IntoDeserializer implementation to Value enum (<a href="https://github-redirect.dependabot.com/dtolnay/serde-yaml/issues/192">#192</a>, thanks <a href="https://github.com/luke-biel"><code>@luke-biel</code></a>)</li> </ul> <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/88625962216304d131bb43c49f8a5b5bf160b498"><code>8862596</code></a> Release 0.8.17</li> <li><a href="https://github.com/dtolnay/serde-yaml/commit/f72dc19e5b46813f1fff9d71577a059a7259ff22"><code>f72dc19</code></a> Move crate::value nested mods up</li> <li><a href="https://github.com/dtolnay/serde-yaml/commit/0e580f275bd4e95d182ae2f96a828fe0431e4907"><code>0e580f2</code></a> Merge pull request <a href="https://github-redirect.dependabot.com/dtolnay/serde-yaml/issues/192">#192</a> from luke-biel/master</li> <li><a href="https://github.com/dtolnay/serde-yaml/commit/b0764f2e0a9fdec6b45e65bd50727e3e4ee591a5"><code>b0764f2</code></a> Fix clippy warning</li> <li><a href="https://github.com/dtolnay/serde-yaml/commit/d80e1c96fa83bf800c494c029d90a2493b811b74"><code>d80e1c9</code></a> Add IntoDeserializer implementation to Value enum</li> <li><a href="https://github.com/dtolnay/serde-yaml/commit/26e107051021e98aa2ee59e1b93638ad5066ceee"><code>26e1070</code></a> Remove no longer triggered clippy suppressions</li> <li><a href="https://github.com/dtolnay/serde-yaml/commit/616b2ddf9cbdc409cbeec6d8c135da5cf0ea393a"><code>616b2dd</code></a> Merge pull request <a href="https://github-redirect.dependabot.com/dtolnay/serde-yaml/issues/191">#191</a> from colltoaction/patch-1</li> <li><a href="https://github.com/dtolnay/serde-yaml/commit/d473b58cf44f46b7a17e5402d7b6ede499ccaa43"><code>d473b58</code></a> Fix assert in README</li> <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>Additional commits viewable in <a href="https://github.com/dtolnay/serde-yaml/compare/0.8.15...0.8.17">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.17)](https://dependabot.com/compatibility-score/?dependency-name=serde_yaml&package-manager=cargo&previous-version=0.8.15&new-version=0.8.17) 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:09 +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#1007
No description provided.