Release 1.4.1

This commit is contained in:
Star Brilliant
2018-11-10 22:59:04 +08:00
parent 7c7b7d969d
commit 3affb2c227
3 changed files with 14 additions and 2 deletions

View File

@@ -4,6 +4,18 @@ This Changelog records major changes between versions.
Not all changes are recorded. Please check git log for details.
## Version 1.4.1
- Add a configuration option: `debug_http_headers` (e.g. Add `CF-Ray` to diagnose CloudFlare's resolver)
- Add a configuration option: `passrthrough`
- macOS logger is rebuilt with static libswiftCore
- Fix a segfault when `no_cookies=true`
- Fix HTTP stream leaking problem, which may cause massive half-open connections if HTTP/1 is in use
- Utilize Go's cancelable context to detect timeouts more reliably.
- Fix interoperation problems with gDNS
- CORS is enabled by default in doh-server
- Documentation updates
## Version 1.3.10
- Enable application/dns-message (draft-13) by default, since Google has finally supported it

View File

@@ -24,6 +24,6 @@
package main
const (
VERSION = "1.3.11"
VERSION = "1.4.1"
USER_AGENT = "DNS-over-HTTPS/" + VERSION + " (+https://github.com/m13253/dns-over-https)"
)

View File

@@ -24,6 +24,6 @@
package main
const (
VERSION = "1.3.11"
VERSION = "1.4.1"
USER_AGENT = "DNS-over-HTTPS/" + VERSION + " (+https://github.com/m13253/dns-over-https)"
)