This repository was archived by the owner on Apr 5, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 41
Commit 53ba594
committed
Auto merge of #164 - rust-lang:dependabot/cargo/serde-1.0.123, r=JohnTitor
Bump serde from 1.0.119 to 1.0.123
Bumps [serde](https://github.com/serde-rs/serde) from 1.0.119 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 &[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 = "single version or array of versions")]
struct VersionSpec {
One(Version),
Many(Vec<Version>),
}
</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.119...v1.0.123">compare view</a></li>
</ul>
</details>
<br />
[](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores)
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
</details>File tree
Expand file treeCollapse file tree
2 files changed
+7
-7
lines changedFilter options
Expand file treeCollapse file tree
2 files changed
+7
-7
lines changed+6-6Lines changed: 6 additions & 6 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.
+1-1Lines changed: 1 addition & 1 deletion
Original file line number | Diff line number | Diff line change | |
---|---|---|---|
| |||
18 | 18 |
| |
19 | 19 |
| |
20 | 20 |
| |
21 |
| - | |
| 21 | + | |
22 | 22 |
| |
23 | 23 |
| |
24 | 24 |
| |
|
0 commit comments