This commit is contained in:
Frank Denis 2019-03-14 20:21:26 +01:00
parent 8076e206e0
commit 85abbeac61
4 changed files with 12 additions and 6 deletions

View File

@ -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

View File

@ -12,7 +12,7 @@ import (
)
const (
AppVersion = "2.0.20"
AppVersion = "2.0.21"
DefaultConfigFileName = "dnscrypt-proxy.toml"
)

1
go.mod
View File

@ -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

1
go.sum
View File

@ -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=