From 548a439528f925d7b2bc02ab7a2b618132cd2276 Mon Sep 17 00:00:00 2001 From: Frank Denis Date: Mon, 9 Dec 2019 20:56:59 +0100 Subject: [PATCH] Bump --- ChangeLog | 10 ++++++++++ dnscrypt-proxy/main.go | 2 +- 2 files changed, 11 insertions(+), 1 deletion(-) diff --git a/ChangeLog b/ChangeLog index a5f1883c..103e1329 100644 --- a/ChangeLog +++ b/ChangeLog @@ -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. diff --git a/dnscrypt-proxy/main.go b/dnscrypt-proxy/main.go index 33141b06..3ee02d6d 100644 --- a/dnscrypt-proxy/main.go +++ b/dnscrypt-proxy/main.go @@ -15,7 +15,7 @@ import ( ) const ( - AppVersion = "2.0.34" + AppVersion = "2.0.35" DefaultConfigFileName = "dnscrypt-proxy.toml" )