1
0
mirror of https://github.com/DNSCrypt/dnscrypt-proxy.git synced 2024-12-28 00:20:13 +01:00
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 * Version 2.0.29
- Support for Anonymized DNSCrypt has been added. - Support for Anonymized DNS has been added!
- Latency with large responses has actually been reduced. - Wait before stopping, fixing an issue with Unbound (thanks to
- DNSCrypt certificates can now be retrieved over Tor, proxies, and Vladimir Bauer)
DNS relays. - DNS stamps are now included in the -list-all -json ouptut
- Improved server error reporting (thanks to Alison Winters) - The netprobe_timeout setting from the configuration file or
- Quite a lot of internal improvements and bug fixes have been made, command-line was ignored. This has been fixed.
thanks to Markus Linnala. - The TTL or cloaked entries can now be adjusted (thanks to Markus
- Support for systemd watchdog has been added (thanks, Markus!) Linnala)
- Logging was improved. - 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 * Version 2.0.28
- Invalid server entries are now skipped instead of preventing a - Invalid server entries are now skipped instead of preventing a

View File

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