diff --git a/ChangeLog b/ChangeLog index f13fbe3e..a6ff5787 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,13 +1,26 @@ +* Version 2.0.30 + - This version fixes a startup issue introduced in version 2.0.29, +on systems for which the service cannot be automatically installed +(such as OpenBSD and FreeBSD). Reported by @5ch17 and Vinícius Zavam, +and fixed by Will Elwood, thanks! + * Version 2.0.29 - - Support for Anonymized DNSCrypt has been added. - - Latency with large responses has actually been reduced. - - DNSCrypt certificates can now be retrieved over Tor, proxies, and - DNS relays. - - Improved server error reporting (thanks to Alison Winters) - - Quite a lot of internal improvements and bug fixes have been made, - thanks to Markus Linnala. - - Support for systemd watchdog has been added (thanks, Markus!) - - Logging was improved. + - Support for Anonymized DNS has been added! + - Wait before stopping, fixing an issue with Unbound (thanks to +Vladimir Bauer) + - DNS stamps are now included in the -list-all -json ouptut + - The netprobe_timeout setting from the configuration file or +command-line was ignored. This has been fixed. + - The TTL or cloaked entries can now be adjusted (thanks to Markus +Linnala) + - Cached IP address from DoH servers now expire (thanks to Markus +Linnala) + - DNSCrypt certificates can be fetched over Tor and SOCKS proxies + - Retries over TCP are faster + - Improved logging (thanks to Alison Winters) + - Ignore non-TXT records in certificate responses (thanks to Vladimir +Bauer) + - A lot of internal cleanups, thanks to Markus Linnala. * Version 2.0.28 - Invalid server entries are now skipped instead of preventing a diff --git a/dnscrypt-proxy/main.go b/dnscrypt-proxy/main.go index 3ea0e5d8..f1402449 100644 --- a/dnscrypt-proxy/main.go +++ b/dnscrypt-proxy/main.go @@ -17,7 +17,7 @@ import ( ) const ( - AppVersion = "2.0.29" + AppVersion = "2.0.30" DefaultConfigFileName = "dnscrypt-proxy.toml" )