mirror of
https://github.com/hickory-dns/hickory-dns.git
synced 2026-04-25 03:05:51 +03:00
[PR #2366] [MERGED] Explicitly limit H2 support to rustls #2985
Labels
No labels
blocked
breaking-change
bug
bug:critical
bug:tests
cleanup
compliance
compliance
compliance
crate:all
crate:client
crate:native-tls
crate:proto
crate:recursor
crate:resolver
crate:resolver
crate:rustls
crate:server
crate:util
dependencies
docs
duplicate
easy
easy
enhance
enhance
enhance
feature:dns-over-https
feature:dns-over-quic
feature:dns-over-tls
feature:dnsssec
feature:global_lb
feature:mdns
feature:tsig
features:edns
has workaround
ops
perf
platform:WASM
platform:android
platform:fuchsia
platform:linux
platform:macos
platform:windows
pull-request
question
test
tools
tools
trust
unclear
wontfix
No milestone
No project
No assignees
1 participant
Notifications
Due date
No due date set.
Dependencies
No dependencies set.
Reference
starred/hickory-dns#2985
Loading…
Add table
Add a link
Reference in a new issue
No description provided.
Delete branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
📋 Pull Request Information
Original PR: https://github.com/hickory-dns/hickory-dns/pull/2366
Author: @djc
Created: 8/20/2024
Status: ✅ Merged
Merged: 8/20/2024
Merged by: @djc
Base:
main← Head:https-rustls📝 Commits (1)
952523bExplicitly limit H2 support to rustls📊 Changes
21 files changed (+51 additions, -74 deletions)
View changed files
📝
bin/Cargo.toml(+0 -4)📝
bin/src/hickory-dns.rs(+5 -5)📝
bin/tests/named_https_tests.rs(+1 -1)📝
bin/tests/server_harness/mod.rs(+1 -1)📝
crates/client/Cargo.toml(+0 -4)📝
crates/client/src/lib.rs(+3 -3)📝
crates/proto/Cargo.toml(+1 -2)📝
crates/proto/src/http/error.rs(+2 -2)📝
crates/proto/src/http/mod.rs(+2 -2)📝
crates/proto/src/http/request.rs(+2 -2)📝
crates/proto/src/lib.rs(+4 -4)📝
crates/recursor/Cargo.toml(+0 -2)📝
crates/resolver/Cargo.toml(+0 -2)📝
crates/resolver/src/config.rs(+20 -20)📝
crates/resolver/src/lib.rs(+1 -1)📝
crates/resolver/src/name_server/connection_provider.rs(+4 -4)📝
crates/server/Cargo.toml(+2 -4)📝
crates/server/src/server/mod.rs(+1 -1)📝
tests/integration-tests/Cargo.toml(+0 -2)📝
util/Cargo.toml(+0 -6)...and 1 more files
📄 Description
Although the Cargo features have suggested that H2 support was available ever since the seeming introduction of DoH (in #541, I think?), it looks like the H2 implementation consistently depends on rustls. Make this explicit by removing the
dns-over-httpsfeatures from all crates in favor of only supportingdns-over-https-rustls.Fixes #2365.
🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.