From 85abbeac616114b293f888c6b49aded3adcea332 Mon Sep 17 00:00:00 2001 From: Frank Denis Date: Thu, 14 Mar 2019 20:21:26 +0100 Subject: [PATCH] Bump --- ChangeLog | 14 +++++++++----- dnscrypt-proxy/main.go | 2 +- go.mod | 1 + go.sum | 1 + 4 files changed, 12 insertions(+), 6 deletions(-) diff --git a/ChangeLog b/ChangeLog index 1b793545..556ba1ca 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,16 +1,20 @@ +* Version 2.0.21 + - The change to run the Windows service as `NT AUTHORITY\NetworkService` +has been reverted, as it was reported to break logging (Windows only). + * Version 2.0.20 - Startup is now *way* faster, especially when using DoH servers. - - A new action: "CLOAK" is logged when queries are being cloaked. + - A new action: `CLOAK` is logged when queries are being cloaked. - A cloaking rule can now map to multiple IPv4 and IPv6 addresses, with load-balancing. - - New option: "refused_code_in_responses" to return (or not) a -REFUSED code on blacklisted queries. This is disabled by default, in + - New option: `refused_code_in_responses` to return (or not) a +`REFUSED` code on blacklisted queries. This is disabled by default, in order to work around a bug in Android Pie. - Time-based restrictions are now properly handled in the generate-domains-blacklist.py script. - - Other improvements have been made to the generate-domains-blacklist.py + - Other improvements have been made to the `generate-domains-blacklist.py` script. - - The Windows service is now installed as "NT AUTHORITY\NetworkService". + - The Windows service is now installed as `NT AUTHORITY\NetworkService`. * Version 2.0.19 - The value for `netprobe_timeout` was read from the command-line, but diff --git a/dnscrypt-proxy/main.go b/dnscrypt-proxy/main.go index c053665b..9ce8c537 100644 --- a/dnscrypt-proxy/main.go +++ b/dnscrypt-proxy/main.go @@ -12,7 +12,7 @@ import ( ) const ( - AppVersion = "2.0.20" + AppVersion = "2.0.21" DefaultConfigFileName = "dnscrypt-proxy.toml" ) diff --git a/go.mod b/go.mod index 17cced89..3f7471b8 100644 --- a/go.mod +++ b/go.mod @@ -24,6 +24,7 @@ require ( github.com/k-sone/critbitgo v1.2.0 github.com/kardianos/service v1.0.0 github.com/kr/pretty v0.1.0 // indirect + github.com/kr/pty v1.1.3 // indirect github.com/miekg/dns v1.1.6 golang.org/x/crypto v0.0.0-20190313024323-a1f597ede03a golang.org/x/net v0.0.0-20190313220215-9f648a60d977 diff --git a/go.sum b/go.sum index ce9aeff0..7e037482 100644 --- a/go.sum +++ b/go.sum @@ -44,6 +44,7 @@ github.com/kardianos/service v1.0.0/go.mod h1:8CzDhVuCuugtsHyZoTvsOBuvonN/UDBvl0 github.com/kr/pretty v0.1.0 h1:L/CwN0zerZDmRFUapSPitk6f+Q3+0za1rQkzVuMiMFI= github.com/kr/pretty v0.1.0/go.mod h1:dAy3ld7l9f0ibDNOQOHHMYYIIbhfbHSm3C4ZsoJORNo= github.com/kr/pty v1.1.1/go.mod h1:pFQYn66WHrOpPYNljwOMqo10TkYh1fy3cYio2l3bCsQ= +github.com/kr/pty v1.1.3/go.mod h1:pFQYn66WHrOpPYNljwOMqo10TkYh1fy3cYio2l3bCsQ= github.com/kr/text v0.1.0 h1:45sCR5RtlFHMR4UwH9sdQ5TC8v0qDQCHnXt+kaKSTVE= github.com/kr/text v0.1.0/go.mod h1:4Jbv+DJW3UT/LiOwJeYQe1efqtUx/iVham/4vfdArNI= github.com/miekg/dns v1.1.6 h1:jVwb4GDwD65q/gtItR/lIZHjNH93QfeGxZUkzJcW9mc=