Skip to content

Commit 32d2fe9

Browse files
reinkrulclaude
andauthored
Upgrade Go to 1.26.2 to fix stdlib CVEs (v5.4.30) (#4173)
* Upgrade Go to 1.26.2 to fix stdlib CVEs (v5.4.30) Fixes GO-2026-4865 (html/template XSS), GO-2026-4866 (crypto/x509 auth bypass), GO-2026-4869 (archive/tar DoS), GO-2026-4870 (crypto/tls DoS), GO-2026-4946 (crypto/x509 DoS) Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com> * Fix CircleCI Go image version to 1.26.2 --------- Co-authored-by: Claude Sonnet 4.6 <noreply@anthropic.com>
1 parent eef688d commit 32d2fe9

4 files changed

Lines changed: 14 additions & 4 deletions

File tree

.circleci/config.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ jobs:
1313
build:
1414
parallelism: 8
1515
docker:
16-
- image: cimg/go:1.26.1
16+
- image: cimg/go:1.26.2
1717
steps:
1818
- checkout
1919

@@ -37,7 +37,7 @@ jobs:
3737

3838
report:
3939
docker:
40-
- image: cimg/go:1.26.1
40+
- image: cimg/go:1.26.2
4141
steps:
4242
- checkout
4343
- attach_workspace:

Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# golang alpine
2-
FROM golang:1.26.1-alpine AS builder
2+
FROM golang:1.26.2-alpine AS builder
33

44
ARG TARGETARCH
55
ARG TARGETOS

docs/pages/release_notes.rst

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,16 @@
33
Release notes
44
#############
55

6+
*************************
7+
Hazelnut update (v5.4.30)
8+
*************************
9+
10+
Release date: 2026-04-10
11+
12+
- Upgrade Go to 1.26.2 to fix GO-2026-4865 (html/template XSS), GO-2026-4866 (crypto/x509 auth bypass), GO-2026-4869 (archive/tar DoS), GO-2026-4870 (crypto/tls DoS), GO-2026-4946 (crypto/x509 DoS)
13+
14+
**Full Changelog**: https://github.com/nuts-foundation/nuts-node/compare/v5.4.29...v5.4.30
15+
616
*************************
717
Hazelnut update (v5.4.29)
818
*************************

go.mod

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ module github.com/nuts-foundation/nuts-node
22

33
// This is the minimal version, the actual go version is determined by the images in the Dockerfile
44
// This version is used in automated tests such as the 'Scheduled govulncheck' action
5-
go 1.26.1
5+
go 1.26.2
66

77
require (
88
github.com/alicebob/miniredis/v2 v2.34.0

0 commit comments

Comments
 (0)