From aa538969a38494c46194a27ac031fac44f61b442 Mon Sep 17 00:00:00 2001 From: Frank Denis Date: Mon, 9 Apr 2018 13:27:02 +0200 Subject: [PATCH] New beta --- ChangeLog | 9 +++++++++ dnscrypt-proxy/main.go | 2 +- 2 files changed, 10 insertions(+), 1 deletion(-) diff --git a/ChangeLog b/ChangeLog index d2fd53cc..d1083e91 100644 --- a/ChangeLog +++ b/ChangeLog @@ -15,6 +15,15 @@ Android devices and Raspberry Pi. directory was when the service was installed, in order to later load configuration files with relative paths. - DoH: The "Cache-Control: max-age" header is now ignored. + - Patterns can now be prefixed with `=` to do exact matching: +`=example.com` matches `example.com` but will not match `www.example.com`. + - Patterns are now fully supported by the cloaking module. + - A new option was added to use a specific cipher suite instead of +the server's provided one. Using RSA+ChaChaPoly over ECDSA+AES-GCM has +shown to decrease CPU usage and latency when connecting to Cloudflare, +especially on Mips and ARM systems. + - The ephemeral keys mode of dnscrypt-proxy v1.x was reimplemented: this +creates a new unique key for every single query. * Version 2.0.8 - Multiple URLs can be defined for a source in order to improve diff --git a/dnscrypt-proxy/main.go b/dnscrypt-proxy/main.go index 0da3d9f9..8230ed0f 100644 --- a/dnscrypt-proxy/main.go +++ b/dnscrypt-proxy/main.go @@ -12,7 +12,7 @@ import ( ) const ( - AppVersion = "2.0.9b1" + AppVersion = "2.0.9b2" DefaultConfigFileName = "dnscrypt-proxy.toml" )