[PR #1007] [CLOSED] Bump anyhow from 1.0.43 to 1.0.59 #1126

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

📋 Pull Request Information

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

Base: masterHead: dependabot/cargo/anyhow-1.0.59


📝 Commits (1)

  • 4386598 Bump anyhow from 1.0.43 to 1.0.59

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

Release notes

Sourced from anyhow's releases.

1.0.59

  • Update crates.io metadata to include no-std category

1.0.58

  • Fix some broken links in documentation

1.0.57

  • Remove a log4rs-specific workaround from bail! macro implementation

1.0.56

  • Add must_use warning when an Error created by anyhow! is not used, perhaps because the programmer meant to write bail! instead (#229)

1.0.55

  • Documentation improvements

1.0.54

  • Construct more helpful error message from ensure! when the expression involves a negative literal const generic as the first generic argument of a method call (#224)

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`
    

... (truncated)

Commits
  • fb9fb18 Release 1.0.59
  • f58e803 Add no-std category to crates.io metadata
  • 8f268ac Sort package entries in Cargo.toml
  • c0e7854 Ignore assertions_on_result_states clippy lint
  • b594668 Update ui test suite to nightly-2022-07-28
  • 13e7a90 Revert "Disable backtrace test on miri"
  • 8d25d6b Disable backtrace test on miri
  • ffb25df Update ui test suite to nightly-2022-07-20
  • 38c883b Ignore explicit_auto_deref clippy lint
  • 9054599 Update ui test suite to nightly-2022-07-02
  • 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/1007 **Author:** [@dependabot[bot]](https://github.com/apps/dependabot) **Created:** 8/1/2022 **Status:** ❌ Closed **Base:** `master` ← **Head:** `dependabot/cargo/anyhow-1.0.59` --- ### 📝 Commits (1) - [`4386598`](https://github.com/Rigellute/spotify-tui/commit/43865982a9ae78794855e7b165dbd3cfd7e4f5d0) Bump anyhow from 1.0.43 to 1.0.59 ### 📊 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.59. <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.59</h2> <ul> <li>Update crates.io metadata to include <code>no-std</code> category</li> </ul> <h2>1.0.58</h2> <ul> <li>Fix some broken links in documentation</li> </ul> <h2>1.0.57</h2> <ul> <li>Remove a <code>log4rs</code>-specific workaround from <code>bail!</code> macro implementation</li> </ul> <h2>1.0.56</h2> <ul> <li>Add <code>must_use</code> warning when an Error created by <code>anyhow!</code> is not used, perhaps because the programmer meant to write <code>bail!</code> instead (<a href="https://github-redirect.dependabot.com/dtolnay/anyhow/issues/229">#229</a>)</li> </ul> <h2>1.0.55</h2> <ul> <li>Documentation improvements</li> </ul> <h2>1.0.54</h2> <ul> <li>Construct more helpful error message from <code>ensure!</code> when the expression involves a negative literal const generic as the first generic argument of a method call (<a href="https://github-redirect.dependabot.com/dtolnay/anyhow/issues/224">#224</a>)</li> </ul> <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` </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/fb9fb18436c9394830211abaa8060be45fcdf65c"><code>fb9fb18</code></a> Release 1.0.59</li> <li><a href="https://github.com/dtolnay/anyhow/commit/f58e803c49d81f75b88f45364d2ded671eb5e2ca"><code>f58e803</code></a> Add no-std category to crates.io metadata</li> <li><a href="https://github.com/dtolnay/anyhow/commit/8f268ac7b14d6f6901a7b21494fb2961327fbcdc"><code>8f268ac</code></a> Sort package entries in Cargo.toml</li> <li><a href="https://github.com/dtolnay/anyhow/commit/c0e78544a68353edfb417f3a6e58d127e4348ac7"><code>c0e7854</code></a> Ignore assertions_on_result_states clippy lint</li> <li><a href="https://github.com/dtolnay/anyhow/commit/b5946687724afb6d24ba55fc5e8ad79e824b5d83"><code>b594668</code></a> Update ui test suite to nightly-2022-07-28</li> <li><a href="https://github.com/dtolnay/anyhow/commit/13e7a901517873e8122605fa729bb0aea54c06e9"><code>13e7a90</code></a> Revert &quot;Disable backtrace test on miri&quot;</li> <li><a href="https://github.com/dtolnay/anyhow/commit/8d25d6b2c9bb04c9f0d222ed6b900f696c0e7ebe"><code>8d25d6b</code></a> Disable backtrace test on miri</li> <li><a href="https://github.com/dtolnay/anyhow/commit/ffb25df68acb80ddf195f5e3a91eeb0b66e2b014"><code>ffb25df</code></a> Update ui test suite to nightly-2022-07-20</li> <li><a href="https://github.com/dtolnay/anyhow/commit/38c883ba1fbab64f5017ec5a06055973d2021ea2"><code>38c883b</code></a> Ignore explicit_auto_deref clippy lint</li> <li><a href="https://github.com/dtolnay/anyhow/commit/90545992d8408dcd08a7942096641187985af2ad"><code>9054599</code></a> Update ui test suite to nightly-2022-07-02</li> <li>Additional commits viewable in <a href="https://github.com/dtolnay/anyhow/compare/1.0.43...1.0.59">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.59)](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:33 +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#1126
No description provided.