This commit is contained in:
Frank Denis 2019-10-30 23:02:07 +01:00
parent 37c939480d
commit 899cd07239
2 changed files with 23 additions and 10 deletions

View File

@ -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

View File

@ -17,7 +17,7 @@ import (
)
const (
AppVersion = "2.0.29"
AppVersion = "2.0.30"
DefaultConfigFileName = "dnscrypt-proxy.toml"
)