github AdguardTeam/AdGuardHome v0.108.0-b.7
AdGuard Home v0.108.0-b.7

latest releases: v0.108.0-b.56, v0.107.50, v0.107.49...
pre-release2 years ago

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

Full Changelog

Added

  • Support for Discovery of Designated Resolvers (DDR) according to the RFC draft (#4463).

  • The ability to control each source of runtime clients separately via clients.runtime_sources configuration object (#3020).

Changed

Configuration Changes

The schema version has changed from 13 to 14.

  • Object clients, which in schema versions 13 and earlier was an array of actual persistent clients, is now consist of persistent and runtime_sources properties:

    # BEFORE:
    'clients':
    - name: client-name
      #
    
    # AFTER:
    'clients':
      'persistent':
        - name: client-name
          #
      'runtime_sources':
        whois: true
        arp: true
        rdns: true
        dhcp: true
        hosts: true

    The value for clients.runtime_sources.rdns field is taken from dns.resolve_clients property. To rollback this change, remove the runtime_sources property, move the contents of persistent into the clients itself, the value of clients.runtime_sources.rdns into the dns.resolve_clients, and change the schema_version back to 13.

Deprecated

  • The --no-etc-hosts option. Its' functionality is now controlled by clients.runtime_sources.hosts configuration property. v0.109.0 will remove the flag completely.

Fixed

  • Slow version update queries making other HTTP APIs unresponsive (#4499).

  • ARP tables refreshing process causing excessive PTR requests (#3157).

Don't miss a new AdGuardHome release

NewReleases is sending notifications on new releases.