[PR #932] [CLOSED] Bump anyhow from 1.0.43 to 1.0.52 #1092

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/932
Author: @dependabot[bot]
Created: 1/1/2022
Status: Closed

Base: masterHead: dependabot/cargo/anyhow-1.0.52


📝 Commits (1)

  • eebb550 Bump anyhow from 1.0.43 to 1.0.52

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

Release notes

Sourced from anyhow's releases.

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
  • f871e2f Release 1.0.52
  • 94e2089 Change test suite atomic from SeqCst to Relaxed
  • 42badfd Merge pull request #213 from dtolnay/fixme
  • 5498d85 Annotate expressions that are rendered poorly by core::stringify
  • 6e17bdb Merge pull request #212 from dtolnay/relaxed
  • 6b3630c Change Backtrace::enabled atomic from SeqCst to Relaxed
  • a3f7160 Ignore return_self_not_must_use clippy lint
  • 4d2586b Track raw pointers in miri CI run
  • d40fd32 Merge pull request #211 from dtolnay/ensuretest
  • 2a72017 Update ensure tests to nightly-2021-12-10
  • 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/932 **Author:** [@dependabot[bot]](https://github.com/apps/dependabot) **Created:** 1/1/2022 **Status:** ❌ Closed **Base:** `master` ← **Head:** `dependabot/cargo/anyhow-1.0.52` --- ### 📝 Commits (1) - [`eebb550`](https://github.com/Rigellute/spotify-tui/commit/eebb5507eb42bfa83efd421a98146edaeb011c29) Bump anyhow from 1.0.43 to 1.0.52 ### 📊 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.52. <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.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 = ...; let error = anyhow!(&quot;interpolate {var}&quot;); // equivalent to anyhow!(&quot;interpolate {var}&quot;, var=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/f871e2fefcd10dab7b88af2fc27e2f7e0cfa1990"><code>f871e2f</code></a> Release 1.0.52</li> <li><a href="https://github.com/dtolnay/anyhow/commit/94e20899ab392e90f09cfec038119899af6bbc56"><code>94e2089</code></a> Change test suite atomic from SeqCst to Relaxed</li> <li><a href="https://github.com/dtolnay/anyhow/commit/42badfdcbdb1a707bb599f29445da79dfce8d174"><code>42badfd</code></a> Merge pull request <a href="https://github-redirect.dependabot.com/dtolnay/anyhow/issues/213">#213</a> from dtolnay/fixme</li> <li><a href="https://github.com/dtolnay/anyhow/commit/5498d859758e89e8eef2a7bf73d08d898de06546"><code>5498d85</code></a> Annotate expressions that are rendered poorly by core::stringify</li> <li><a href="https://github.com/dtolnay/anyhow/commit/6e17bdbf2eae2784af73ccbe31a52d41c52c7c27"><code>6e17bdb</code></a> Merge pull request <a href="https://github-redirect.dependabot.com/dtolnay/anyhow/issues/212">#212</a> from dtolnay/relaxed</li> <li><a href="https://github.com/dtolnay/anyhow/commit/6b3630c0e7ab9fa6525387c77f97f889dd58138c"><code>6b3630c</code></a> Change Backtrace::enabled atomic from SeqCst to Relaxed</li> <li><a href="https://github.com/dtolnay/anyhow/commit/a3f7160ce86f72a346c8c48b1b8851d3e49a9e0d"><code>a3f7160</code></a> Ignore return_self_not_must_use clippy lint</li> <li><a href="https://github.com/dtolnay/anyhow/commit/4d2586b20fe7ce9e730125c2248c98d06deeacc5"><code>4d2586b</code></a> Track raw pointers in miri CI run</li> <li><a href="https://github.com/dtolnay/anyhow/commit/d40fd3217e13f0321d57a4a102383311c6a5d56e"><code>d40fd32</code></a> Merge pull request <a href="https://github-redirect.dependabot.com/dtolnay/anyhow/issues/211">#211</a> from dtolnay/ensuretest</li> <li><a href="https://github.com/dtolnay/anyhow/commit/2a7201779dfbdde000728f470dd9c771aa905242"><code>2a72017</code></a> Update ensure tests to nightly-2021-12-10</li> <li>Additional commits viewable in <a href="https://github.com/dtolnay/anyhow/compare/1.0.43...1.0.52">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.52)](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#1092
No description provided.