[PR #933] [CLOSED] Bump serde_json from 1.0.67 to 1.0.74 #1095

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

📋 Pull Request Information

Original PR: https://github.com/Rigellute/spotify-tui/pull/933
Author: @dependabot[bot]
Created: 1/1/2022
Status: Closed

Base: masterHead: dependabot/cargo/serde_json-1.0.74


📝 Commits (1)

  • 565376b Bump serde_json from 1.0.67 to 1.0.74

📊 Changes

1 file changed (+12 additions, -6 deletions)

View changed files

📝 Cargo.lock (+12 -6)

📄 Description

Bumps serde_json from 1.0.67 to 1.0.74.

Release notes

Sourced from serde_json's releases.

v1.0.74

  • Allow creating RawValues from references to unsized values (#841, thanks @​EFanZh)

v1.0.73

  • Update itoa dependency to 1.0

v1.0.72

v1.0.71

v1.0.70

v1.0.69

v1.0.68

  • Preserve negative sign of -0 when deserializing to f32 or f64 (#799, #801)
Commits
  • 58d40de Release 1.0.74
  • ef7794f Detect warnings in CI
  • 6de3d39 Merge pull request 841 from EFanZh/unsized-value-to-raw-value
  • 012f567 Allow creating RawValues from references to unsized values
  • 18a88da Avoid evaluating $c more than once in overflow macro
  • 5d2cbcd Eliminate lib module
  • 31198f5 Switch to $(,)? in tri macro
  • 51df12e Unconditionally import from alloc
  • 95f67a0 Ignore return_self_not_must_use clippy lint
  • 296f718 Release 1.0.73
  • 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/Rigellute/spotify-tui/pull/933 **Author:** [@dependabot[bot]](https://github.com/apps/dependabot) **Created:** 1/1/2022 **Status:** ❌ Closed **Base:** `master` ← **Head:** `dependabot/cargo/serde_json-1.0.74` --- ### 📝 Commits (1) - [`565376b`](https://github.com/Rigellute/spotify-tui/commit/565376ba9da2dc8744eab5a4fd459f5196ef645e) Bump serde_json from 1.0.67 to 1.0.74 ### 📊 Changes **1 file changed** (+12 additions, -6 deletions) <details> <summary>View changed files</summary> 📝 `Cargo.lock` (+12 -6) </details> ### 📄 Description Bumps [serde_json](https://github.com/serde-rs/json) from 1.0.67 to 1.0.74. <details> <summary>Release notes</summary> <p><em>Sourced from <a href="https://github.com/serde-rs/json/releases">serde_json's releases</a>.</em></p> <blockquote> <h2>v1.0.74</h2> <ul> <li>Allow creating RawValues from references to unsized values (<a href="https://github-redirect.dependabot.com/serde-rs/json/issues/841">#841</a>, thanks <a href="https://github.com/EFanZh"><code>@​EFanZh</code></a>)</li> </ul> <h2>v1.0.73</h2> <ul> <li>Update <code>itoa</code> dependency to 1.0</li> </ul> <h2>v1.0.72</h2> <ul> <li>Interpret <code>\u</code>-encoded lone surrogates when deserializing into a byte string (<a href="https://github-redirect.dependabot.com/serde-rs/json/issues/828">#828</a>, <a href="https://github-redirect.dependabot.com/serde-rs/json/issues/829">#829</a>, thanks <a href="https://github.com/lucacasonato"><code>@​lucacasonato</code></a>)</li> </ul> <h2>v1.0.71</h2> <ul> <li>Add serde_json::Map::get_key_value (<a href="https://github-redirect.dependabot.com/serde-rs/json/issues/821">#821</a>, thanks <a href="https://github.com/timothee-haudebourg"><code>@​timothee-haudebourg</code></a>)</li> <li>Add impl From&lt;Box&lt;RawValue&gt;&gt; for Box&lt;str&gt; (<a href="https://github-redirect.dependabot.com/serde-rs/json/issues/824">#824</a>, thanks <a href="https://github.com/jplatte"><code>@​jplatte</code></a>)</li> </ul> <h2>v1.0.70</h2> <ul> <li>Add <code>serde_json::Map::retain</code> method (<a href="https://github-redirect.dependabot.com/serde-rs/json/issues/822">#822</a>, thanks <a href="https://github.com/deankarn"><code>@​deankarn</code></a>)</li> </ul> <h2>v1.0.69</h2> <ul> <li>Implement Hash for serde_json::Number (<a href="https://github-redirect.dependabot.com/serde-rs/json/issues/814">#814</a>, thanks <a href="https://github.com/timothee-haudebourg"><code>@​timothee-haudebourg</code></a>)</li> </ul> <h2>v1.0.68</h2> <ul> <li>Preserve negative sign of <code>-0</code> when deserializing to f32 or f64 (<a href="https://github-redirect.dependabot.com/serde-rs/json/issues/799">#799</a>, <a href="https://github-redirect.dependabot.com/serde-rs/json/issues/801">#801</a>)</li> </ul> </blockquote> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/serde-rs/json/commit/58d40de6ed22bf0c80bbe2443dd00f265281aa2d"><code>58d40de</code></a> Release 1.0.74</li> <li><a href="https://github.com/serde-rs/json/commit/ef7794f87f43d22fc74d1e38aa2cec1d6bcec12e"><code>ef7794f</code></a> Detect warnings in CI</li> <li><a href="https://github.com/serde-rs/json/commit/6de3d398efe4ed67e35796092387825201eb3c8c"><code>6de3d39</code></a> Merge pull request 841 from EFanZh/unsized-value-to-raw-value</li> <li><a href="https://github.com/serde-rs/json/commit/012f567a389c89d74f02ae14628968febef1d3da"><code>012f567</code></a> Allow creating <code>RawValue</code>s from references to unsized values</li> <li><a href="https://github.com/serde-rs/json/commit/18a88dad66e25d3cda4aa16d64a716e82ac3989d"><code>18a88da</code></a> Avoid evaluating $c more than once in overflow macro</li> <li><a href="https://github.com/serde-rs/json/commit/5d2cbcdd4b146e98b5aa2200de7a8ae6231bf0ba"><code>5d2cbcd</code></a> Eliminate lib module</li> <li><a href="https://github.com/serde-rs/json/commit/31198f589cff820750cf249a6b899f89dab514c0"><code>31198f5</code></a> Switch to $(,)? in tri macro</li> <li><a href="https://github.com/serde-rs/json/commit/51df12e0cdbcc193a41c682d8b3a0a6f44128ed8"><code>51df12e</code></a> Unconditionally import from alloc</li> <li><a href="https://github.com/serde-rs/json/commit/95f67a09399d546d9ecadeb747a845a77ff309b2"><code>95f67a0</code></a> Ignore return_self_not_must_use clippy lint</li> <li><a href="https://github.com/serde-rs/json/commit/296f718e18681c52909da99f24198133e58528b2"><code>296f718</code></a> Release 1.0.73</li> <li>Additional commits viewable in <a href="https://github.com/serde-rs/json/compare/v1.0.67...v1.0.74">compare view</a></li> </ul> </details> <br /> [![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=serde_json&package-manager=cargo&previous-version=1.0.67&new-version=1.0.74)](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>
kerem 2026-02-28 14:54:26 +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#1095
No description provided.