Skip to content
Open
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
7 changes: 7 additions & 0 deletions CHANGES.txt
Original file line number Diff line number Diff line change
@@ -1,3 +1,10 @@
5.12.7 (Jun 29, 2026)
- Fixed vulnerabilities (4 High, 35 Low):
- H: CVE-2026-45447, CVE-2026-7383, CVE-2026-9076, CVE-2026-34180
- L: CVE-2026-45446, CVE-2026-45445, CVE-2026-42770, CVE-2026-42769, CVE-2026-42768, CVE-2026-42767, CVE-2026-42764, CVE-2026-34183, CVE-2026-34182, CVE-2026-34181, CVE-2010-0928, CVE-2019-9192, CVE-2019-1010025, CVE-2019-1010024, CVE-2019-1010023, CVE-2019-1010022, CVE-2018-20796, CVE-2010-4756, CVE-2026-53614, CVE-2026-53612, CVE-2025-14104, CVE-2022-0563, CVE-2023-31439, CVE-2023-31438, CVE-2023-31437, CVE-2013-4392, CVE-2025-70873, CVE-2021-45346, CVE-2026-48961, CVE-2011-4116, CVE-2025-5278, CVE-2017-18018, CVE-2005-2541, CVE-2007-5686, CVE-2011-3374
- Updated Docker base image from debian:13 to debian:trixie-20260623-slim
- Updated log level from error to info when reading snapshots to populate caches for splits, segments, and rule-based segments

5.12.6 (Jun 19, 2026)
- Updated snapshot validation to warn on configuration mismatches instead of blocking proxy initialization.

Expand Down
2 changes: 1 addition & 1 deletion docker/Dockerfile.proxy
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ RUN bash -c 'if [[ "${FIPS_MODE}" = "enabled" ]]; \
fi'

# Runner stage
FROM debian:13 AS runner
FROM debian:trixie-20260623-slim AS runner

RUN apt update -y && \
apt upgrade -y && \
Expand Down
2 changes: 1 addition & 1 deletion docker/Dockerfile.synchronizer
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ RUN bash -c 'if [[ "${FIPS_MODE}" = "enabled" ]]; \
fi'

# Runner stage
FROM debian:13 AS runner
FROM debian:trixie-20260623-slim AS runner

RUN apt update -y && \
apt upgrade -y && \
Expand Down
2 changes: 1 addition & 1 deletion splitio/proxy/storage/rulebasedsegments.go
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@ func snapshotFromDiskRB(
) int64 {
all, err := src.FetchAll()
if err != nil {
logger.Error("error parsing feature flags from snapshot. No data will be available!: ", err)
logger.Info("error parsing rule-based segments from snapshot. No data will be available!: ", err)
return -1
}

Expand Down
2 changes: 1 addition & 1 deletion splitio/proxy/storage/segments.go
Original file line number Diff line number Diff line change
Expand Up @@ -197,7 +197,7 @@ func populateCachesFromDisk(
) {
all, err := src.FetchAll()
if err != nil {
logger.Error("error popoulating segment cache from disk. Cache will be empty!: ", err)
logger.Info("error popoulating segment cache from disk. Cache will be empty!: ", err)
return
}

Expand Down
2 changes: 1 addition & 1 deletion splitio/proxy/storage/splits.go
Original file line number Diff line number Diff line change
Expand Up @@ -220,7 +220,7 @@ func snapshotFromDisk(
) int64 {
all, err := src.FetchAll()
if err != nil {
logger.Error("error parsing feature flags from snapshot. No data will be available!: ", err)
logger.Info("error parsing feature flags from snapshot. No data will be available!: ", err)
return -1
}

Expand Down
2 changes: 1 addition & 1 deletion splitio/version.go
Original file line number Diff line number Diff line change
Expand Up @@ -2,4 +2,4 @@
package splitio

// Version is the version of this Agent
const Version = "5.12.6"
const Version = "5.12.7"