Skip to content

Commit aa53896

Browse files
committed
New beta
1 parent 44880f9 commit aa53896

File tree

2 files changed

+10
-1
lines changed

2 files changed

+10
-1
lines changed

ChangeLog

+9
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,15 @@ Android devices and Raspberry Pi.
1515
directory was when the service was installed, in order to later load
1616
configuration 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

dnscrypt-proxy/main.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ import (
1212
)
1313

1414
const (
15-
AppVersion = "2.0.9b1"
15+
AppVersion = "2.0.9b2"
1616
DefaultConfigFileName = "dnscrypt-proxy.toml"
1717
)
1818

0 commit comments

Comments
 (0)