Changes compared to the previous beta, v0.108.0-b.2. See CHANGELOG.md for all changes.
Security
- Weaker cipher suites that use the CBC (cipher block chaining) mode of operation have been disabled (#2993).
Changed
-
Response filtering is now performed using the record types of the answer section of messages as opposed to the type of the question (#4238).
-
Instead of adding the build time information, the build scripts now use the standardized environment variable
SOURCE_DATE_EPOCH
to add the date of the commit from which the binary was built (#4221). This should simplify reproducible builds for package maintainers and those who compile their own AdGuard Home. -
The setting
local_domain_name
is now in thedhcp
block in the configuration file to avoid confusion (#3367). -
The
dns.bogus_nxdomain
configuration file parameter now supports CIDR notation alongside IP addresses (#1730).
Configuration Changes
In this release, the schema version has changed from 12 to 13.
-
Parameter
local_domain_name
, which in schema versions 12 and earlier used to be a part of thedns
object, is now a part of thedhcp
object:# BEFORE: 'dns': # … 'local_domain_name': 'lan' # AFTER: 'dhcp': # … 'local_domain_name': 'lan'
To rollback this change, move the parameter back into
dns
and change theschema_version
back to12
.