diff --git a/CHANGELOG.md b/CHANGELOG.md index 1395b956..dd068218 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -14,15 +14,45 @@ and this project adheres to +### Added + +- Support for comments in the ipset file ([#5345]). + +[#5345]: https://github.com/AdguardTeam/AdGuardHome/issues/5345 + + + + + +## [v0.107.48] - 2024-04-05 + +See also the [v0.107.48 GitHub milestone][ms-v0.107.48]. + +### Fixed + +- Access settings not being applied to encrypted protocols ([#6890]) + +[#6890]: https://github.com/AdguardTeam/AdGuardHome/issues/6890 + +[ms-v0.107.48]: https://github.com/AdguardTeam/AdGuardHome/milestone/83?closed=1 + + + +## [v0.107.47] - 2024-04-04 + +See also the [v0.107.47 GitHub milestone][ms-v0.107.47]. + ### Security - Go version has been updated to prevent the possibility of exploiting the Go @@ -45,8 +75,8 @@ NOTE: Add new changes BELOW THIS COMMENT. ### Fixed - Resetting DNS upstream mode when applying unrelated settings ([#6851]). -- Symbolic links to config YAML are replaced by a copy of the real file by AGH - after startup ([#6717]). +- Symbolic links to the configuration file begin replaced by a copy of the real + file upon startup on FreeBSD ([#6717]). ### Removed @@ -57,11 +87,8 @@ NOTE: Add new changes BELOW THIS COMMENT. [#6758]: https://github.com/AdguardTeam/AdGuardHome/issues/6758 [#6851]: https://github.com/AdguardTeam/AdGuardHome/issues/6851 -[go-1.22.2]: https://groups.google.com/g/golang-announce/c/YgW0sx8mN3M/ - - +[go-1.22.2]: https://groups.google.com/g/golang-announce/c/YgW0sx8mN3M/ +[ms-v0.107.47]: https://github.com/AdguardTeam/AdGuardHome/milestone/82?closed=1 @@ -2889,11 +2916,13 @@ See also the [v0.104.2 GitHub milestone][ms-v0.104.2]. -[Unreleased]: https://github.com/AdguardTeam/AdGuardHome/compare/v0.107.46...HEAD +[Unreleased]: https://github.com/AdguardTeam/AdGuardHome/compare/v0.107.48...HEAD +[v0.107.48]: https://github.com/AdguardTeam/AdGuardHome/compare/v0.107.47...v0.107.48 +[v0.107.47]: https://github.com/AdguardTeam/AdGuardHome/compare/v0.107.46...v0.107.47 [v0.107.46]: https://github.com/AdguardTeam/AdGuardHome/compare/v0.107.45...v0.107.46 [v0.107.45]: https://github.com/AdguardTeam/AdGuardHome/compare/v0.107.44...v0.107.45 [v0.107.44]: https://github.com/AdguardTeam/AdGuardHome/compare/v0.107.43...v0.107.44 diff --git a/internal/dnsforward/config.go b/internal/dnsforward/config.go index 79347431..10f238d2 100644 --- a/internal/dnsforward/config.go +++ b/internal/dnsforward/config.go @@ -465,6 +465,7 @@ func (s *Server) prepareIpsetListSettings() (err error) { } ipsets := stringutil.SplitTrimmed(string(data), "\n") + ipsets = stringutil.FilterOut(ipsets, IsCommentOrEmpty) log.Debug("dns: using %d ipset rules from file %q", len(ipsets), fn)