Skip to content

build(deps): bump serde from 1.0.120 to 1.0.123#238

Merged
jordens merged 1 commit into
masterfrom
dependabot/cargo/serde-1.0.123
Jan 31, 2021
Merged

build(deps): bump serde from 1.0.120 to 1.0.123#238
jordens merged 1 commit into
masterfrom
dependabot/cargo/serde-1.0.123

Conversation

@dependabot

@dependabot dependabot Bot commented on behalf of github Jan 26, 2021

Copy link
Copy Markdown
Contributor

Bumps serde from 1.0.120 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)
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 dependabot Bot added the dependencies Pull requests that update a dependency file label Jan 26, 2021
Bumps [serde](https://github.com/serde-rs/serde) from 1.0.120 to 1.0.123.
- [Release notes](https://github.com/serde-rs/serde/releases)
- [Commits](serde-rs/serde@v1.0.120...v1.0.123)

Signed-off-by: dependabot[bot] <support@github.com>
@dependabot
dependabot Bot force-pushed the dependabot/cargo/serde-1.0.123 branch from d1bea11 to d679a9a Compare January 31, 2021 17:32
@jordens

jordens commented Jan 31, 2021

Copy link
Copy Markdown
Member

bors r+

bors Bot added a commit that referenced this pull request Jan 31, 2021
238: build(deps): bump serde from 1.0.120 to 1.0.123 r=jordens a=dependabot[bot]

Bumps [serde](https://github.com/serde-rs/serde) from 1.0.120 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>
</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.120...v1.0.123">compare view</a></li>
</ul>
</details>
<br />


[![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=serde&package-manager=cargo&previous-version=1.0.120&new-version=1.0.123)](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
- `@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)


</details>

Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
@bors

bors Bot commented Jan 31, 2021

Copy link
Copy Markdown
Contributor

Build failed:

@jordens
jordens merged commit e3e9780 into master Jan 31, 2021
@bors
bors Bot deleted the dependabot/cargo/serde-1.0.123 branch January 31, 2021 22:28
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.

1 participant