Skip to content

Commit dc0722a

Browse files
committed
Merge branch 'master' of github.com:splitio/split-synchronizer
2 parents dbe056e + 03b79ed commit dc0722a

File tree

7 files changed

+14
-11
lines changed

7 files changed

+14
-11
lines changed

.github/workflows/test.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ jobs:
2323
- name: Setup Go
2424
uses: actions/setup-go@v5
2525
with:
26-
go-version: '^1.13.1'
26+
go-version: '^1.23.3'
2727

2828
- name: Get version
2929
run: echo "VERSION=$(awk '/^const Version/{gsub(/"/, "", $4); print $4}' splitio/version.go)" >> $GITHUB_ENV

CHANGES.txt

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,16 @@
1+
5.8.3 (Nov 22, 2024)
2+
- Fixed vulnerabilities:
3+
- Updated debian image to 12.8
4+
- Updated golang image to 1.23.3
5+
16
5.8.2 (Sep 17, 2024)
27
- Fixed healthcheck monitor for cases with no segments.
38
- Updated go-split-commons version to v6.0.1.
49

510
5.8.1 (Jul 12, 2024)
611
- Fixed vulnerabilities:
712
- Updated debian image to 12.6
8-
- Updated gin-contrib/cors to 1.6.0
13+
- Updated gin-contrib/cors to 1.6.0
914
- Updated golang image to 1.22.5
1015

1116
5.8.0 (May 14, 2024)

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.22.5-bookworm AS builder
2+
FROM golang:1.23.3-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.6 AS runner
20+
FROM debian:12.8 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.22.5-bookworm AS builder
2+
FROM golang:1.23.3-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.6 AS runner
20+
FROM debian:12.8 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.22
3+
go 1.23.3
44

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

splitio/version.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,4 +2,4 @@
22
package splitio
33

44
// Version is the version of this Agent
5-
const Version = "5.8.2"
5+
const Version = "5.8.3"

windows/Makefile

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ BUILD_FOLDER := $(CURRENT_PATH)/build
77

88

99
GO := $(BIN_FOLDER)/go
10-
ASSET ?= go1.22.linux-amd64.tar.gz
10+
ASSET ?= go1.23.linux-amd64.tar.gz
1111
SOURCES := $(shell find $(PARENT_PATH) -path $(dirname $(pwd))/windows -prune -o -name "*.go" -print) \
1212
$(PARENT_PATH)/go.mod \
1313
$(PARENT_PATH)/go.sum
@@ -67,5 +67,3 @@ help:
6767
} \
6868
{ lastLine = $$0 }' $(MAKEFILE_LIST) | sort -u
6969
@printf "\n"
70-
71-

0 commit comments

Comments
 (0)