AdGuard Home v0.108.0-b.39
Pre-release
Pre-release
adguard-bot
released this
03 Jul 14:43
·
385 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
, andweb_session_ttl
which used to setup web UI binding configuration, are now moved to a new objecthttp
containing new propertiesaddress
andsession_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 objecthttp
, set backbind_host
,bind_port
,web_session_ttl
, and change theschema_version
back to22
.
Deprecated
HEALTHCHECK
andENTRYPOINT
sections inDockerfile
(#5939). They cause a lot of issues, especially with tools likedocker-compose
andpodman
, and will be removed in a future release.
Fixed
- Ignoring of
/etc/hosts
file when resolving the hostnames of upstream DNS servers (#5902).