[PR #1278] [CLOSED] Bump thiserror from 1.0.21 to 1.0.22 #2157

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

📋 Pull Request Information

Original PR: https://github.com/hickory-dns/hickory-dns/pull/1278
Author: @dependabot-preview[bot]
Created: 11/9/2020
Status: Closed

Base: mainHead: dependabot/cargo/thiserror-1.0.22


📝 Commits (1)

  • ffc4753 Bump thiserror from 1.0.21 to 1.0.22

📊 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.21 to 1.0.22.

Release notes

Sourced from thiserror's releases.

1.0.22

  • Fix raw identifier fields in format arguments (#108, thanks @ninevra)

    #[derive(Error, Debug)]
    #[error("raw identifier: {r#type}")]
    pub struct Error {
        r#type: i32,
    }
    
  • Fix Rust keyword named format arguments (#109)

    #[derive(Error, Debug)]
    #[error("keyword: {type}", type = 1)]
    pub struct Error;
    
Commits
  • 09f247a Release 1.0.22
  • 53bb2fb Merge pull request #109 from dtolnay/keyword
  • aafcf0a Fix second place that keyword fmt argument is failing
  • 2722f8e Fix first place that keyword fmt argument is failing
  • 25c73d7 Add test of keyword fmt argument
  • 7a9066f Condense raw identifier unit tests
  • 334fed3 Briefer naming convention for raw identifier format vars
  • dbbd0f8 Consolidate ident lex and conversion to Ident
  • 227ef7d Replace use of str::strip_prefix
  • 7014b69 Merge pull request #108 from ninevra/raw-idents
  • 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/1278 **Author:** [@dependabot-preview[bot]](https://github.com/apps/dependabot-preview) **Created:** 11/9/2020 **Status:** ❌ Closed **Base:** `main` ← **Head:** `dependabot/cargo/thiserror-1.0.22` --- ### 📝 Commits (1) - [`ffc4753`](https://github.com/hickory-dns/hickory-dns/commit/ffc47534d222c508143c1c7a8baf11ce7672fdd1) Bump thiserror from 1.0.21 to 1.0.22 ### 📊 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.21 to 1.0.22. <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.22</h2> <ul> <li> <p>Fix raw identifier fields in format arguments (<a href="https://github-redirect.dependabot.com/dtolnay/thiserror/issues/108">#108</a>, thanks <a href="https://github.com/ninevra">@ninevra</a>)</p> <pre lang="rust"><code>#[derive(Error, Debug)] #[error(&quot;raw identifier: {r#type}&quot;)] pub struct Error { r#type: i32, } </code></pre> </li> <li> <p>Fix Rust keyword named format arguments (<a href="https://github-redirect.dependabot.com/dtolnay/thiserror/issues/109">#109</a>)</p> <pre lang="rust"><code>#[derive(Error, Debug)] #[error(&quot;keyword: {type}&quot;, type = 1)] pub struct Error; </code></pre> </li> </ul> </blockquote> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/dtolnay/thiserror/commit/09f247addaf6c5f57353f9558ba131e6619390c7"><code>09f247a</code></a> Release 1.0.22</li> <li><a href="https://github.com/dtolnay/thiserror/commit/53bb2fbf981b4bba914fc07af9c69589bfcb302e"><code>53bb2fb</code></a> Merge pull request <a href="https://github-redirect.dependabot.com/dtolnay/thiserror/issues/109">#109</a> from dtolnay/keyword</li> <li><a href="https://github.com/dtolnay/thiserror/commit/aafcf0a1b6946b407740fce08c783db5a96cdb20"><code>aafcf0a</code></a> Fix second place that keyword fmt argument is failing</li> <li><a href="https://github.com/dtolnay/thiserror/commit/2722f8e2c3b98c76902da3d10aa7938b9cc6168d"><code>2722f8e</code></a> Fix first place that keyword fmt argument is failing</li> <li><a href="https://github.com/dtolnay/thiserror/commit/25c73d7cdf8029dedfa366b40e5a67f978fbba5b"><code>25c73d7</code></a> Add test of keyword fmt argument</li> <li><a href="https://github.com/dtolnay/thiserror/commit/7a9066f000717f83ced74556d7f3f26b4892f033"><code>7a9066f</code></a> Condense raw identifier unit tests</li> <li><a href="https://github.com/dtolnay/thiserror/commit/334fed3a7443b9a03c9fc97cfce9d0a161bb3615"><code>334fed3</code></a> Briefer naming convention for raw identifier format vars</li> <li><a href="https://github.com/dtolnay/thiserror/commit/dbbd0f816c7c39ff2286f179067816bf19bc1390"><code>dbbd0f8</code></a> Consolidate ident lex and conversion to Ident</li> <li><a href="https://github.com/dtolnay/thiserror/commit/227ef7df7617e7034c4d9cf81b21fbe4744c3210"><code>227ef7d</code></a> Replace use of str::strip_prefix</li> <li><a href="https://github.com/dtolnay/thiserror/commit/7014b69e1a49e3e95db8bdd722c0c5484c46ab99"><code>7014b69</code></a> Merge pull request <a href="https://github-redirect.dependabot.com/dtolnay/thiserror/issues/108">#108</a> from ninevra/raw-idents</li> <li>Additional commits viewable in <a href="https://github.com/dtolnay/thiserror/compare/1.0.21...1.0.22">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.21&new-version=1.0.22)](https://dependabot.com/compatibility-score/?dependency-name=thiserror&package-manager=cargo&previous-version=1.0.21&new-version=1.0.22) 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:39:58 +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#2157
No description provided.