diff --git a/Changelog.md b/Changelog.md index 7cee07c..903305c 100644 --- a/Changelog.md +++ b/Changelog.md @@ -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 diff --git a/doh-client/version.go b/doh-client/version.go index a7e1fdb..355119e 100644 --- a/doh-client/version.go +++ b/doh-client/version.go @@ -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)" ) diff --git a/doh-server/version.go b/doh-server/version.go index a7e1fdb..355119e 100644 --- a/doh-server/version.go +++ b/doh-server/version.go @@ -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)" )