File tree 2 files changed +10
-1
lines changed
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.
15
15
directory was when the service was installed, in order to later load
16
16
configuration files with relative paths.
17
17
- 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.
18
27
19
28
* Version 2.0.8
20
29
- 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 (
12
12
)
13
13
14
14
const (
15
- AppVersion = "2.0.9b1 "
15
+ AppVersion = "2.0.9b2 "
16
16
DefaultConfigFileName = "dnscrypt-proxy.toml"
17
17
)
18
18
You can’t perform that action at this time.
0 commit comments