File tree Expand file tree Collapse file tree 2 files changed +10
-1
lines changed
Expand file tree Collapse file tree 2 files changed +10
-1
lines changed Original file line number Diff line number Diff line change @@ -15,6 +15,15 @@ Android devices and Raspberry Pi.
1515directory was when the service was installed, in order to later load
1616configuration files with relative paths.
1717 - DoH: The "Cache-Control: max-age" header is now ignored.
18+ - Patterns can now be prefixed with `=` to do exact matching:
19+ `=example.com` matches `example.com` but will not match `www.example.com`.
20+ - Patterns are now fully supported by the cloaking module.
21+ - A new option was added to use a specific cipher suite instead of
22+ the server's provided one. Using RSA+ChaChaPoly over ECDSA+AES-GCM has
23+ shown to decrease CPU usage and latency when connecting to Cloudflare,
24+ especially on Mips and ARM systems.
25+ - The ephemeral keys mode of dnscrypt-proxy v1.x was reimplemented: this
26+ creates a new unique key for every single query.
1827
1928* Version 2.0.8
2029 - Multiple URLs can be defined for a source in order to improve
Original file line number Diff line number Diff line change @@ -12,7 +12,7 @@ import (
1212)
1313
1414const (
15- AppVersion = "2.0.9b1 "
15+ AppVersion = "2.0.9b2 "
1616 DefaultConfigFileName = "dnscrypt-proxy.toml"
1717)
1818
You can’t perform that action at this time.
0 commit comments