[PR #720] [MERGED] Bump serde from 1.0.118 to 1.0.123 #997

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

📋 Pull Request Information

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

Base: masterHead: dependabot/cargo/serde-1.0.123


📝 Commits (1)

  • 0178286 Bump serde from 1.0.118 to 1.0.123

📊 Changes

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

View changed files

📝 Cargo.lock (+28 -28)

📄 Description

Bumps serde from 1.0.118 to 1.0.123.

Release notes

Sourced from serde's releases.

v1.0.123

  • Support Self keywords in fields of types that derive Deserialize (#1830, thanks @taiki-e)
  • Allow floats to be deserialized from ints in tagged unions (#1842, thanks @Timmmm)
  • Support Self inside fields that use serialize_with (#1970)

v1.0.122

  • Add IntoDeserializer impl for &[u8] (#1898, thanks @Mingun)

  • Handle unrecognized numeric field keys during deserialization of a field_identifier, equivalently to string field keys (#1914, thanks @Mingun)

  • Add attribute to override default deserialization failure expectation message (#1916, thanks @Mingun)

    #[derive(Deserialize)]
    #[serde(untagged, expecting = "single version or array of versions")]
    struct VersionSpec {
        One(Version),
        Many(Vec<Version>),
    }
    
  • Improve serde_test handling of map entries and error message construction (#1918, thanks @Mingun)

  • Produce more accurate location information on test failures from serde_test crate (#1920, thanks @Mingun)

  • Improve diagnostic on failure to parse a rename_all attribute (#1960, #1961)

  • Eliminate unnecessary trait bounds on some value Deserializer impls (#1963)

v1.0.121

  • Support borrowed data during deserialization of a field identifier (#1917, thanks @Mingun)
  • Fix panic when deserializing Duration with nanoseconds that cause the seconds counter to overflow (#1958, thanks @jonasbb)

v1.0.120

  • Fix deserialization of ignored fields containing 128-bit integer (#1955, thanks @TheJokr)
Commits
  • 3d6c414 Release 1.0.123
  • 29cdf88 Merge pull request #1970 from serde-rs/self
  • 2ba9739 Substitute Self in output of Serialize derive
  • 6699b0b Add regression test for issue 1969
  • b054ea4 Ignore some pedantic lints in serde_derive_internals from PR 1830
  • e5efb6a Remove dependency on syn/visit-mut feature
  • 1f42358 Deduplicate token stream respanner
  • 033114a Touch up PR 1830
  • 7cec99c Pare down PR 1830
  • 6c5bf70 Merge pull request 1830 from taiki-e/self
  • 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/720 **Author:** [@dependabot-preview[bot]](https://github.com/apps/dependabot-preview) **Created:** 1/26/2021 **Status:** ✅ Merged **Merged:** 1/27/2021 **Merged by:** [@Rigellute](https://github.com/Rigellute) **Base:** `master` ← **Head:** `dependabot/cargo/serde-1.0.123` --- ### 📝 Commits (1) - [`0178286`](https://github.com/Rigellute/spotify-tui/commit/0178286f8636f4ee4cfd6afd635e8263aae1fb4c) Bump serde from 1.0.118 to 1.0.123 ### 📊 Changes **1 file changed** (+28 additions, -28 deletions) <details> <summary>View changed files</summary> 📝 `Cargo.lock` (+28 -28) </details> ### 📄 Description Bumps [serde](https://github.com/serde-rs/serde) from 1.0.118 to 1.0.123. <details> <summary>Release notes</summary> <p><em>Sourced from <a href="https://github.com/serde-rs/serde/releases">serde's releases</a>.</em></p> <blockquote> <h2>v1.0.123</h2> <ul> <li>Support <code>Self</code> keywords in fields of types that derive Deserialize (<a href="https://github-redirect.dependabot.com/serde-rs/serde/issues/1830">#1830</a>, thanks <a href="https://github.com/taiki-e"><code>@taiki-e</code></a>)</li> <li>Allow floats to be deserialized from ints in tagged unions (<a href="https://github-redirect.dependabot.com/serde-rs/serde/issues/1842">#1842</a>, thanks <a href="https://github.com/Timmmm"><code>@Timmmm</code></a>)</li> <li>Support <code>Self</code> inside fields that use serialize_with (<a href="https://github-redirect.dependabot.com/serde-rs/serde/issues/1970">#1970</a>)</li> </ul> <h2>v1.0.122</h2> <ul> <li> <p>Add IntoDeserializer impl for &amp;[u8] (<a href="https://github-redirect.dependabot.com/serde-rs/serde/issues/1898">#1898</a>, thanks <a href="https://github.com/Mingun"><code>@Mingun</code></a>)</p> </li> <li> <p>Handle unrecognized numeric field keys during deserialization of a field_identifier, equivalently to string field keys (<a href="https://github-redirect.dependabot.com/serde-rs/serde/issues/1914">#1914</a>, thanks <a href="https://github.com/Mingun"><code>@Mingun</code></a>)</p> </li> <li> <p>Add attribute to override default deserialization failure expectation message (<a href="https://github-redirect.dependabot.com/serde-rs/serde/issues/1916">#1916</a>, thanks <a href="https://github.com/Mingun"><code>@Mingun</code></a>)</p> <pre lang="rust"><code>#[derive(Deserialize)] #[serde(untagged, expecting = &quot;single version or array of versions&quot;)] struct VersionSpec { One(Version), Many(Vec&lt;Version&gt;), } </code></pre> </li> <li> <p>Improve <code>serde_test</code> handling of map entries and error message construction (<a href="https://github-redirect.dependabot.com/serde-rs/serde/issues/1918">#1918</a>, thanks <a href="https://github.com/Mingun"><code>@Mingun</code></a>)</p> </li> <li> <p>Produce more accurate location information on test failures from <code>serde_test</code> crate (<a href="https://github-redirect.dependabot.com/serde-rs/serde/issues/1920">#1920</a>, thanks <a href="https://github.com/Mingun"><code>@Mingun</code></a>)</p> </li> <li> <p>Improve diagnostic on failure to parse a <code>rename_all</code> attribute (<a href="https://github-redirect.dependabot.com/serde-rs/serde/issues/1960">#1960</a>, <a href="https://github-redirect.dependabot.com/serde-rs/serde/issues/1961">#1961</a>)</p> </li> <li> <p>Eliminate unnecessary trait bounds on some value Deserializer impls (<a href="https://github-redirect.dependabot.com/serde-rs/serde/issues/1963">#1963</a>)</p> </li> </ul> <h2>v1.0.121</h2> <ul> <li>Support borrowed data during deserialization of a field identifier (<a href="https://github-redirect.dependabot.com/serde-rs/serde/issues/1917">#1917</a>, thanks <a href="https://github.com/Mingun"><code>@Mingun</code></a>)</li> <li>Fix panic when deserializing <code>Duration</code> with nanoseconds that cause the seconds counter to overflow (<a href="https://github-redirect.dependabot.com/serde-rs/serde/issues/1958">#1958</a>, thanks <a href="https://github.com/jonasbb"><code>@jonasbb</code></a>)</li> </ul> <h2>v1.0.120</h2> <ul> <li>Fix deserialization of ignored fields containing 128-bit integer (<a href="https://github-redirect.dependabot.com/serde-rs/serde/issues/1955">#1955</a>, thanks <a href="https://github.com/TheJokr"><code>@TheJokr</code></a>)</li> </ul> </blockquote> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/serde-rs/serde/commit/3d6c4149b177e9cadfb948ebc6d1e55b33861792"><code>3d6c414</code></a> Release 1.0.123</li> <li><a href="https://github.com/serde-rs/serde/commit/29cdf888c07718cefd99b268fc154960e312afb3"><code>29cdf88</code></a> Merge pull request <a href="https://github-redirect.dependabot.com/serde-rs/serde/issues/1970">#1970</a> from serde-rs/self</li> <li><a href="https://github.com/serde-rs/serde/commit/2ba97394fb5e5c32b52ab8d82aed45b85fef0db7"><code>2ba9739</code></a> Substitute Self in output of Serialize derive</li> <li><a href="https://github.com/serde-rs/serde/commit/6699b0bc404663064189c3a34d7934475741b3e5"><code>6699b0b</code></a> Add regression test for issue 1969</li> <li><a href="https://github.com/serde-rs/serde/commit/b054ea41053ea4047882cc33970d2257cdfe04ac"><code>b054ea4</code></a> Ignore some pedantic lints in serde_derive_internals from PR 1830</li> <li><a href="https://github.com/serde-rs/serde/commit/e5efb6ad930626faf5646f4bc5bbe00688720951"><code>e5efb6a</code></a> Remove dependency on syn/visit-mut feature</li> <li><a href="https://github.com/serde-rs/serde/commit/1f423580a59cbd63b9114b1f8c3b044262134ae0"><code>1f42358</code></a> Deduplicate token stream respanner</li> <li><a href="https://github.com/serde-rs/serde/commit/033114a4aea87e0605fa957cf5be5e636904865c"><code>033114a</code></a> Touch up PR 1830</li> <li><a href="https://github.com/serde-rs/serde/commit/7cec99c7fdc96905784663043c36137c501c4b2b"><code>7cec99c</code></a> Pare down PR 1830</li> <li><a href="https://github.com/serde-rs/serde/commit/6c5bf701be6cb8dfb65d063d0f84f9b70294b8c5"><code>6c5bf70</code></a> Merge pull request 1830 from taiki-e/self</li> <li>Additional commits viewable in <a href="https://github.com/serde-rs/serde/compare/v1.0.118...v1.0.123">compare view</a></li> </ul> </details> <br /> [![Dependabot compatibility score](https://api.dependabot.com/badges/compatibility_score?dependency-name=serde&package-manager=cargo&previous-version=1.0.118&new-version=1.0.123)](https://dependabot.com/compatibility-score/?dependency-name=serde&package-manager=cargo&previous-version=1.0.118&new-version=1.0.123) 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:06 +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#997
No description provided.