all: imp docs

This commit is contained in:
Dimitry Kolyshev 2024-04-18 15:19:38 +02:00
parent b0695daddb
commit 85ea3d985e
2 changed files with 7 additions and 0 deletions

View File

@ -27,6 +27,10 @@ NOTE: Add new changes BELOW THIS COMMENT.
- Support for comments in the ipset file ([#5345]).
### Changed
- Rewrite rules mechanics was changed due to improve resolving in safe search.
### Fixed
- YouTube restricted mode is not enforced by HTTPS queries on Firefox.

View File

@ -189,6 +189,9 @@ func (ss *Default) CheckHost(host string, qtype rules.RRType) (res filtering.Res
}
res = *fltRes
// TODO(a.garipov): Consider switch back to resolving CNAME records IPs and
// saving results to cache.
ss.setCacheResult(host, qtype, res)
return res, nil