Skip to content

Commit

Permalink
all: upd chlog
Browse files Browse the repository at this point in the history
  • Loading branch information
ainar-g committed Aug 29, 2022
1 parent a0c8aee commit f9ab827
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 4 deletions.
11 changes: 9 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -24,12 +24,18 @@ and this project adheres to

- New `del` DHCP option which removes the corresponding option from server's
response ([#4337]).

**NOTE:** This modifier affects all the parameters in the response and not
only the requested ones.
- A new HTTP API, `GET /control/blocked_services/services`, that lists all
available blocked services ([#4535]).

### Changed

- The internal DNS client (which is used to resolve hosts for automatic updates
and resolving of hostnames of external clients) now respects the upstream mode
settings for the main DNS client ([#4403]).

### Deprecated

- Ports 784 and 8853 for DNS-over-QUIC in Docker images. Users who still serve
Expand All @@ -45,6 +51,7 @@ and this project adheres to

[#2993]: https://github.com/AdguardTeam/AdGuardHome/issues/2993
[#4337]: https://github.com/AdguardTeam/AdGuardHome/issues/4337
[#4403]: https://github.com/AdguardTeam/AdGuardHome/issues/4403
[#4535]: https://github.com/AdguardTeam/AdGuardHome/issues/4535
[#4745]: https://github.com/AdguardTeam/AdGuardHome/issues/4745
[#4850]: https://github.com/AdguardTeam/AdGuardHome/issues/4850
Expand Down Expand Up @@ -238,7 +245,7 @@ See also the [v0.107.7 GitHub milestone][ms-v0.107.7].
- Domain-specific private reverse DNS upstream servers are now validated to
allow only `*.in-addr.arpa` and `*.ip6.arpa` domains pointing to
locally-served networks ([#3381]).

**NOTE:** If you already have invalid entries in your configuration, consider
removing them manually, since they essentially had no effect.
- Response filtering is now performed using the record types of the answer
Expand Down
6 changes: 4 additions & 2 deletions scripts/make/go-lint.sh
Original file line number Diff line number Diff line change
Expand Up @@ -220,8 +220,10 @@ exit_on_output gofumpt --extra -e -l .
"$GO" vet ./...

# Apply more lax standards to the code we haven't properly refactored yet.
gocyclo --over 17 ./internal/dhcpd/ ./internal/dnsforward/\
./internal/filtering/ ./internal/home/ ./internal/querylog/
gocyclo --over 17 ./internal/dhcpd ./internal/querylog/
gocyclo --over 16 ./internal/dnsforward/
gocyclo --over 15 ./internal/home/
gocyclo --over 13 ./internal/filtering/

# Apply stricter standards to new or somewhat refactored code.
gocyclo --over 10 ./internal/aghio/ ./internal/aghnet/ ./internal/aghos/\
Expand Down

0 comments on commit f9ab827

Please sign in to comment.