This commit is contained in:
Frank Denis 2019-12-09 20:56:59 +01:00
parent a635e92606
commit 548a439528
2 changed files with 11 additions and 1 deletions

View File

@ -1,3 +1,13 @@
* Version 2.0.35
- New option: `block_unqualified` to block `A`/`AAAA` queries to block
unqualified host names. These will very rarely get an answer from upstream
resolvers, but can leak private information to these, as well as to root
servers.
- When a `CNAME` pointer is blocked, the original query name is now logged
along with the pointer. This makes it easier to know what the original
query name, so it can be whitelisted, or what the pointer was, so it
can be removed from the blacklist.
* Version 2.0.34
- Blacklisted names are now also blocked if they appear in `CNAME`
pointers.

View File

@ -15,7 +15,7 @@ import (
)
const (
AppVersion = "2.0.34"
AppVersion = "2.0.35"
DefaultConfigFileName = "dnscrypt-proxy.toml"
)