[PR #507] [MERGED] chore(deps): bump serde from 1.0.171 to 1.0.179 #960

Closed
opened 2026-01-05 14:53:33 +01:00 by adam · 0 comments
Owner

📋 Pull Request Information

Original PR: https://github.com/LGUG2Z/komorebi/pull/507
Author: @dependabot[bot]
Created: 7/31/2023
Status: Merged
Merged: 8/10/2023
Merged by: @LGUG2Z

Base: masterHead: dependabot/cargo/serde-1.0.179


📝 Commits (1)

  • 1af4349 chore(deps): bump serde from 1.0.171 to 1.0.179

📊 Changes

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

View changed files

📝 Cargo.lock (+4 -4)

📄 Description

Bumps serde from 1.0.171 to 1.0.179.

Release notes

Sourced from serde's releases.

v1.0.179

  • Support serialization of tuple variants inside a flattened field (#2448, thanks @​Mingun)

v1.0.178

  • Fix build error when using serde with "std" feature turned off and "unstable" feature turned on (#2541)

v1.0.177

  • Add serde(rename_all_fields = "...") attribute to apply a rename_all on every struct variant of an enum (#1695, thanks @​jplatte)
  • Improve diagnostics for attribute parse errors (#2536, thanks @​jplatte)

v1.0.176

  • Allow tag field of an internally tagged enum to have same name as a field inside a skipped struct variant (#2266, thanks @​flisky)

v1.0.175

  • Restore missing LICENSE files in serde_derive crate (#2527, thanks @​ankane)

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)
Commits
  • c2b16bf Release 1.0.179
  • e7df537 Resolve doc_markdown clippy lint from PR 2448
  • 02c34e4 Resolve redundant_field_names clippy lint from PR 2448
  • 427c839 Merge pull request #2448 from Mingun/ser-flatten-enums
  • 48aa054 Release 1.0.178
  • 3616860 Delete broken symlink from precompiled derive sources
  • 861b0df Consistently list StdError under 'Re-exports' heading of rustdoc
  • 8b3d71a Merge pull request #2541 from dtolnay/de-core-error
  • ff5442c Add no-std unstable build in CI
  • 92d686f Fix serde::de::StdError in no-std unstable build
  • 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)

🔄 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/LGUG2Z/komorebi/pull/507 **Author:** [@dependabot[bot]](https://github.com/apps/dependabot) **Created:** 7/31/2023 **Status:** ✅ Merged **Merged:** 8/10/2023 **Merged by:** [@LGUG2Z](https://github.com/LGUG2Z) **Base:** `master` ← **Head:** `dependabot/cargo/serde-1.0.179` --- ### 📝 Commits (1) - [`1af4349`](https://github.com/LGUG2Z/komorebi/commit/1af43497b26cdfd3b26cc182e29912e96a9fb2b1) chore(deps): bump serde from 1.0.171 to 1.0.179 ### 📊 Changes **1 file changed** (+4 additions, -4 deletions) <details> <summary>View changed files</summary> 📝 `Cargo.lock` (+4 -4) </details> ### 📄 Description Bumps [serde](https://github.com/serde-rs/serde) from 1.0.171 to 1.0.179. <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.179</h2> <ul> <li>Support serialization of tuple variants inside a flattened field (<a href="https://redirect.github.com/serde-rs/serde/issues/2448">#2448</a>, thanks <a href="https://github.com/Mingun"><code>@​Mingun</code></a>)</li> </ul> <h2>v1.0.178</h2> <ul> <li>Fix build error when using serde with &quot;std&quot; feature turned off and &quot;unstable&quot; feature turned on (<a href="https://redirect.github.com/serde-rs/serde/issues/2541">#2541</a>)</li> </ul> <h2>v1.0.177</h2> <ul> <li>Add <code>serde(rename_all_fields = &quot;...&quot;)</code> attribute to apply a <code>rename_all</code> on every struct variant of an enum (<a href="https://redirect.github.com/serde-rs/serde/issues/1695">#1695</a>, thanks <a href="https://github.com/jplatte"><code>@​jplatte</code></a>)</li> <li>Improve diagnostics for attribute parse errors (<a href="https://redirect.github.com/serde-rs/serde/issues/2536">#2536</a>, thanks <a href="https://github.com/jplatte"><code>@​jplatte</code></a>)</li> </ul> <h2>v1.0.176</h2> <ul> <li>Allow tag field of an internally tagged enum to have same name as a field inside a skipped struct variant (<a href="https://redirect.github.com/serde-rs/serde/issues/2266">#2266</a>, thanks <a href="https://github.com/flisky"><code>@​flisky</code></a>)</li> </ul> <h2>v1.0.175</h2> <ul> <li>Restore missing LICENSE files in serde_derive crate (<a href="https://redirect.github.com/serde-rs/serde/issues/2527">#2527</a>, thanks <a href="https://github.com/ankane"><code>@​ankane</code></a>)</li> </ul> <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> </blockquote> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/serde-rs/serde/commit/c2b16bfbb0a5b662aa97c9a8a5d5bf7d958b85b8"><code>c2b16bf</code></a> Release 1.0.179</li> <li><a href="https://github.com/serde-rs/serde/commit/e7df53701c6e71dce4a8a376a84838134ea73a65"><code>e7df537</code></a> Resolve doc_markdown clippy lint from PR 2448</li> <li><a href="https://github.com/serde-rs/serde/commit/02c34e490b6886ee65c2032939239e25540af7c2"><code>02c34e4</code></a> Resolve redundant_field_names clippy lint from PR 2448</li> <li><a href="https://github.com/serde-rs/serde/commit/427c839b3ddfd5865b6651e095ed959098f7f2a8"><code>427c839</code></a> Merge pull request <a href="https://redirect.github.com/serde-rs/serde/issues/2448">#2448</a> from Mingun/ser-flatten-enums</li> <li><a href="https://github.com/serde-rs/serde/commit/48aa054f5395d2570f51b9d0c85e486f1b3b46ef"><code>48aa054</code></a> Release 1.0.178</li> <li><a href="https://github.com/serde-rs/serde/commit/3616860203962c0644d286023a604d514c328f60"><code>3616860</code></a> Delete broken symlink from precompiled derive sources</li> <li><a href="https://github.com/serde-rs/serde/commit/861b0dfea27c50c4b70524c3495567590c0fd307"><code>861b0df</code></a> Consistently list StdError under 'Re-exports' heading of rustdoc</li> <li><a href="https://github.com/serde-rs/serde/commit/8b3d71ae2d3c8af68c6176327c4a40df4d6202ed"><code>8b3d71a</code></a> Merge pull request <a href="https://redirect.github.com/serde-rs/serde/issues/2541">#2541</a> from dtolnay/de-core-error</li> <li><a href="https://github.com/serde-rs/serde/commit/ff5442cd9ea48fd3913700bb3ddb7f1a72c9b2c3"><code>ff5442c</code></a> Add no-std unstable build in CI</li> <li><a href="https://github.com/serde-rs/serde/commit/92d686f9a536d4b3d3ede61e65d2f883a7bc4ed4"><code>92d686f</code></a> Fix serde::de::StdError in no-std unstable build</li> <li>Additional commits viewable in <a href="https://github.com/serde-rs/serde/compare/v1.0.171...v1.0.179">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.171&new-version=1.0.179)](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> --- <sub>🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.</sub>
adam added the pull-request label 2026-01-05 14:53:33 +01:00
adam closed this issue 2026-01-05 14:53:33 +01:00
Sign in to join this conversation.
1 Participants
Notifications
Due Date
No due date set.
Dependencies

No dependencies set.

Reference: starred/komorebi#960