[PR #2662] [CLOSED] chore(deps): update idna to 1.0.3 for 0.24 version #3214

Closed
opened 2026-03-16 11:31:26 +03:00 by kerem · 0 comments
Owner

📋 Pull Request Information

Original PR: https://github.com/hickory-dns/hickory-dns/pull/2662
Author: @DDtKey
Created: 12/9/2024
Status: Closed

Base: release/0.24Head: release-0.24/update-idna


📝 Commits (9)

  • 632093b chore(deps): patch idna to 1.0.3
  • 04f1cbe fix: update ip of example.com
  • 8b951ae fix: update ip of example.com
  • bbfcb1b style: apply clippy suggestions
  • eacbfc4 Fix up certificate generation scripts
  • a2a61a3 Regenerate test certificates
  • 49b164a bump MSRV to 1.71.1
  • 7152111 chore: specify 1.0.3 version of idna in Cargo.toml
  • e93d046 ci: update MSRV in github action too

📊 Changes

90 files changed (+793 additions, -543 deletions)

View changed files

📝 .github/workflows/test.yml (+1 -1)
📝 Cargo.lock (+278 -29)
📝 Cargo.toml (+3 -3)
📝 README.md (+3 -3)
📝 bin/README.md (+1 -1)
📝 bin/tests/named_tests.rs (+2 -2)
📝 bin/tests/server_harness/mod.rs (+6 -6)
📝 crates/async-std-resolver/README.md (+3 -3)
📝 crates/async-std-resolver/src/lib.rs (+2 -2)
📝 crates/client/README.md (+2 -2)
📝 crates/client/src/client/async_client.rs (+2 -2)
📝 crates/client/src/client/async_secure_client.rs (+1 -5)
📝 crates/client/src/lib.rs (+2 -2)
📝 crates/client/src/rr/zone.rs (+1 -1)
📝 crates/proto/README.md (+1 -1)
📝 crates/proto/src/h2/h2_client_stream.rs (+6 -6)
📝 crates/proto/src/h3/h3_client_stream.rs (+6 -6)
📝 crates/proto/src/multicast/mdns_stream.rs (+1 -1)
📝 crates/proto/src/op/edns.rs (+1 -1)
📝 crates/proto/src/op/message.rs (+5 -5)

...and 70 more files

📄 Description

Closes #2661

This PR updates idna to 1.0.3 for existing 0.24 version.
Thus, it can be released as a patch version to solve the issue instead of forcing people to use alpha channel of 0.25.


🔄 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/2662 **Author:** [@DDtKey](https://github.com/DDtKey) **Created:** 12/9/2024 **Status:** ❌ Closed **Base:** `release/0.24` ← **Head:** `release-0.24/update-idna` --- ### 📝 Commits (9) - [`632093b`](https://github.com/hickory-dns/hickory-dns/commit/632093bea60acd907801aac65276706aa97b5c02) chore(deps): patch idna to 1.0.3 - [`04f1cbe`](https://github.com/hickory-dns/hickory-dns/commit/04f1cbe5fe7ca3828da04e155f799d6772793f52) fix: update ip of `example.com` - [`8b951ae`](https://github.com/hickory-dns/hickory-dns/commit/8b951ae8c99a18b92203d3b9f023e20ee74f4b78) fix: update ip of `example.com` - [`bbfcb1b`](https://github.com/hickory-dns/hickory-dns/commit/bbfcb1b9aff8eafac59e857878beef914d5bebc3) style: apply clippy suggestions - [`eacbfc4`](https://github.com/hickory-dns/hickory-dns/commit/eacbfc4e72c4e08f0a6f8b6eb1aad221c8db2489) Fix up certificate generation scripts - [`a2a61a3`](https://github.com/hickory-dns/hickory-dns/commit/a2a61a359c009a3a0c18d043e297242c0561c642) Regenerate test certificates - [`49b164a`](https://github.com/hickory-dns/hickory-dns/commit/49b164a612b65fae03b43c2e9a4e08d6a7f2ad2c) bump MSRV to 1.71.1 - [`7152111`](https://github.com/hickory-dns/hickory-dns/commit/7152111ce29fa76300e6cff56d7735ef4fcaa7a4) chore: specify 1.0.3 version of idna in Cargo.toml - [`e93d046`](https://github.com/hickory-dns/hickory-dns/commit/e93d046d0abf3dbd3768b30edd1502f41d42603e) ci: update MSRV in github action too ### 📊 Changes **90 files changed** (+793 additions, -543 deletions) <details> <summary>View changed files</summary> 📝 `.github/workflows/test.yml` (+1 -1) 📝 `Cargo.lock` (+278 -29) 📝 `Cargo.toml` (+3 -3) 📝 `README.md` (+3 -3) 📝 `bin/README.md` (+1 -1) 📝 `bin/tests/named_tests.rs` (+2 -2) 📝 `bin/tests/server_harness/mod.rs` (+6 -6) 📝 `crates/async-std-resolver/README.md` (+3 -3) 📝 `crates/async-std-resolver/src/lib.rs` (+2 -2) 📝 `crates/client/README.md` (+2 -2) 📝 `crates/client/src/client/async_client.rs` (+2 -2) 📝 `crates/client/src/client/async_secure_client.rs` (+1 -5) 📝 `crates/client/src/lib.rs` (+2 -2) 📝 `crates/client/src/rr/zone.rs` (+1 -1) 📝 `crates/proto/README.md` (+1 -1) 📝 `crates/proto/src/h2/h2_client_stream.rs` (+6 -6) 📝 `crates/proto/src/h3/h3_client_stream.rs` (+6 -6) 📝 `crates/proto/src/multicast/mdns_stream.rs` (+1 -1) 📝 `crates/proto/src/op/edns.rs` (+1 -1) 📝 `crates/proto/src/op/message.rs` (+5 -5) _...and 70 more files_ </details> ### 📄 Description Closes #2661 This PR updates `idna` to `1.0.3` for existing `0.24` version. Thus, it can be released as a patch version to solve the issue instead of forcing people to use `alpha` channel of `0.25`. --- <sub>🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.</sub>
kerem 2026-03-16 11:31: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/hickory-dns#3214
No description provided.