[PR #919] [CLOSED] Bump anyhow from 1.0.43 to 1.0.51 #1089

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

📋 Pull Request Information

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

Base: masterHead: dependabot/cargo/anyhow-1.0.51


📝 Commits (1)

  • 11400a1 Bump anyhow from 1.0.43 to 1.0.51

📊 Changes

2 files changed (+3 additions, -3 deletions)

View changed files

📝 Cargo.lock (+2 -2)
📝 Cargo.toml (+1 -1)

📄 Description

Bumps anyhow from 1.0.43 to 1.0.51.

Release notes

Sourced from anyhow's releases.

1.0.51

  • Show doc for Ok fn

1.0.50

1.0.49

  • Add a function anyhow::Ok(v) equivalent to Ok::<_, anyhow::Error>(v) (#192)

1.0.48

  • Include a Debug rendering of lhs and rhs in ensure! messages (#193, #194, #195, #196, #197, #198)

    Example:

    ensure!(flags.len() <= 40);
    
    ensure!(kind == Kind::File);
    

    Before:

    Condition failed: `flags.len() <= 40`
    Condition failed: `kind == Kind::File`
    

    After:

    Condition failed: `flags.len() <= 40` (99 vs 40)
    Condition failed: `kind == Kind::File` (Symlink vs File)
    

1.0.47

  • Fixes for implicit format args support

1.0.46

  • Support for implicit format args to match println and other std macros (https://rust-lang.github.io/rfcs/2795-format-args-implicit-identifiers.html)

    let var = ...;
    let error = anyhow!("interpolate {var}");  // equivalent to anyhow!("interpolate {var}", var=var)
    
  • Detect missing fmt arguments at compile time: anyhow!("{} not found") (#55)

  • Reduce occurrence of "future cannot be shared between threads safely" in async code using anyhow macros (#186)

... (truncated)

Commits

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/919 **Author:** [@dependabot[bot]](https://github.com/apps/dependabot) **Created:** 12/1/2021 **Status:** ❌ Closed **Base:** `master` ← **Head:** `dependabot/cargo/anyhow-1.0.51` --- ### 📝 Commits (1) - [`11400a1`](https://github.com/Rigellute/spotify-tui/commit/11400a1316596960d1c2318d8970a0dd1413f69c) Bump anyhow from 1.0.43 to 1.0.51 ### 📊 Changes **2 files changed** (+3 additions, -3 deletions) <details> <summary>View changed files</summary> 📝 `Cargo.lock` (+2 -2) 📝 `Cargo.toml` (+1 -1) </details> ### 📄 Description Bumps [anyhow](https://github.com/dtolnay/anyhow) from 1.0.43 to 1.0.51. <details> <summary>Release notes</summary> <p><em>Sourced from <a href="https://github.com/dtolnay/anyhow/releases">anyhow's releases</a>.</em></p> <blockquote> <h2>1.0.51</h2> <ul> <li>Show doc for <code>Ok</code> fn</li> </ul> <h2>1.0.50</h2> <ul> <li>Recognize more types of expressions in <code>ensure!</code> macro (<a href="https://github-redirect.dependabot.com/dtolnay/anyhow/issues/199">#199</a>, <a href="https://github-redirect.dependabot.com/dtolnay/anyhow/issues/200">#200</a>, <a href="https://github-redirect.dependabot.com/dtolnay/anyhow/issues/202">#202</a>, <a href="https://github-redirect.dependabot.com/dtolnay/anyhow/issues/203">#203</a>, <a href="https://github-redirect.dependabot.com/dtolnay/anyhow/issues/204">#204</a>, <a href="https://github-redirect.dependabot.com/dtolnay/anyhow/issues/205">#205</a>, <a href="https://github-redirect.dependabot.com/dtolnay/anyhow/issues/206">#206</a>)</li> </ul> <h2>1.0.49</h2> <ul> <li>Add a function <code>anyhow::Ok(v)</code> equivalent to <code>Ok::&lt;_, anyhow::Error&gt;(v)</code> (<a href="https://github-redirect.dependabot.com/dtolnay/anyhow/issues/192">#192</a>)</li> </ul> <h2>1.0.48</h2> <ul> <li> <p>Include a <code>Debug</code> rendering of lhs and rhs in <code>ensure!</code> messages (<a href="https://github-redirect.dependabot.com/dtolnay/anyhow/issues/193">#193</a>, <a href="https://github-redirect.dependabot.com/dtolnay/anyhow/issues/194">#194</a>, <a href="https://github-redirect.dependabot.com/dtolnay/anyhow/issues/195">#195</a>, <a href="https://github-redirect.dependabot.com/dtolnay/anyhow/issues/196">#196</a>, <a href="https://github-redirect.dependabot.com/dtolnay/anyhow/issues/197">#197</a>, <a href="https://github-redirect.dependabot.com/dtolnay/anyhow/issues/198">#198</a>)</p> <h3>Example:</h3> <pre lang="rust"><code>ensure!(flags.len() &lt;= 40); </code></pre> <pre lang="rust"><code>ensure!(kind == Kind::File); </code></pre> <p>Before:</p> <pre lang="console"><code>Condition failed: `flags.len() &lt;= 40` Condition failed: `kind == Kind::File` </code></pre> <p>After:</p> <pre lang="console"><code>Condition failed: `flags.len() &lt;= 40` (99 vs 40) Condition failed: `kind == Kind::File` (Symlink vs File) </code></pre> </li> </ul> <h2>1.0.47</h2> <ul> <li>Fixes for implicit format args support</li> </ul> <h2>1.0.46</h2> <ul> <li> <p>Support for implicit format args to match println and other std macros (<a href="https://rust-lang.github.io/rfcs/2795-format-args-implicit-identifiers.html">https://rust-lang.github.io/rfcs/2795-format-args-implicit-identifiers.html</a>)</p> <pre lang="rust"><code>let var = ...; let error = anyhow!(&quot;interpolate {var}&quot;); // equivalent to anyhow!(&quot;interpolate {var}&quot;, var=var) </code></pre> </li> <li> <p>Detect missing fmt arguments at compile time: <code>anyhow!(&quot;{} not found&quot;)</code> (<a href="https://github-redirect.dependabot.com/dtolnay/anyhow/issues/55">#55</a>)</p> </li> <li> <p>Reduce occurrence of &quot;future cannot be shared between threads safely&quot; in async code using anyhow macros (<a href="https://github-redirect.dependabot.com/dtolnay/anyhow/issues/186">#186</a>)</p> </li> </ul> <!-- raw HTML omitted --> </blockquote> <p>... (truncated)</p> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/dtolnay/anyhow/commit/871be23b2c3351157445c8f657917461ab33e6d7"><code>871be23</code></a> Release 1.0.51</li> <li><a href="https://github.com/dtolnay/anyhow/commit/97cff686efc05eba6720bd378e5262bb3dd51b6c"><code>97cff68</code></a> Show doc for Ok fn</li> <li><a href="https://github.com/dtolnay/anyhow/commit/7f5c9c4ea76f2fc4a3afee065cdeed6635ee5b94"><code>7f5c9c4</code></a> Release 1.0.50</li> <li><a href="https://github.com/dtolnay/anyhow/commit/865de15ab24ee59fd78080710f52b2b03ff8a096"><code>865de15</code></a> Merge pull request <a href="https://github-redirect.dependabot.com/dtolnay/anyhow/issues/206">#206</a> from dtolnay/pat</li> <li><a href="https://github.com/dtolnay/anyhow/commit/da5c3fdeda1550676d879a8b59df4095b17f0a68"><code>da5c3fd</code></a> Add pattern tests</li> <li><a href="https://github.com/dtolnay/anyhow/commit/e1dcc490d2ece65e130181d78c2c813a066d23b1"><code>e1dcc49</code></a> Pattern parser to preserve all spans in <code>if let</code> and <code>for</code></li> <li><a href="https://github.com/dtolnay/anyhow/commit/b577cd997fc20fd29bfdff1bc17a9469a142bd05"><code>b577cd9</code></a> Refer to concat and stringify macros by absolute path</li> <li><a href="https://github.com/dtolnay/anyhow/commit/68d1f4c989275d6fd3d824a88be9a0cd54cc1f0c"><code>68d1f4c</code></a> Merge pull request <a href="https://github-redirect.dependabot.com/dtolnay/anyhow/issues/205">#205</a> from dtolnay/traitobject</li> <li><a href="https://github.com/dtolnay/anyhow/commit/04732a7cf3be706f9a4bcaf40cc4f47dd0821d9c"><code>04732a7</code></a> Parse trait object types</li> <li><a href="https://github.com/dtolnay/anyhow/commit/11d3eb702d9e609046c5c8e9465b2c1c75100586"><code>11d3eb7</code></a> Merge pull request <a href="https://github-redirect.dependabot.com/dtolnay/anyhow/issues/204">#204</a> from dtolnay/assoc</li> <li>Additional commits viewable in <a href="https://github.com/dtolnay/anyhow/compare/1.0.43...1.0.51">compare view</a></li> </ul> </details> <br /> [![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=anyhow&package-manager=cargo&previous-version=1.0.43&new-version=1.0.51)](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:25 +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#1089
No description provided.