Skip to content

Commit 30e770f

Browse files
committed
Pull request 2635: upd-chlog
Squashed commit of the following: commit 6f53567 Author: Eugene Burkov <E.Burkov@AdGuard.COM> Date: Thu Apr 16 15:12:11 2026 +0300 all: upd chlog
1 parent a3b73ef commit 30e770f

2 files changed

Lines changed: 23 additions & 15 deletions

File tree

CHANGELOG.md

Lines changed: 22 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -9,24 +9,33 @@ The format is based on [*Keep a Changelog*](https://keepachangelog.com/en/1.0.0/
99
<!--
1010
## [v0.108.0] – TBA
1111
12-
## [v0.107.74] - 2026-03-24 (APPROX.)
12+
## [v0.107.75] - 2026-05-01 (APPROX.)
1313
14-
See also the [v0.107.74 GitHub milestone][ms-v0.107.74].
14+
See also the [v0.107.75 GitHub milestone][ms-v0.107.75].
1515
16-
[ms-v0.107.74]: https://github.com/AdguardTeam/AdGuardHome/milestone/109?closed=1
16+
[ms-v0.107.75]: https://github.com/AdguardTeam/AdGuardHome/milestone/110?closed=1
1717
1818
NOTE: Add new changes BELOW THIS COMMENT.
1919
-->
2020

21+
### Fixed
22+
23+
- Safe Browsing and Parental Control labels on the General Settings page not updating after changing the UI language.
24+
25+
<!--
26+
NOTE: Add new changes ABOVE THIS COMMENT.
27+
-->
28+
29+
## [v0.107.74] - 2026-04-16
30+
31+
See also the [v0.107.74 GitHub milestone][ms-v0.107.74].
32+
2133
### Security
2234

2335
- Frontend libraries has been updated to prevent the possibility of exploiting the vulnerability described in [CVE-2026-40175][cve-2026-40175].
2436

2537
- Go version has been updated to prevent the possibility of exploiting the Go vulnerabilities fixed in [1.26.2][go-1.26.2].
2638

27-
[cve-2026-40175]: https://nvd.nist.gov/vuln/detail/CVE-2026-40175
28-
[go-1.26.2]: https://groups.google.com/g/golang-announce/c/0uYbvbPZRWU
29-
3039
### Changed
3140

3241
#### Configuration changes
@@ -61,8 +70,6 @@ In this release, the schema version has changed from 33 to 34.
6170

6271
### Fixed
6372

64-
- Safe Browsing and Parental Control labels on the General Settings page not updating after changing the UI language.
65-
6673
- Incorrect forwarding of root domain requests when domain-specific upstreams are configured ([#7058]).
6774

6875
- The strict SNI check setting is not persisted when the TLS configuration is changed ([#8327]).
@@ -74,9 +81,9 @@ In this release, the schema version has changed from 33 to 34.
7481
[#7058]: https://github.com/AdguardTeam/AdGuardHome/issues/7058
7582
[#8327]: https://github.com/AdguardTeam/AdGuardHome/issues/8327
7683

77-
<!--
78-
NOTE: Add new changes ABOVE THIS COMMENT.
79-
-->
84+
[cve-2026-40175]: https://nvd.nist.gov/vuln/detail/CVE-2026-40175
85+
[go-1.26.2]: https://groups.google.com/g/golang-announce/c/0uYbvbPZRWU
86+
[ms-v0.107.74]: https://github.com/AdguardTeam/AdGuardHome/milestone/109?closed=1
8087

8188
## [v0.107.73] - 2026-03-10
8289

@@ -3555,11 +3562,12 @@ See also the [v0.104.2 GitHub milestone][ms-v0.104.2].
35553562
[ms-v0.104.2]: https://github.com/AdguardTeam/AdGuardHome/milestone/28?closed=1
35563563

35573564
<!--
3558-
[Unreleased]: https://github.com/AdguardTeam/AdGuardHome/compare/v0.107.74...HEAD
3559-
[v0.107.74]: https://github.com/AdguardTeam/AdGuardHome/compare/v0.107.73...v0.107.74
3565+
[Unreleased]: https://github.com/AdguardTeam/AdGuardHome/compare/v0.107.75...HEAD
3566+
[v0.107.75]: https://github.com/AdguardTeam/AdGuardHome/compare/v0.107.74...v0.107.75
35603567
-->
35613568

3562-
[Unreleased]: https://github.com/AdguardTeam/AdGuardHome/compare/v0.107.73...HEAD
3569+
[Unreleased]: https://github.com/AdguardTeam/AdGuardHome/compare/v0.107.74...HEAD
3570+
[v0.107.74]: https://github.com/AdguardTeam/AdGuardHome/compare/v0.107.73...v0.107.74
35633571
[v0.107.73]: https://github.com/AdguardTeam/AdGuardHome/compare/v0.107.72...v0.107.73
35643572
[v0.107.72]: https://github.com/AdguardTeam/AdGuardHome/compare/v0.107.71...v0.107.72
35653573
[v0.107.71]: https://github.com/AdguardTeam/AdGuardHome/compare/v0.107.70...v0.107.71

internal/aghuser/sessionstorage.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -113,7 +113,7 @@ func NewDefaultSessionStorage(
113113
Logger: newBBoltLogger(ctx, ds.logger),
114114
})
115115
if err != nil {
116-
ds.logger.ErrorContext(ctx, "opening db %q: %w", dbFilename, err)
116+
ds.logger.ErrorContext(ctx, "opening db", "filename", dbFilename, slogutil.KeyError, err)
117117
if errors.Is(err, berrors.ErrInvalid) {
118118
const s = "AdGuard Home cannot be initialized due to an incompatible file system.\n" +
119119
"Please read the explanation here: https://adguard-dns.io/kb/adguard-home/getting-started/#limitations"

0 commit comments

Comments
 (0)