Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[Merged by Bors] - build(deps): Bump serde from 1.0.164 to 1.0.174 #92

Closed
wants to merge 1 commit into from

Conversation

dependabot[bot]
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Jul 24, 2023

Bumps serde from 1.0.164 to 1.0.174.

Release notes

Sourced from serde's releases.

v1.0.174

  • Documentation improvements

v1.0.173

  • Fix missing trait implementations when using serde derive macro on a macro-generated data structure, such as via the bitflags crate (#2516)

v1.0.172

  • Experiment with precompiling the serde_derive macros to reduce build time (#2514)

v1.0.171

v1.0.170

  • Produce error message on suffixed string literals inside serde attributes (#2242)
  • Support single identifier as unbraced default value for const generic parameter (#2449)

v1.0.169

  • Add Deserializer::deserialize_identifier support for adjacently tagged enums (#2475, thanks @​Baptistemontan)
  • Fix unused_braces lint in generated Deserialize impl that uses braced const generic expressions (#2414)

v1.0.168

  • Allow serde::de::IgnoredAny to be the type for a serde(flatten) field (#2436, thanks @​Mingun)
  • Allow larger preallocated capacity for smaller elements (#2494)

v1.0.167

  • Add serialize and deserialize impls for RangeFrom and RangeTo (#2471, thanks @​tbu-)

v1.0.166

  • Add no-alloc category to crates.io metadata

v1.0.165

  • Fix incorrect count of fields passed to tuple deserialization methods when using serde(skip_deserializing) attributes (#2466, thanks @​Mingun)
  • Fix -Zminimal-versions build
Commits
  • 22be673 Release 1.0.174
  • 166c89f Opt in to generate-link-to-definition when building on docs.rs
  • 6e0b13e Release 1.0.173
  • 7e8f978 Handle $crate special case
  • 6c0e838 Always consider empty output to be unsuccessful
  • d3da419 Enable full expression parsing for precompiled serde_derive
  • 425a4b7 Check precompiled subprocess exit status
  • 63c65ef Release 1.0.172
  • e838b0b Release 1.0.172-alpha.0
  • 041e99c Implement fallback to compiling serde_derive from source
  • Additional commits viewable in compare view

Dependabot compatibility score

You can trigger a rebase of this PR 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)

Note
Automatic rebases have been disabled on this pull request as it has been open for over 30 days.

Bumps [serde](https://github.com/serde-rs/serde) from 1.0.164 to 1.0.174.
- [Release notes](https://github.com/serde-rs/serde/releases)
- [Commits](serde-rs/serde@v1.0.164...v1.0.174)

---
updated-dependencies:
- dependency-name: serde
  dependency-type: direct:production
  update-type: version-update:semver-patch
...

Signed-off-by: dependabot[bot] <[email protected]>
@dependabot dependabot bot added dependencies Pull requests that update a dependency file rust Pull requests that update Rust code labels Jul 24, 2023
@morenol
Copy link
Contributor

morenol commented Aug 29, 2023

bors r+

bors bot pushed a commit that referenced this pull request Aug 29, 2023
Bumps [serde](https://github.com/serde-rs/serde) from 1.0.164 to 1.0.174.
<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.174</h2>
<ul>
<li>Documentation improvements</li>
</ul>
<h2>v1.0.173</h2>
<ul>
<li>Fix missing trait implementations when using serde derive macro on a macro-generated data structure, such as via the <code>bitflags</code> crate (<a href="https://redirect.github.com/serde-rs/serde/issues/2516">#2516</a>)</li>
</ul>
<h2>v1.0.172</h2>
<ul>
<li>Experiment with precompiling the serde_derive macros to reduce build time (<a href="https://redirect.github.com/serde-rs/serde/issues/2514">#2514</a>)</li>
</ul>
<h2>v1.0.171</h2>
<ul>
<li>Support <code>derive(Deserialize)</code> on unit structs that have const generics (<a href="https://redirect.github.com/serde-rs/serde/issues/2500">#2500</a>, thanks <a href="https://github.com/Baptistemontan"><code>@​Baptistemontan</code></a>)</li>
</ul>
<h2>v1.0.170</h2>
<ul>
<li>Produce error message on suffixed string literals inside serde attributes (<a href="https://redirect.github.com/serde-rs/serde/issues/2242">#2242</a>)</li>
<li>Support single identifier as unbraced default value for const generic parameter (<a href="https://redirect.github.com/serde-rs/serde/issues/2449">#2449</a>)</li>
</ul>
<h2>v1.0.169</h2>
<ul>
<li>Add Deserializer::deserialize_identifier support for adjacently tagged enums (<a href="https://redirect.github.com/serde-rs/serde/issues/2475">#2475</a>, thanks <a href="https://github.com/Baptistemontan"><code>@​Baptistemontan</code></a>)</li>
<li>Fix unused_braces lint in generated Deserialize impl that uses braced const generic expressions (<a href="https://redirect.github.com/serde-rs/serde/issues/2414">#2414</a>)</li>
</ul>
<h2>v1.0.168</h2>
<ul>
<li>Allow <code>serde::de::IgnoredAny</code> to be the type for a <code>serde(flatten)</code> field (<a href="https://redirect.github.com/serde-rs/serde/issues/2436">#2436</a>, thanks <a href="https://github.com/Mingun"><code>@​Mingun</code></a>)</li>
<li>Allow larger preallocated capacity for smaller elements (<a href="https://redirect.github.com/serde-rs/serde/issues/2494">#2494</a>)</li>
</ul>
<h2>v1.0.167</h2>
<ul>
<li>Add serialize and deserialize impls for <code>RangeFrom</code> and <code>RangeTo</code> (<a href="https://redirect.github.com/serde-rs/serde/issues/2471">#2471</a>, thanks <a href="https://github.com/tbu"><code>@​tbu</code></a>-)</li>
</ul>
<h2>v1.0.166</h2>
<ul>
<li>Add <code>no-alloc</code> category to crates.io metadata</li>
</ul>
<h2>v1.0.165</h2>
<ul>
<li>Fix incorrect count of fields passed to tuple deserialization methods when using <code>serde(skip_deserializing)</code> attributes (<a href="https://redirect.github.com/serde-rs/serde/issues/2466">#2466</a>, thanks <a href="https://github.com/Mingun"><code>@​Mingun</code></a>)</li>
<li>Fix <code>-Zminimal-versions</code> build</li>
</ul>
</blockquote>
</details>
<details>
<summary>Commits</summary>
<ul>
<li><a href="https://github.com/serde-rs/serde/commit/22be673beb63adf7fa436296719528f150946201"><code>22be673</code></a> Release 1.0.174</li>
<li><a href="https://github.com/serde-rs/serde/commit/166c89fabfa2c04d39c2abaf8b0a690d431ea94c"><code>166c89f</code></a> Opt in to generate-link-to-definition when building on docs.rs</li>
<li><a href="https://github.com/serde-rs/serde/commit/6e0b13eedbe24c54d49b421ae1ef36e007e8e592"><code>6e0b13e</code></a> Release 1.0.173</li>
<li><a href="https://github.com/serde-rs/serde/commit/7e8f978ca9127cf2c0dec9aca68972f6187eff85"><code>7e8f978</code></a> Handle $crate special case</li>
<li><a href="https://github.com/serde-rs/serde/commit/6c0e838a7ce326ae0d3d0c8b34a3695c40592fc0"><code>6c0e838</code></a> Always consider empty output to be unsuccessful</li>
<li><a href="https://github.com/serde-rs/serde/commit/d3da41927ae48abd548de4d1ad1b8aa02ee5965d"><code>d3da419</code></a> Enable full expression parsing for precompiled serde_derive</li>
<li><a href="https://github.com/serde-rs/serde/commit/425a4b7a746f23ce0d23ed7d7a95d1ea67ed8f63"><code>425a4b7</code></a> Check precompiled subprocess exit status</li>
<li><a href="https://github.com/serde-rs/serde/commit/63c65ef742c43dd9bbc95002cc2c675c62fb086b"><code>63c65ef</code></a> Release 1.0.172</li>
<li><a href="https://github.com/serde-rs/serde/commit/e838b0bd8183607f2f8a0f5fb182bde842db3af4"><code>e838b0b</code></a> Release 1.0.172-alpha.0</li>
<li><a href="https://github.com/serde-rs/serde/commit/041e99c78af654550215887f1a3bb4d779c4be40"><code>041e99c</code></a> Implement fallback to compiling serde_derive from source</li>
<li>Additional commits viewable in <a href="https://github.com/serde-rs/serde/compare/v1.0.164...v1.0.174">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.164&new-version=1.0.174)](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>
@morenol
Copy link
Contributor

morenol commented Aug 29, 2023

bors r+

@bors
Copy link

bors bot commented Aug 29, 2023

Already running a review

@bors
Copy link

bors bot commented Aug 29, 2023

Pull request successfully merged into main.

Build succeeded!

The publicly hosted instance of bors-ng is deprecated and will go away soon.

If you want to self-host your own instance, instructions are here.
For more help, visit the forum.

If you want to switch to GitHub's built-in merge queue, visit their help page.

@bors bors bot changed the title build(deps): Bump serde from 1.0.164 to 1.0.174 [Merged by Bors] - build(deps): Bump serde from 1.0.164 to 1.0.174 Aug 29, 2023
@bors bors bot closed this Aug 29, 2023
@dependabot @github
Copy link
Contributor Author

dependabot bot commented on behalf of github Aug 29, 2023

OK, I won't notify you again about this release, but will get in touch when a new version is available. If you'd rather skip all updates until the next major or minor version, let me know by commenting @dependabot ignore this major version or @dependabot ignore this minor version. You can also ignore all major, minor, or patch releases for a dependency by adding an ignore condition with the desired update_types to your config file.

If you change your mind, just re-open this PR and I'll resolve any conflicts on it.

@bors bors bot deleted the dependabot/cargo/serde-1.0.174 branch August 29, 2023 09:04
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 rust Pull requests that update Rust code
Projects
None yet
Development

Successfully merging this pull request may close these issues.

1 participant