[PR #1061] Bump anyhow from 1.0.43 to 1.0.68 #1145

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

📋 Pull Request Information

Original PR: https://github.com/Rigellute/spotify-tui/pull/1061
Author: @dependabot[bot]
Created: 1/1/2023
Status: 🔄 Open

Base: masterHead: dependabot/cargo/anyhow-1.0.68


📝 Commits (1)

  • 2219e3c Bump anyhow from 1.0.43 to 1.0.68

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

Release notes

Sourced from anyhow's releases.

1.0.68

  • Opt out of -Zrustdoc-scrape-examples on docs.rs for now

1.0.67

  • Improve the backtrace captured when context() is used on an Option (#280)

1.0.66

  • Reduce unhelpful backtrace frames in backtraces captured during a context call (#279)

1.0.65

  • impl Provider for anyhow::Error

1.0.64

  • Correctly propagate Backtrace when using #[source] anyhow::Error with thiserror crate (#231)

1.0.63

1.0.62

  • Fix extra rebuilding when interleaving command-line cargo invocations with IDE builds (#261)

1.0.61

  • Work around rust-analyzer builds poisoning all subsequent command-line cargo builds (#252)

1.0.60

  • Propagate --target to rustc invocation when deciding about backtrace support (#249, thanks @​RalfJung)

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)

... (truncated)

Commits
  • 867763b Release 1.0.68
  • c0a87d0 Opt out -Zrustdoc-scrape-examples on docs.rs
  • 1cc707b Release 1.0.67
  • 613b261 Update build status badge
  • 0f922d7 Disable backtrace CI on Rust 1.50
  • acecd9b Update ui test suite to nightly-2022-12-15
  • 0bac51f Time out workflows after 45 minutes
  • 60e8800 Fix renamed let_underscore_drop lint
  • 8d1c734 Update ui test suite to nightly-2022-11-16
  • 451651b Update ui test suite to nightly-2022-11-11
  • 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/1061 **Author:** [@dependabot[bot]](https://github.com/apps/dependabot) **Created:** 1/1/2023 **Status:** 🔄 Open **Base:** `master` ← **Head:** `dependabot/cargo/anyhow-1.0.68` --- ### 📝 Commits (1) - [`2219e3c`](https://github.com/Rigellute/spotify-tui/commit/2219e3cfc03abb04216327574966163c3cdaebaa) Bump anyhow from 1.0.43 to 1.0.68 ### 📊 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.68. <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.68</h2> <ul> <li>Opt out of <code>-Zrustdoc-scrape-examples</code> on docs.rs for now</li> </ul> <h2>1.0.67</h2> <ul> <li>Improve the backtrace captured when <code>context()</code> is used on an <code>Option</code> (<a href="https://github-redirect.dependabot.com/dtolnay/anyhow/issues/280">#280</a>)</li> </ul> <h2>1.0.66</h2> <ul> <li>Reduce unhelpful backtrace frames in backtraces captured during a <code>context</code> call (<a href="https://github-redirect.dependabot.com/dtolnay/anyhow/issues/279">#279</a>)</li> </ul> <h2>1.0.65</h2> <ul> <li><!-- raw HTML omitted -->impl <!-- raw HTML omitted -->Provider<!-- raw HTML omitted --> for anyhow::Error<!-- raw HTML omitted --></li> </ul> <h2>1.0.64</h2> <ul> <li>Correctly propagate Backtrace when using <code>#[source] anyhow::Error</code> with <a href="https://github.com/dtolnay/thiserror">thiserror</a> crate (<a href="https://github-redirect.dependabot.com/dtolnay/anyhow/issues/231">#231</a>)</li> </ul> <h2>1.0.63</h2> <ul> <li>Expose backtraces via the new &quot;generic member access&quot; API on the Error trait (<a href="https://github-redirect.dependabot.com/rust-lang/rust/issues/99301">rust-lang/rust#99301</a>, <a href="https://github-redirect.dependabot.com/rust-lang/rust/issues/96024">rust-lang/rust#96024</a>)</li> </ul> <h2>1.0.62</h2> <ul> <li>Fix extra rebuilding when interleaving command-line <code>cargo</code> invocations with IDE builds (<a href="https://github-redirect.dependabot.com/dtolnay/anyhow/issues/261">#261</a>)</li> </ul> <h2>1.0.61</h2> <ul> <li>Work around rust-analyzer builds poisoning all subsequent command-line cargo builds (<a href="https://github-redirect.dependabot.com/dtolnay/anyhow/issues/252">#252</a>)</li> </ul> <h2>1.0.60</h2> <ul> <li>Propagate <code>--target</code> to rustc invocation when deciding about backtrace support (<a href="https://github-redirect.dependabot.com/dtolnay/anyhow/issues/249">#249</a>, thanks <a href="https://github.com/RalfJung"><code>@​RalfJung</code></a>)</li> </ul> <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> <!-- raw HTML omitted --> </blockquote> <p>... (truncated)</p> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/dtolnay/anyhow/commit/867763b8fce65656a754d8e0d84f0aa1c610613a"><code>867763b</code></a> Release 1.0.68</li> <li><a href="https://github.com/dtolnay/anyhow/commit/c0a87d0a1fca4625dd6fcfe3e722e24214fd840e"><code>c0a87d0</code></a> Opt out -Zrustdoc-scrape-examples on docs.rs</li> <li><a href="https://github.com/dtolnay/anyhow/commit/1cc707b6f89a2ea8eb827d0a3c3a61e2ea979366"><code>1cc707b</code></a> Release 1.0.67</li> <li><a href="https://github.com/dtolnay/anyhow/commit/613b26115c0e5e4f988ed6e5f0eace8f79b19704"><code>613b261</code></a> Update build status badge</li> <li><a href="https://github.com/dtolnay/anyhow/commit/0f922d7c51d43ce30421ea1225e06d971cf99bfc"><code>0f922d7</code></a> Disable backtrace CI on Rust 1.50</li> <li><a href="https://github.com/dtolnay/anyhow/commit/acecd9bd35184ed63ff00c970f1ab41b8418a902"><code>acecd9b</code></a> Update ui test suite to nightly-2022-12-15</li> <li><a href="https://github.com/dtolnay/anyhow/commit/0bac51f19bca58152f2310442e0aed549e54fbf7"><code>0bac51f</code></a> Time out workflows after 45 minutes</li> <li><a href="https://github.com/dtolnay/anyhow/commit/60e88002dcf7315487cbb2c724c66d2297c7bf46"><code>60e8800</code></a> Fix renamed let_underscore_drop lint</li> <li><a href="https://github.com/dtolnay/anyhow/commit/8d1c734b813d53669903914b79760a6668bacb6d"><code>8d1c734</code></a> Update ui test suite to nightly-2022-11-16</li> <li><a href="https://github.com/dtolnay/anyhow/commit/451651b2ba620721f68f13dc37821592630d7e45"><code>451651b</code></a> Update ui test suite to nightly-2022-11-11</li> <li>Additional commits viewable in <a href="https://github.com/dtolnay/anyhow/compare/1.0.43...1.0.68">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.68)](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>
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#1145
No description provided.