Skip to content

AdGuard Home v0.108.0-b.39

Pre-release
Pre-release
Compare
Choose a tag to compare
@adguard-bot adguard-bot released this 03 Jul 14:43
· 302 commits to master since this release

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

Acknowledgements

A special thanks to our open-source contributor, @Jiraiya8, as well as to everyone who filed and inspected issues, added translations, and helped us test this release!

Full changelog

Changed

Configuration Changes

In this release, the schema version has changed from 22 to 23.

  • Properties bind_host, bind_port, and web_session_ttl which used to setup web UI binding configuration, are now moved to a new object http containing new properties address and session_ttl:

    # BEFORE:
    'bind_host': '1.2.3.4'
    'bind_port': 8080
    'web_session_ttl': 720
    
    # AFTER:
    'http':
      'address': '1.2.3.4:8080'
      'session_ttl': '720h'

    Note that the new http.session_ttl property is now a duration string. To rollback this change, remove the new object http, set back bind_host, bind_port, web_session_ttl, and change the schema_version back to 22.

Deprecated

  • HEALTHCHECK and ENTRYPOINT sections in Dockerfile (#5939). They cause a lot of issues, especially with tools like docker-compose and podman, and will be removed in a future release.

Fixed

  • Ignoring of /etc/hosts file when resolving the hostnames of upstream DNS servers (#5902).