diff --git a/CHANGELOG.md b/CHANGELOG.md index 964a587ed..28c7d3b3d 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -25,6 +25,7 @@ The following emojis are used to highlight certain changes: ### Fixed - `gateway` Fix redirect URLs for subdirectories with characters that need escaping. [#779](https://github.com/ipfs/boxo/pull/779) +- `gateway` The default DNSLink resolver for `.crypto` TLD changed to `https://resolver.unstoppable.io/dns-query` [#782](https://github.com/ipfs/boxo/pull/782) ### Security diff --git a/gateway/dns.go b/gateway/dns.go index b49ce3be6..d69328547 100644 --- a/gateway/dns.go +++ b/gateway/dns.go @@ -11,7 +11,7 @@ import ( var defaultResolvers = map[string]string{ "eth.": "https://dns.eth.limo/dns-query", - "crypto.": "https://resolver.cloudflare-eth.com/dns-query", + "crypto.": "https://resolver.unstoppable.io/dns-query", } func newResolver(url string, opts ...doh.Option) (madns.BasicResolver, error) {