[PR #2713] [CLOSED] Test logs #3264

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

📋 Pull Request Information

Original PR: https://github.com/hickory-dns/hickory-dns/pull/2713
Author: @Hasan6979
Created: 1/10/2025
Status: Closed

Base: release/0.24Head: test_logs


📝 Commits (10+)

  • 887bba2 Patch for libtelio
  • c87d453 [LLT-4202] Make lookup return error in case of failure on forward
  • f3583ef Merge pull request #2 from NordSecurity/LLT-4202-return-error-if-forward-fails
  • 35c13f8 Update idna to 1.0.0
  • 0b8cb51 Update time from 0.3.29 to 0.3.37
  • 2d905c7 Fix test with new(er?) google IP address
  • c873797 Cargo clippy fixes applied
  • 45f7aef Add rust-toolchain with 1.77.2 version in it
  • d76f1bd Update rustls to fix RUSTSEC-2024-0336
  • fad98f2 Update openssl to fix RUSTSEC-2024-0357

📊 Changes

88 files changed (+1129 additions, -686 deletions)

View changed files

📝 .cargo/audit.toml (+1 -1)
📝 .github/workflows/test.yml (+25 -23)
📝 Cargo.lock (+536 -135)
📝 Cargo.toml (+1 -1)
📝 bin/src/hickory-dns.rs (+9 -9)
📝 bin/tests/named_tests.rs (+2 -2)
📝 bin/tests/server_harness/mod.rs (+2 -2)
📝 crates/async-std-resolver/src/lib.rs (+1 -1)
📝 crates/client/src/client/async_client.rs (+7 -4)
📝 crates/client/src/lib.rs (+2 -2)
📝 crates/proto/src/h2/h2_client_stream.rs (+9 -9)
📝 crates/proto/src/h3/h3_client_stream.rs (+6 -6)
📝 crates/proto/src/op/message.rs (+2 -2)
📝 crates/proto/src/quic/quic_client_stream.rs (+1 -1)
📝 crates/proto/src/rr/dnssec/rdata/dnskey.rs (+1 -1)
📝 crates/proto/src/rr/dnssec/rdata/key.rs (+1 -1)
📝 crates/proto/src/rr/dnssec/signer.rs (+1 -1)
📝 crates/proto/src/rr/dnssec/supported_algorithm.rs (+2 -2)
📝 crates/proto/src/rr/domain/label.rs (+2 -0)
📝 crates/proto/src/rr/rdata/opt.rs (+2 -2)

...and 68 more files

📄 Description

No description provided


🔄 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/2713 **Author:** [@Hasan6979](https://github.com/Hasan6979) **Created:** 1/10/2025 **Status:** ❌ Closed **Base:** `release/0.24` ← **Head:** `test_logs` --- ### 📝 Commits (10+) - [`887bba2`](https://github.com/hickory-dns/hickory-dns/commit/887bba2af977666d45b78e8b644238892da8df67) Patch for libtelio - [`c87d453`](https://github.com/hickory-dns/hickory-dns/commit/c87d453365a806bf4e02fea47528931b8718f2e8) [LLT-4202] Make lookup return error in case of failure on forward - [`f3583ef`](https://github.com/hickory-dns/hickory-dns/commit/f3583ef082b448e808a492d034a2e30cda53dcdb) Merge pull request #2 from NordSecurity/LLT-4202-return-error-if-forward-fails - [`35c13f8`](https://github.com/hickory-dns/hickory-dns/commit/35c13f8986b30eddf54ad2d48512ed39fdd06bb8) Update idna to 1.0.0 - [`0b8cb51`](https://github.com/hickory-dns/hickory-dns/commit/0b8cb517a874eb9f0494ccec72b1fa0148b38f8f) Update time from 0.3.29 to 0.3.37 - [`2d905c7`](https://github.com/hickory-dns/hickory-dns/commit/2d905c7a37fa209af323a2828300fda0a6cf2164) Fix test with new(er?) google IP address - [`c873797`](https://github.com/hickory-dns/hickory-dns/commit/c873797c59f5bb3366ec2dc999279a50f93b63fb) Cargo clippy fixes applied - [`45f7aef`](https://github.com/hickory-dns/hickory-dns/commit/45f7aef5acd3def016595c7c62dc32eb612dc372) Add rust-toolchain with 1.77.2 version in it - [`d76f1bd`](https://github.com/hickory-dns/hickory-dns/commit/d76f1bd539ba3184e9268d0e775bba0edb2fbab1) Update rustls to fix RUSTSEC-2024-0336 - [`fad98f2`](https://github.com/hickory-dns/hickory-dns/commit/fad98f29516b3038dcbdfb26713931c2dc87974b) Update openssl to fix RUSTSEC-2024-0357 ### 📊 Changes **88 files changed** (+1129 additions, -686 deletions) <details> <summary>View changed files</summary> 📝 `.cargo/audit.toml` (+1 -1) 📝 `.github/workflows/test.yml` (+25 -23) 📝 `Cargo.lock` (+536 -135) 📝 `Cargo.toml` (+1 -1) 📝 `bin/src/hickory-dns.rs` (+9 -9) 📝 `bin/tests/named_tests.rs` (+2 -2) 📝 `bin/tests/server_harness/mod.rs` (+2 -2) 📝 `crates/async-std-resolver/src/lib.rs` (+1 -1) 📝 `crates/client/src/client/async_client.rs` (+7 -4) 📝 `crates/client/src/lib.rs` (+2 -2) 📝 `crates/proto/src/h2/h2_client_stream.rs` (+9 -9) 📝 `crates/proto/src/h3/h3_client_stream.rs` (+6 -6) 📝 `crates/proto/src/op/message.rs` (+2 -2) 📝 `crates/proto/src/quic/quic_client_stream.rs` (+1 -1) 📝 `crates/proto/src/rr/dnssec/rdata/dnskey.rs` (+1 -1) 📝 `crates/proto/src/rr/dnssec/rdata/key.rs` (+1 -1) 📝 `crates/proto/src/rr/dnssec/signer.rs` (+1 -1) 📝 `crates/proto/src/rr/dnssec/supported_algorithm.rs` (+2 -2) 📝 `crates/proto/src/rr/domain/label.rs` (+2 -0) 📝 `crates/proto/src/rr/rdata/opt.rs` (+2 -2) _...and 68 more files_ </details> ### 📄 Description _No description provided_ --- <sub>🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.</sub>
kerem 2026-03-16 11:34:08 +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#3264
No description provided.