Skip to content

Commit 9feb5dd

Browse files
authored
update min go version and cleanup dockerfile (#3671)
1 parent ab2af9b commit 9feb5dd

File tree

3 files changed

+44
-9
lines changed

3 files changed

+44
-9
lines changed

Dockerfile

Lines changed: 1 addition & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# golang alpine
2-
FROM golang:1.23.4-alpine AS builder
2+
FROM golang:1.23.5-alpine AS builder
33

44
ARG TARGETARCH
55
ARG TARGETOS
@@ -10,13 +10,6 @@ ARG GIT_VERSION=undefined
1010

1111
LABEL maintainer="[email protected]"
1212

13-
RUN apk update \
14-
&& apk add --no-cache \
15-
gcc \
16-
musl-dev \
17-
&& update-ca-certificates
18-
19-
ENV GO111MODULE=on
2013
ENV GOPATH=/
2114

2215
RUN mkdir /opt/nuts && cd /opt/nuts

docs/pages/release_notes.rst

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

5+
***************
6+
Peanut (v6.0.7)
7+
***************
8+
9+
Release date: 2025-01-28
10+
11+
- Update minimal GO version to 1.23.5 to fix vulnerabilities.
12+
13+
**Full Changelog**: https://github.com/nuts-foundation/nuts-node/compare/v6.0.6...v6.0.7
14+
515
***************
616
Peanut (v6.0.6)
717
***************
@@ -167,6 +177,38 @@ The following features have been deprecated:
167177
- Network v1 API, to be removed
168178
- VDR v1 API, replaced by VDR v2
169179

180+
*************************
181+
Hazelnut update (v5.4.14)
182+
*************************
183+
184+
Release date: 2025-01-28
185+
186+
- Update minimal GO version to 1.23.5 to fix vulnerabilities.
187+
188+
**Full Changelog**: https://github.com/nuts-foundation/nuts-node/compare/v5.4.13...v5.4.14
189+
190+
*************************
191+
Hazelnut update (v5.4.13)
192+
*************************
193+
194+
Release date: 2025-01-15
195+
196+
- Updated dependencies with vulnerabilities
197+
- Updated go version to 1.23.4
198+
199+
**Full Changelog**: https://github.com/nuts-foundation/nuts-node/compare/v5.4.12...v5.4.13
200+
201+
*************************
202+
Hazelnut update (v5.4.12)
203+
*************************
204+
205+
Release date: 2024-11-04
206+
207+
- Updated dependencies with vulnerabilities
208+
- Fixed issue with failed network events giving errors at startup
209+
210+
**Full Changelog**: https://github.com/nuts-foundation/nuts-node/compare/v5.4.11...v5.4.12
211+
170212
*************************
171213
Hazelnut update (v5.4.11)
172214
*************************

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.23.4
5+
go 1.23.5
66

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

0 commit comments

Comments
 (0)