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
4 changes: 2 additions & 2 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ jobs:
build:
parallelism: 8
docker:
- image: cimg/go:1.21
- image: cimg/go:1.25
steps:
- checkout

Expand All @@ -37,7 +37,7 @@ jobs:

report:
docker:
- image: cimg/go:1.21
- image: cimg/go:1.25
steps:
- checkout
- attach_workspace:
Expand Down
4 changes: 2 additions & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# golang alpine
FROM golang:1.24.6-alpine AS builder
FROM golang:1.25.3-alpine AS builder

ARG TARGETARCH
ARG TARGETOS
Expand All @@ -21,7 +21,7 @@ COPY . .
RUN CGO_ENABLED=0 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

# alpine
FROM alpine:3.22.0
FROM alpine:3.22.2
RUN apk update \
&& apk add --no-cache \
tzdata \
Expand Down
17 changes: 17 additions & 0 deletions docs/pages/release_notes.rst
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,23 @@
Release notes
#############

*************************
Hazelnut update (v5.4.20)
*************************

Release date: 2025-11-03

- Update Go version to fix https://pkg.go.dev/vuln/GO-2025-4007,
https://pkg.go.dev/vuln/GO-2025-4008,
https://pkg.go.dev/vuln/GO-2025-4009,
https://pkg.go.dev/vuln/GO-2025-4010,
https://pkg.go.dev/vuln/GO-2025-4011,
https://pkg.go.dev/vuln/GO-2025-4012,
https://pkg.go.dev/vuln/GO-2025-4013, and
https://pkg.go.dev/vuln/GO-2025-4014

**Full Changelog**: https://github.com/nuts-foundation/nuts-node/compare/v5.4.19...v5.4.20

*************************
Hazelnut update (v5.4.19)
*************************
Expand Down
2 changes: 1 addition & 1 deletion go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ module github.com/nuts-foundation/nuts-node

// This is the minimal version, the actual go version is determined by the images in the Dockerfile
// This version is used in automated tests such as the 'Scheduled govulncheck' action
go 1.24.6
go 1.25.3

require (
github.com/alicebob/miniredis/v2 v2.33.0
Expand Down
Loading