[PR #943] [CLOSED] Bump anyhow from 1.0.43 to 1.0.53 #1098

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

📋 Pull Request Information

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

Base: masterHead: dependabot/cargo/anyhow-1.0.53


📝 Commits (1)

  • dc7e9e8 Bump anyhow from 1.0.43 to 1.0.53

📊 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.53.

Release notes

Sourced from anyhow's releases.

1.0.53

1.0.52

  • Reduce overhead of backtrace capture in the case that backtraces are not enabled (#212)

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

... (truncated)

Commits
  • 7290028 Release 1.0.53
  • 4e73a15 Merge pull request #217 from dtolnay/ensuretest
  • dc087bc Update ensure tests to nightly-2022-01-04
  • 6b9978c Merge pull request #216 from dtolnay/ensuretest
  • 703182a Update ensure tests to nightly-2022-01-02
  • 2342773 Ignore irrefutable_let_patterns lint in test suite
  • bae6962 Detect warnings in CI
  • 2c2568a Merge pull request #215 from dtolnay/ensuretest
  • 8b029fc Update ensure tests to nightly-2021-12-30
  • f871e2f Release 1.0.52
  • 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/943 **Author:** [@dependabot[bot]](https://github.com/apps/dependabot) **Created:** 2/1/2022 **Status:** ❌ Closed **Base:** `master` ← **Head:** `dependabot/cargo/anyhow-1.0.53` --- ### 📝 Commits (1) - [`dc7e9e8`](https://github.com/Rigellute/spotify-tui/commit/dc7e9e89e34d8407c7b8e0e94b4af0bad14eb578) Bump anyhow from 1.0.43 to 1.0.53 ### 📊 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.53. <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.53</h2> <ul> <li>Retrigger docs.rs build to work around rustdoc regression (<a href="https://github-redirect.dependabot.com/rust-lang/rust/issues/92331">rust-lang/rust#92331</a>)</li> </ul> <h2>1.0.52</h2> <ul> <li>Reduce overhead of backtrace capture in the case that backtraces are not enabled (<a href="https://github-redirect.dependabot.com/dtolnay/anyhow/issues/212">#212</a>)</li> </ul> <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 = ...; </code></pre> </li> </ul> <!-- raw HTML omitted --> </blockquote> <p>... (truncated)</p> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/dtolnay/anyhow/commit/729002834c66ae9e943fce4e026e292f41ed3c75"><code>7290028</code></a> Release 1.0.53</li> <li><a href="https://github.com/dtolnay/anyhow/commit/4e73a1588177cc5ebca972c15f3541e13d8f783f"><code>4e73a15</code></a> Merge pull request <a href="https://github-redirect.dependabot.com/dtolnay/anyhow/issues/217">#217</a> from dtolnay/ensuretest</li> <li><a href="https://github.com/dtolnay/anyhow/commit/dc087bceb302a1b580933509373674fc887e3862"><code>dc087bc</code></a> Update ensure tests to nightly-2022-01-04</li> <li><a href="https://github.com/dtolnay/anyhow/commit/6b9978cf2a2955efa375c24a61b20be6791f49ab"><code>6b9978c</code></a> Merge pull request <a href="https://github-redirect.dependabot.com/dtolnay/anyhow/issues/216">#216</a> from dtolnay/ensuretest</li> <li><a href="https://github.com/dtolnay/anyhow/commit/703182a68a12a0a8c9662654929302ad2e9aecc9"><code>703182a</code></a> Update ensure tests to nightly-2022-01-02</li> <li><a href="https://github.com/dtolnay/anyhow/commit/2342773e007f6838b9e4a85313b2c8691bb84864"><code>2342773</code></a> Ignore irrefutable_let_patterns lint in test suite</li> <li><a href="https://github.com/dtolnay/anyhow/commit/bae6962ea25ac6356d109622f4a9f0e0d761cf41"><code>bae6962</code></a> Detect warnings in CI</li> <li><a href="https://github.com/dtolnay/anyhow/commit/2c2568a47849a78fdf061aefc0a9365f053d1a8f"><code>2c2568a</code></a> Merge pull request <a href="https://github-redirect.dependabot.com/dtolnay/anyhow/issues/215">#215</a> from dtolnay/ensuretest</li> <li><a href="https://github.com/dtolnay/anyhow/commit/8b029fc149ae2fd39709c88d66e88b4ecb16e9a7"><code>8b029fc</code></a> Update ensure tests to nightly-2021-12-30</li> <li><a href="https://github.com/dtolnay/anyhow/commit/f871e2fefcd10dab7b88af2fc27e2f7e0cfa1990"><code>f871e2f</code></a> Release 1.0.52</li> <li>Additional commits viewable in <a href="https://github.com/dtolnay/anyhow/compare/1.0.43...1.0.53">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.53)](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: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#1098
No description provided.