DNS privacy is no laughing matter; that’s why we took this update of AdGuard DNS Client extremely seriously. Without fooling around, we’ve updated Go version to shore up potential vulnerabilities, fixed a few bugs, and — no joke — improved the stability of the app.
See also the v0.0.3 GitHub milestone.
Security
- Go version has been updated to prevent the possibility of exploiting the Go vulnerabilities fixed in Go 1.24.1.
Changed
Configuration changes
In this release, the schema version has changed from 1 to 2.
-
The new object
bind_retry
has been added to thedns.server
object.# BEFORE: dns: server: # … # … # … schema_version: 1 # AFTER: dns: server: bind_retry: enabled: true interval: 1s count: 4 # … # … # … schema_version: 2
To rollback this change, remove the dns.server.bind_retry
object and set the schema_version
to 1
.
Fixed
- Failed binding to listen addresses when installed as Windows service (#11).