Skip to content

AdGuard Home v0.108.0-b.30

Pre-release
Pre-release
Compare
Choose a tag to compare
@adguard-bot adguard-bot released this 09 Mar 13:34
· 441 commits to master since this release

Changes compared to the previous beta, v0.108.0-b.29. See CHANGELOG.md for all changes.

Full changelog

Security

  • Go version has been updated to prevent the possibility of exploiting the CVE-2023-24532 Go vulnerability fixed in Go 1.19.7.

Added

  • The ability to set custom IP for EDNS Client Subnet by using the new dns.edns_client_subnet.use_custom and dns.edns_client_subnet.custom_ip fields (#1472). The UI changes are coming in the upcoming releases.

Changed

Configuration Changes

In this release, the schema version has changed from 16 to 17.

  • Property edns_client_subnet, which in schema versions 16 and earlier used to be a part of the dns object, is now part of the dns.edns_client_subnet object:

    # BEFORE:
    'dns':
      #
      'edns_client_subnet': false
    
    # AFTER:
    'dns':
      #
      'edns_client_subnet':
        'enabled': false
        'use_custom': false
        'custom_ip': ''

    To rollback this change, move the value of dns.edns_client_subnet.enabled into the dns.edns_client_subnet, remove the fields dns.edns_client_subnet.enabled, dns.edns_client_subnet.use_custom, dns.edns_client_subnet.custom_ip, and change the schema_version back to 16.

Fixed

  • Obsolete value of the Interface MTU DHCP option is now omitted (#5281).