Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
# See https://docs.github.com/en/actions/reference/workflows-and-actions/workflow-syntax#permissions.
'permissions': {}
'env':
'GO_VERSION': '1.26.5'
'GO_VERSION': '1.26.6'
'NODE_VERSION': '20'
'on':
'push':
Expand Down
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,8 @@ NOTE: Add new changes BELOW THIS COMMENT.

### Security

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

- AdGuard Home is now more resistant to resource exhaustion attacks when using DNS-over-QUIC.

This is GHSA-w6v6-f44j-3rj2. We thank @ATinyShoe for reporting this security issue.
Expand All @@ -46,6 +48,7 @@ NOTE: Add new changes BELOW THIS COMMENT.

- Blocked requests without an EDNS(0) OPT record ([#8183]).

[go-1.26.6]: https://groups.google.com/g/golang-announce/c/94pEornpRlI
[#7514]: https://github.com/AdguardTeam/AdGuardHome/issues/7514
[#8183]: https://github.com/AdguardTeam/AdGuardHome/issues/8183

Expand Down
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ DIST_DIR = dist
GOAMD64 = v1
GOPROXY = https://proxy.golang.org|direct
GOTELEMETRY = off
GOTOOLCHAIN = go1.26.5
GOTOOLCHAIN = go1.26.6
GPG_KEY = devteam@adguard.com
GPG_KEY_PASSPHRASE = not-a-real-password
NPM = npm
Expand Down
6 changes: 3 additions & 3 deletions bamboo-specs/release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
'channel': 'edge'
'clientDir': 'client_v2'
'dockerFrontend': 'adguard/home-js-builder:4.0'
'dockerGo': 'adguard/go-builder:1.26.5--1'
'dockerGo': 'adguard/go-builder:1.26.6--1'

'stages':
- 'Build frontend':
Expand Down Expand Up @@ -297,7 +297,7 @@
'channel': 'beta'
'clientDir': 'client'
'dockerFrontend': 'adguard/home-js-builder:4.0'
'dockerGo': 'adguard/go-builder:1.26.5--1'
'dockerGo': 'adguard/go-builder:1.26.6--1'
# release-vX.Y.Z branches are the branches from which the actual final
# release is built.
- '^release-v[0-9]+\.[0-9]+\.[0-9]+':
Expand All @@ -314,4 +314,4 @@
'channel': 'release'
'clientDir': 'client'
'dockerFrontend': 'adguard/home-js-builder:4.0'
'dockerGo': 'adguard/go-builder:1.26.5--1'
'dockerGo': 'adguard/go-builder:1.26.6--1'
4 changes: 2 additions & 2 deletions bamboo-specs/test.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
'channel': 'development'
'clientDir': 'client_v2'
'dockerFrontend': 'adguard/home-js-builder:4.0'
'dockerGo': 'adguard/go-builder:1.26.5--1'
'dockerGo': 'adguard/go-builder:1.26.6--1'

'stages':
- 'Tests':
Expand Down Expand Up @@ -272,4 +272,4 @@
'channel': 'candidate'
'clientDir': 'client'
'dockerFrontend': 'adguard/home-js-builder:4.0'
'dockerGo': 'adguard/go-builder:1.26.5--1'
'dockerGo': 'adguard/go-builder:1.26.6--1'
2 changes: 1 addition & 1 deletion docker/ci.Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@
# needed. Keep it in sync with bamboo-specs/bamboo.yaml.

# NOTE: Keep in sync with bamboo-specs/bamboo.yaml.
ARG BASE_IMAGE=adguard/go-builder:1.26.5--1
ARG BASE_IMAGE=adguard/go-builder:1.26.6--1

# The dependencies stage is needed to install packages and tool dependencies.
# This is also where binaries like osslsigncode, which may be required for tests
Expand Down
2 changes: 1 addition & 1 deletion go.mod
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
module github.com/AdguardTeam/AdGuardHome

go 1.26.5
go 1.26.6

require (
github.com/AdguardTeam/dnscrypt v0.0.2
Expand Down
Loading