Skip to content

Commit 13f4dd7

Browse files
authored
Merge pull request #304 from splitio/fix-vulnerabilities
Upgrade go to 1.23.5
2 parents d497098 + 792ac9e commit 13f4dd7

File tree

4 files changed

+11
-10
lines changed

4 files changed

+11
-10
lines changed

CHANGES.txt

Lines changed: 6 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,11 @@
1-
5.10.0 (Jan 17, 2024)
1+
5.10.0 (Jan 23, 2025)
22
- Added support for the new impressions tracking toggle available on feature flags, both respecting the setting. Read more in our docs.
3-
- Added support for arm64.
3+
- Added support for arm64 in docker images.
44
- Fixed vulnerabilities:
5-
- Updated golang image to 1.23.4.
6-
- Updated x/crypto dependency.
7-
- Updated x/net dependency.
5+
- Updated golang image to 1.23.5
6+
- Updated debian image to 12.9
7+
- Updated golang.org/x/net to 0.33.0
8+
- Updated golang.org/x/crypto to 0.31.0
89

910
5.9.0 (Dec 2, 2024)
1011
- Split Proxy:

docker/Dockerfile.proxy

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# Build stage
2-
FROM golang:1.23.4-bookworm AS builder
2+
FROM golang:1.23.5-bookworm AS builder
33

44
ARG EXTRA_BUILD_ARGS
55
ARG FIPS_MODE
@@ -17,7 +17,7 @@ RUN bash -c 'if [[ "${FIPS_MODE}" = "enabled" ]]; \
1717
fi'
1818

1919
# Runner stage
20-
FROM debian:12.8 AS runner
20+
FROM debian:12.9 AS runner
2121

2222
RUN apt update -y
2323
RUN apt install -y bash ca-certificates

docker/Dockerfile.synchronizer

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# Build stage
2-
FROM golang:1.23.4-bookworm AS builder
2+
FROM golang:1.23.5-bookworm AS builder
33

44
ARG EXTRA_BUILD_ARGS
55
ARG FIPS_MODE
@@ -17,7 +17,7 @@ RUN bash -c 'if [[ "${FIPS_MODE}" = "enabled" ]]; \
1717
fi'
1818

1919
# Runner stage
20-
FROM debian:12.8 AS runner
20+
FROM debian:12.9 AS runner
2121

2222
RUN apt update -y
2323
RUN apt install -y bash ca-certificates

go.mod

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
module github.com/splitio/split-synchronizer/v5
22

3-
go 1.23.4
3+
go 1.23.5
44

55
require (
66
github.com/gin-contrib/cors v1.6.0

0 commit comments

Comments
 (0)