[PR #225] [MERGED] Bump serde_json from 1.0.41 to 1.0.45 #680

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

📋 Pull Request Information

Original PR: https://github.com/Rigellute/spotify-tui/pull/225
Author: @dependabot-preview[bot]
Created: 1/27/2020
Status: Merged
Merged: 1/27/2020
Merged by: @Rigellute

Base: masterHead: dependabot/cargo/serde_json-1.0.45


📝 Commits (1)

  • 4e3ceab Bump serde_json from 1.0.41 to 1.0.45

📊 Changes

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

View changed files

📝 Cargo.lock (+6 -6)

📄 Description

Bumps serde_json from 1.0.41 to 1.0.45.

Release notes

Sourced from serde_json's releases.

v1.0.45

  • Add no-std support (#606, thanks @Xanewok)

    [dependencies]
    serde_json = { version = "1.0.45", default-features = false, features = ["alloc"] }
    

v1.0.44

  • Implement IntoDeserializer for serde_json::Value to allow deserializing from types like HashMap<String, Value> (#591)

v1.0.43

  • Declare accurate minimum required version of indexmap crate when preserve-order feature is enabled (#590, thanks @nlordell)

v1.0.42

  • Add impl From<()> for Value which produces Value::Null (#585, thanks @Nilix007)
Commits
  • a39bcad Release 1.0.45
  • af4e6a1 Copy no-std note to rustdoc
  • dca5037 Tweak no-std wording to show Cargo.toml snippet
  • 67dfe59 Switch rustfmt skip to tool attribute
  • 41c3ab7 Merge pull request #609 from Xanewok/patch-1
  • b855996 Correct no-std support in README.md
  • 4bcc362 Adopt dyn syntax for trait objects
  • 50faa3c Adopt inclusive range syntax
  • 17824dc Remove error variants that are never constructed
  • 7cf0156 Switch to tool attrs
  • 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 use these labels will set the current labels as the default for future PRs for this repo and language
  • @dependabot use these reviewers will set the current reviewers as the default for future PRs for this repo and language
  • @dependabot use these assignees will set the current assignees as the default for future PRs for this repo and language
  • @dependabot use this milestone will set the current milestone as the default for future PRs for this repo and language
  • @dependabot badge me will comment on this PR with code to add a "Dependabot enabled" badge to your readme

Additionally, you can set the following in your Dependabot dashboard:

  • Update frequency (including time of day and day of week)
  • Pull request limits (per update run and/or open at any time)
  • Out-of-range updates (receive only lockfile updates, if desired)
  • Security updates (receive only security updates, if desired)

🔄 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/225 **Author:** [@dependabot-preview[bot]](https://github.com/apps/dependabot-preview) **Created:** 1/27/2020 **Status:** ✅ Merged **Merged:** 1/27/2020 **Merged by:** [@Rigellute](https://github.com/Rigellute) **Base:** `master` ← **Head:** `dependabot/cargo/serde_json-1.0.45` --- ### 📝 Commits (1) - [`4e3ceab`](https://github.com/Rigellute/spotify-tui/commit/4e3ceabe8ca6d1b25c9a1ef73d61bbb9dbd897b5) Bump serde_json from 1.0.41 to 1.0.45 ### 📊 Changes **1 file changed** (+6 additions, -6 deletions) <details> <summary>View changed files</summary> 📝 `Cargo.lock` (+6 -6) </details> ### 📄 Description Bumps [serde_json](https://github.com/serde-rs/json) from 1.0.41 to 1.0.45. <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.45</h2> <ul> <li> <p>Add no-std support (<a href="https://github-redirect.dependabot.com/serde-rs/json/issues/606">#606</a>, thanks <a href="https://github.com/Xanewok">@Xanewok</a>)</p> <pre lang="toml"><code>[dependencies] serde_json = { version = &quot;1.0.45&quot;, default-features = false, features = [&quot;alloc&quot;] } </code></pre> </li> </ul> <h2>v1.0.44</h2> <ul> <li>Implement IntoDeserializer for serde_json::Value to allow deserializing from types like <code>HashMap&lt;String, Value&gt;</code> (<a href="https://github-redirect.dependabot.com/serde-rs/json/issues/591">#591</a>)</li> </ul> <h2>v1.0.43</h2> <ul> <li>Declare accurate minimum required version of indexmap crate when preserve-order feature is enabled (<a href="https://github-redirect.dependabot.com/serde-rs/json/issues/590">#590</a>, thanks <a href="https://github.com/nlordell">@nlordell</a>)</li> </ul> <h2>v1.0.42</h2> <ul> <li>Add <code>impl From&lt;()&gt; for Value</code> which produces Value::Null (<a href="https://github-redirect.dependabot.com/serde-rs/json/issues/585">#585</a>, thanks <a href="https://github.com/Nilix007">@Nilix007</a>)</li> </ul> </blockquote> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/serde-rs/json/commit/a39bcade70cc4e7d2f2f957fa738d3dc54b5338c"><code>a39bcad</code></a> Release 1.0.45</li> <li><a href="https://github.com/serde-rs/json/commit/af4e6a1e912da4ec0672d586ef8252a738c1a618"><code>af4e6a1</code></a> Copy no-std note to rustdoc</li> <li><a href="https://github.com/serde-rs/json/commit/dca5037ee6a6555175be18d8572b5a23045a2d0f"><code>dca5037</code></a> Tweak no-std wording to show Cargo.toml snippet</li> <li><a href="https://github.com/serde-rs/json/commit/67dfe5951bc9d0bbab48ec6ba2d14939a9034a3b"><code>67dfe59</code></a> Switch rustfmt skip to tool attribute</li> <li><a href="https://github.com/serde-rs/json/commit/41c3ab7e4a38f324f07123553287a66b9de39240"><code>41c3ab7</code></a> Merge pull request <a href="https://github-redirect.dependabot.com/serde-rs/json/issues/609">#609</a> from Xanewok/patch-1</li> <li><a href="https://github.com/serde-rs/json/commit/b85599609625afa5325db292e2315f4de85a2b18"><code>b855996</code></a> Correct no-std support in README.md</li> <li><a href="https://github.com/serde-rs/json/commit/4bcc3625c34b4f9b6c76013b8a5afcaed5a1f1da"><code>4bcc362</code></a> Adopt dyn syntax for trait objects</li> <li><a href="https://github.com/serde-rs/json/commit/50faa3c000f56c5815cef0e0dbb2e7eb86242111"><code>50faa3c</code></a> Adopt inclusive range syntax</li> <li><a href="https://github.com/serde-rs/json/commit/17824dc1ea0f1aab024b33c6ecc33f9a1db41040"><code>17824dc</code></a> Remove error variants that are never constructed</li> <li><a href="https://github.com/serde-rs/json/commit/7cf0156d4710e1e152bec13a21b35c6424ae5e95"><code>7cf0156</code></a> Switch to tool attrs</li> <li>Additional commits viewable in <a href="https://github.com/serde-rs/json/compare/v1.0.41...v1.0.45">compare view</a></li> </ul> </details> <br /> [![Dependabot compatibility score](https://api.dependabot.com/badges/compatibility_score?dependency-name=serde_json&package-manager=cargo&previous-version=1.0.41&new-version=1.0.45)](https://dependabot.com/compatibility-score.html?dependency-name=serde_json&package-manager=cargo&previous-version=1.0.41&new-version=1.0.45) 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) - `@dependabot use these labels` will set the current labels as the default for future PRs for this repo and language - `@dependabot use these reviewers` will set the current reviewers as the default for future PRs for this repo and language - `@dependabot use these assignees` will set the current assignees as the default for future PRs for this repo and language - `@dependabot use this milestone` will set the current milestone as the default for future PRs for this repo and language - `@dependabot badge me` will comment on this PR with code to add a "Dependabot enabled" badge to your readme Additionally, you can set the following in your Dependabot [dashboard](https://app.dependabot.com): - Update frequency (including time of day and day of week) - Pull request limits (per update run and/or open at any time) - Out-of-range updates (receive only lockfile updates, if desired) - Security updates (receive only security updates, if desired) </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:50:27 +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#680
No description provided.