diff --git a/ChangeLog b/ChangeLog index 46488201..455f1ba9 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,16 @@ +* Version 2.0.28 + - Invalid server entries are now skipped instead of preventing a +source from being used. Thanks to Alison Winters for the contribution! + - Truncated responses are immediately retried over TCP instead of +waiting for the client to retry. This reduces the latency for large +responses. + - Responses sent to the local network are assumed to support at least +1252 bytes packets, and use optional information from EDNS up to 4096 +bytes. This also reduces latency. + - Logging improvements: servers are not logged for cached, synthetic +and cloaked responses. And the forwarder is logged instead of the +regular server for forwarded responses. + * Version 2.0.27 - The X25519 implementation was changed from using the Go standard implementation to using Cloudflare's CIRCL library. Unfortunately, diff --git a/dnscrypt-proxy/main.go b/dnscrypt-proxy/main.go index e0794b84..ce3f4e41 100644 --- a/dnscrypt-proxy/main.go +++ b/dnscrypt-proxy/main.go @@ -15,7 +15,7 @@ ) const ( - AppVersion = "2.0.27" + AppVersion = "2.0.28" DefaultConfigFileName = "dnscrypt-proxy.toml" )