Skip to content

Commit 9cf2ad8

Browse files
authored
update go version to fix vulnerabilities (#3842)
add release notes
1 parent ee2e9fb commit 9cf2ad8

File tree

3 files changed

+26
-5
lines changed

3 files changed

+26
-5
lines changed

Dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# golang alpine
2-
FROM golang:1.24.2-alpine AS builder
2+
FROM golang:1.24.4-alpine AS builder
33

44
ARG TARGETARCH
55
ARG TARGETOS
@@ -21,7 +21,7 @@ COPY . .
2121
RUN GOOS=$TARGETOS GOARCH=$TARGETARCH go build -ldflags="-w -s -X 'github.com/nuts-foundation/nuts-node/core.GitCommit=${GIT_COMMIT}' -X 'github.com/nuts-foundation/nuts-node/core.GitBranch=${GIT_BRANCH}' -X 'github.com/nuts-foundation/nuts-node/core.GitVersion=${GIT_VERSION}'" -o /opt/nuts/nuts
2222

2323
# alpine
24-
FROM alpine:3.21.3
24+
FROM alpine:3.22.0
2525
RUN apk update \
2626
&& apk add --no-cache \
2727
tzdata \

docs/pages/release_notes.rst

Lines changed: 23 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,17 @@
22
Release notes
33
#############
44

5+
***************
6+
Peanut (v6.1.3)
7+
***************
8+
9+
Release date: 2025-06-13
10+
11+
- Update go version to fix https://pkg.go.dev/vuln/GO-2025-3749, https://pkg.go.dev/vuln/GO-2025-3750, https://pkg.go.dev/vuln/GO-2025-3751
12+
13+
14+
**Full Changelog**: https://github.com/nuts-foundation/nuts-node/compare/v6.1.2...v6.1.3
15+
516
***************
617
Peanut (v6.1.2)
718
***************
@@ -251,9 +262,19 @@ The following features have been deprecated:
251262
- Network v1 API, to be removed
252263
- VDR v1 API, replaced by VDR v2
253264

254-
***************
265+
*************************
266+
Hazelnut update (v5.4.19)
267+
*************************
268+
269+
Release date: 2025-06-13
270+
271+
- Update go version to fix https://pkg.go.dev/vuln/GO-2025-3749, https://pkg.go.dev/vuln/GO-2025-3750, https://pkg.go.dev/vuln/GO-2025-3751
272+
273+
**Full Changelog**: https://github.com/nuts-foundation/nuts-node/compare/v5.4.18...v5.4.19
274+
275+
*************************
255276
Hazelnut update (v5.4.18)
256-
***************
277+
*************************
257278

258279
Release date: 2025-04-28
259280

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.24.2
5+
go 1.24.4
66

77
require (
88
github.com/Azure/azure-sdk-for-go/sdk/azcore v1.18.0

0 commit comments

Comments
 (0)