[PR #1025] [MERGED] Bring over master updates for 0.19 #1882

Closed
opened 2026-03-16 02:52:36 +03:00 by kerem · 0 comments
Owner

📋 Pull Request Information

Original PR: https://github.com/hickory-dns/hickory-dns/pull/1025
Author: @bluejekyll
Created: 2/15/2020
Status: Merged
Merged: 2/15/2020
Merged by: @bluejekyll

Base: release/0.19Head: master


📝 Commits (10+)

  • 2724575 Bump bytes from 0.5.3 to 0.5.4
  • b25ab62 Remove unused futures default features (#1003)
  • a097967 clean up clippy warnings for Rust 1.41
  • 50a353a Make the field public to make creating a custom ResolverOpts easier from out of crate (#1009)
  • 0fc0ed7 Bump smallvec from 1.1.0 to 1.2.0
  • 0016274 Bump ring from 0.16.9 to 0.16.10
  • 184493d Bump regex from 1.3.3 to 1.3.4
  • 92d3256 Bump webpki from 0.21.0 to 0.21.2
  • 360233c Bump openssl from 0.10.26 to 0.10.27
  • 27118e5 Bump toml from 0.5.5 to 0.5.6

📊 Changes

21 files changed (+442 additions, -399 deletions)

View changed files

.github/workflows/publish.yml (+31 -0)
📝 .github/workflows/test.yml (+8 -5)
📝 CHANGELOG.md (+11 -2)
📝 Cargo.lock (+263 -269)
📝 Makefile.toml (+3 -1)
📝 bin/Cargo.toml (+13 -13)
📝 crates/client/Cargo.toml (+9 -8)
📝 crates/https/Cargo.toml (+9 -8)
📝 crates/native-tls/Cargo.toml (+4 -4)
📝 crates/openssl/Cargo.toml (+5 -5)
📝 crates/proto/Cargo.toml (+8 -7)
📝 crates/proto/src/rr/dnssec/digest_type.rs (+6 -6)
📝 crates/proto/src/rr/dnssec/rdata/mod.rs (+8 -8)
📝 crates/proto/src/rr/record_type.rs (+14 -14)
📝 crates/resolver/Cargo.toml (+13 -12)
📝 crates/resolver/src/config.rs (+3 -3)
📝 crates/rustls/Cargo.toml (+4 -4)
📝 crates/server/Cargo.toml (+11 -11)
📝 tests/compatibility-tests/Cargo.toml (+3 -3)
📝 tests/integration-tests/Cargo.toml (+12 -12)

...and 1 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/1025 **Author:** [@bluejekyll](https://github.com/bluejekyll) **Created:** 2/15/2020 **Status:** ✅ Merged **Merged:** 2/15/2020 **Merged by:** [@bluejekyll](https://github.com/bluejekyll) **Base:** `release/0.19` ← **Head:** `master` --- ### 📝 Commits (10+) - [`2724575`](https://github.com/hickory-dns/hickory-dns/commit/2724575aaf4d63cc9e79f0ec18546554d3221a13) Bump bytes from 0.5.3 to 0.5.4 - [`b25ab62`](https://github.com/hickory-dns/hickory-dns/commit/b25ab622afdd4c77b1c5e28fc1c8872ccb8738f5) Remove unused `futures` default features (#1003) - [`a097967`](https://github.com/hickory-dns/hickory-dns/commit/a097967f13b7c0eda366a26fbeac39c157697d60) clean up clippy warnings for Rust 1.41 - [`50a353a`](https://github.com/hickory-dns/hickory-dns/commit/50a353ad127557275ff350d6f1c302807d34bc1c) Make the field public to make creating a custom ResolverOpts easier from out of crate (#1009) - [`0fc0ed7`](https://github.com/hickory-dns/hickory-dns/commit/0fc0ed73212a65ccba15ea9a610a0ca72b3c0ad5) Bump smallvec from 1.1.0 to 1.2.0 - [`0016274`](https://github.com/hickory-dns/hickory-dns/commit/0016274b50b32bc9705aee89dc503ec30b5ebd32) Bump ring from 0.16.9 to 0.16.10 - [`184493d`](https://github.com/hickory-dns/hickory-dns/commit/184493db4c65a7e2fb01d03ae6a32742c52622aa) Bump regex from 1.3.3 to 1.3.4 - [`92d3256`](https://github.com/hickory-dns/hickory-dns/commit/92d325688be2eeeb14f2234e5dad2d9230a7fbe3) Bump webpki from 0.21.0 to 0.21.2 - [`360233c`](https://github.com/hickory-dns/hickory-dns/commit/360233c605c8c422e694acb19c702fa3a2869e66) Bump openssl from 0.10.26 to 0.10.27 - [`27118e5`](https://github.com/hickory-dns/hickory-dns/commit/27118e543b043a655e448315a673a5c2673a821e) Bump toml from 0.5.5 to 0.5.6 ### 📊 Changes **21 files changed** (+442 additions, -399 deletions) <details> <summary>View changed files</summary> ➕ `.github/workflows/publish.yml` (+31 -0) 📝 `.github/workflows/test.yml` (+8 -5) 📝 `CHANGELOG.md` (+11 -2) 📝 `Cargo.lock` (+263 -269) 📝 `Makefile.toml` (+3 -1) 📝 `bin/Cargo.toml` (+13 -13) 📝 `crates/client/Cargo.toml` (+9 -8) 📝 `crates/https/Cargo.toml` (+9 -8) 📝 `crates/native-tls/Cargo.toml` (+4 -4) 📝 `crates/openssl/Cargo.toml` (+5 -5) 📝 `crates/proto/Cargo.toml` (+8 -7) 📝 `crates/proto/src/rr/dnssec/digest_type.rs` (+6 -6) 📝 `crates/proto/src/rr/dnssec/rdata/mod.rs` (+8 -8) 📝 `crates/proto/src/rr/record_type.rs` (+14 -14) 📝 `crates/resolver/Cargo.toml` (+13 -12) 📝 `crates/resolver/src/config.rs` (+3 -3) 📝 `crates/rustls/Cargo.toml` (+4 -4) 📝 `crates/server/Cargo.toml` (+11 -11) 📝 `tests/compatibility-tests/Cargo.toml` (+3 -3) 📝 `tests/integration-tests/Cargo.toml` (+12 -12) _...and 1 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 02:52:36 +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#1882
No description provided.