[PR #1244] [CLOSED] Bump thiserror from 1.0.20 to 1.0.21 #2124

Closed
opened 2026-03-16 06:06:15 +03:00 by kerem · 0 comments
Owner

📋 Pull Request Information

Original PR: https://github.com/hickory-dns/hickory-dns/pull/1244
Author: @dependabot-preview[bot]
Created: 10/12/2020
Status: Closed

Base: mainHead: dependabot/cargo/thiserror-1.0.21


📝 Commits (1)

  • 03f5048 Bump thiserror from 1.0.20 to 1.0.21

📊 Changes

6 files changed (+9 additions, -9 deletions)

View changed files

📝 Cargo.lock (+4 -4)
📝 crates/client/Cargo.toml (+1 -1)
📝 crates/https/Cargo.toml (+1 -1)
📝 crates/proto/Cargo.toml (+1 -1)
📝 crates/resolver/Cargo.toml (+1 -1)
📝 crates/server/Cargo.toml (+1 -1)

📄 Description

Bumps thiserror from 1.0.20 to 1.0.21.

Release notes

Sourced from thiserror's releases.

1.0.21

  • Support capturing backtraces inside of Arc from a From impl, which makes it possible for errors having backtraces to be clonable (#102)

    use std::backtrace::Backtrace;
    use std::sync::Arc;
    use thiserror::Error;
    

    #[derive(Error, Debug, Clone)] #[error("...")] pub struct ClonableErrorWithBacktrace { #[from] source: Inner, #[backtrace] backtrace: Arc<Backtrace>, }

Commits
  • f757a04 Release 1.0.21
  • 56a4fa6 Merge pull request #102 from dtolnay/arc-backtrace-from
  • c6dcc69 Generalize backtrace capture to From<Backtrace>
  • 256576e Add test of capturing Arc<Backtrace>
  • 1baf746 Merge pull request #101 from dtolnay/backtrace-from
  • f83eb46 Add test of capturing Backtrace/Option<Backtrace> in a From impl
  • bf947a2 Merge pull request #100 from dtolnay/arc-backtrace
  • bd459c8 Add test involving Arc<Backtrace>
  • 04b91d7 Change ui tests to work whether or not rust-src is installed
  • 663d835 Update ui tests to nightly-2020-09-05
  • 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)
  • @dependabot use these labels will set the current labels as the default for future PRs for this repo and language
  • @dependabot use these reviewers will set the current reviewers as the default for future PRs for this repo and language
  • @dependabot use these assignees will set the current assignees as the default for future PRs for this repo and language
  • @dependabot use this milestone will set the current milestone as the default for future PRs for this repo and language
  • @dependabot badge me will comment on this PR with code to add a "Dependabot enabled" badge to your readme

Additionally, you can set the following in your Dependabot dashboard:

  • Update frequency (including time of day and day of week)
  • Pull request limits (per update run and/or open at any time)
  • Automerge options (never/patch/minor, and dev/runtime dependencies)
  • Out-of-range updates (receive only lockfile updates, if desired)
  • Security updates (receive only security updates, if desired)

🔄 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/hickory-dns/hickory-dns/pull/1244 **Author:** [@dependabot-preview[bot]](https://github.com/apps/dependabot-preview) **Created:** 10/12/2020 **Status:** ❌ Closed **Base:** `main` ← **Head:** `dependabot/cargo/thiserror-1.0.21` --- ### 📝 Commits (1) - [`03f5048`](https://github.com/hickory-dns/hickory-dns/commit/03f50484db1880ab26765983da9a71393a815f88) Bump thiserror from 1.0.20 to 1.0.21 ### 📊 Changes **6 files changed** (+9 additions, -9 deletions) <details> <summary>View changed files</summary> 📝 `Cargo.lock` (+4 -4) 📝 `crates/client/Cargo.toml` (+1 -1) 📝 `crates/https/Cargo.toml` (+1 -1) 📝 `crates/proto/Cargo.toml` (+1 -1) 📝 `crates/resolver/Cargo.toml` (+1 -1) 📝 `crates/server/Cargo.toml` (+1 -1) </details> ### 📄 Description Bumps [thiserror](https://github.com/dtolnay/thiserror) from 1.0.20 to 1.0.21. <details> <summary>Release notes</summary> <p><em>Sourced from <a href="https://github.com/dtolnay/thiserror/releases">thiserror's releases</a>.</em></p> <blockquote> <h2>1.0.21</h2> <ul> <li> <p>Support capturing backtraces inside of Arc from a From impl, which makes it possible for errors having backtraces to be clonable (<a href="https://github-redirect.dependabot.com/dtolnay/thiserror/issues/102">#102</a>)</p> <pre lang="rust"><code>use std::backtrace::Backtrace; use std::sync::Arc; use thiserror::Error; <p>#[derive(Error, Debug, Clone)] #[error(&quot;...&quot;)] pub struct ClonableErrorWithBacktrace { #[from] source: Inner, #[backtrace] backtrace: Arc&lt;Backtrace&gt;, } </code></pre></p> </li> </ul> </blockquote> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/dtolnay/thiserror/commit/f757a0489b2cddfea15ab870b49f159ce1aa71cd"><code>f757a04</code></a> Release 1.0.21</li> <li><a href="https://github.com/dtolnay/thiserror/commit/56a4fa620b754c86d9b9a166df5ba2597fe68bae"><code>56a4fa6</code></a> Merge pull request <a href="https://github-redirect.dependabot.com/dtolnay/thiserror/issues/102">#102</a> from dtolnay/arc-backtrace-from</li> <li><a href="https://github.com/dtolnay/thiserror/commit/c6dcc694baa25b997c5864bc0f6ee618beccb381"><code>c6dcc69</code></a> Generalize backtrace capture to From&lt;Backtrace&gt;</li> <li><a href="https://github.com/dtolnay/thiserror/commit/256576e71825c1bb4805ae274d9d86dcbc2cae65"><code>256576e</code></a> Add test of capturing Arc&lt;Backtrace&gt;</li> <li><a href="https://github.com/dtolnay/thiserror/commit/1baf746f7da2278bccb29fb6b7066a8282b04160"><code>1baf746</code></a> Merge pull request <a href="https://github-redirect.dependabot.com/dtolnay/thiserror/issues/101">#101</a> from dtolnay/backtrace-from</li> <li><a href="https://github.com/dtolnay/thiserror/commit/f83eb4658618e25bc598e6c518f554ffff096c9f"><code>f83eb46</code></a> Add test of capturing Backtrace/Option&lt;Backtrace&gt; in a From impl</li> <li><a href="https://github.com/dtolnay/thiserror/commit/bf947a29459e42069823c279ba9711bb19879429"><code>bf947a2</code></a> Merge pull request <a href="https://github-redirect.dependabot.com/dtolnay/thiserror/issues/100">#100</a> from dtolnay/arc-backtrace</li> <li><a href="https://github.com/dtolnay/thiserror/commit/bd459c8cf3c53b16b77a8d5088e7fa0e91fdf18d"><code>bd459c8</code></a> Add test involving Arc&lt;Backtrace&gt;</li> <li><a href="https://github.com/dtolnay/thiserror/commit/04b91d76462834279a323b7771b48158aba19db4"><code>04b91d7</code></a> Change ui tests to work whether or not rust-src is installed</li> <li><a href="https://github.com/dtolnay/thiserror/commit/663d835689e1d0d8102926d7a53eaa697b4e8a3d"><code>663d835</code></a> Update ui tests to nightly-2020-09-05</li> <li>Additional commits viewable in <a href="https://github.com/dtolnay/thiserror/compare/1.0.20...1.0.21">compare view</a></li> </ul> </details> <br /> [![Dependabot compatibility score](https://api.dependabot.com/badges/compatibility_score?dependency-name=thiserror&package-manager=cargo&previous-version=1.0.20&new-version=1.0.21)](https://dependabot.com/compatibility-score/?dependency-name=thiserror&package-manager=cargo&previous-version=1.0.20&new-version=1.0.21) 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) - `@dependabot use these labels` will set the current labels as the default for future PRs for this repo and language - `@dependabot use these reviewers` will set the current reviewers as the default for future PRs for this repo and language - `@dependabot use these assignees` will set the current assignees as the default for future PRs for this repo and language - `@dependabot use this milestone` will set the current milestone as the default for future PRs for this repo and language - `@dependabot badge me` will comment on this PR with code to add a "Dependabot enabled" badge to your readme Additionally, you can set the following in your Dependabot [dashboard](https://app.dependabot.com): - Update frequency (including time of day and day of week) - Pull request limits (per update run and/or open at any time) - Automerge options (never/patch/minor, and dev/runtime dependencies) - Out-of-range updates (receive only lockfile updates, if desired) - Security updates (receive only security updates, if desired) </details> --- <sub>🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.</sub>
kerem 2026-03-16 06:06:15 +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/hickory-dns#2124
No description provided.