Skip to content

Commit

Permalink
Merge branch 'master' into AG-30904-fix-ip-in-logs
Browse files Browse the repository at this point in the history
  • Loading branch information
schzhn committed Mar 6, 2024
2 parents 1d30c09 + 5565b9e commit 0a54ca2
Show file tree
Hide file tree
Showing 9 changed files with 15 additions and 14 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/build.yml
@@ -1,7 +1,7 @@
'name': 'build'

'env':
'GO_VERSION': '1.21.7'
'GO_VERSION': '1.21.8'
'NODE_VERSION': '16'

'on':
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/lint.yml
@@ -1,7 +1,7 @@
'name': 'lint'

'env':
'GO_VERSION': '1.21.7'
'GO_VERSION': '1.21.8'

'on':
'push':
Expand Down
3 changes: 2 additions & 1 deletion CHANGELOG.md
Expand Up @@ -26,7 +26,7 @@ NOTE: Add new changes BELOW THIS COMMENT.
### Security

- Go version has been updated to prevent the possibility of exploiting the Go
vulnerabilities fixed in Go 1.21.6 and Go 1.21.7.
vulnerabilities fixed in [Go 1.21.8][go-1.21.8].

### Added

Expand Down Expand Up @@ -76,6 +76,7 @@ NOTE: Add new changes BELOW THIS COMMENT.
[#6711]: https://github.com/AdguardTeam/AdGuardHome/issues/6711

[go-toolchain]: https://go.dev/blog/toolchain
[go-1.21.8]: https://groups.google.com/g/golang-announce/c/5pwGVUPoMbg

<!--
NOTE: Add new changes ABOVE THIS COMMENT.
Expand Down
2 changes: 1 addition & 1 deletion Makefile
Expand Up @@ -27,7 +27,7 @@ DIST_DIR = dist
GOAMD64 = v1
GOPROXY = https://goproxy.cn|https://proxy.golang.org|direct
GOSUMDB = sum.golang.google.cn
GOTOOLCHAIN = go1.21.7
GOTOOLCHAIN = go1.21.8
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
Expand Up @@ -7,7 +7,7 @@
# Make sure to sync any changes with the branch overrides below.
'variables':
'channel': 'edge'
'dockerGo': 'adguard/golang-ubuntu:8.0'
'dockerGo': 'adguard/golang-ubuntu:8.1'

'stages':
- 'Build frontend':
Expand Down Expand Up @@ -272,7 +272,7 @@
# need to build a few of these.
'variables':
'channel': 'beta'
'dockerGo': 'adguard/golang-ubuntu:8.0'
'dockerGo': 'adguard/golang-ubuntu:8.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 @@ -287,4 +287,4 @@
# are the ones that actually get released.
'variables':
'channel': 'release'
'dockerGo': 'adguard/golang-ubuntu:8.0'
'dockerGo': 'adguard/golang-ubuntu:8.1'
6 changes: 3 additions & 3 deletions bamboo-specs/snapcraft.yaml
Expand Up @@ -10,7 +10,7 @@
# Make sure to sync any changes with the branch overrides below.
'variables':
'channel': 'edge'
'dockerGo': 'adguard/golang-ubuntu:8.0'
'dockerGo': 'adguard/golang-ubuntu:8.1'
'snapcraftChannel': 'edge'

'stages':
Expand Down Expand Up @@ -191,7 +191,7 @@
# need to build a few of these.
'variables':
'channel': 'beta'
'dockerGo': 'adguard/golang-ubuntu:8.0'
'dockerGo': 'adguard/golang-ubuntu:8.1'
'snapcraftChannel': 'beta'
# release-vX.Y.Z branches are the branches from which the actual final
# release is built.
Expand All @@ -207,5 +207,5 @@
# are the ones that actually get released.
'variables':
'channel': 'release'
'dockerGo': 'adguard/golang-ubuntu:8.0'
'dockerGo': 'adguard/golang-ubuntu:8.1'
'snapcraftChannel': 'candidate'
4 changes: 2 additions & 2 deletions bamboo-specs/test.yaml
Expand Up @@ -5,7 +5,7 @@
'key': 'AHBRTSPECS'
'name': 'AdGuard Home - Build and run tests'
'variables':
'dockerGo': 'adguard/golang-ubuntu:8.0'
'dockerGo': 'adguard/golang-ubuntu:8.1'
'channel': 'development'

'stages':
Expand Down Expand Up @@ -127,5 +127,5 @@
# Set the default release channel on the release branch to beta, as we
# may need to build a few of these.
'variables':
'dockerGo': 'adguard/golang-ubuntu:8.0'
'dockerGo': 'adguard/golang-ubuntu:8.1'
'channel': 'candidate'
2 changes: 1 addition & 1 deletion go.mod
@@ -1,6 +1,6 @@
module github.com/AdguardTeam/AdGuardHome

go 1.21.7
go 1.21.8

require (
github.com/AdguardTeam/dnsproxy v0.65.2
Expand Down
2 changes: 1 addition & 1 deletion internal/tools/go.mod
@@ -1,6 +1,6 @@
module github.com/AdguardTeam/AdGuardHome/internal/tools

go 1.21.7
go 1.21.8

require (
github.com/fzipp/gocyclo v0.6.0
Expand Down

0 comments on commit 0a54ca2

Please sign in to comment.