From f506cc5b2540fc66db2b3640f81ebaa0cc762932 Mon Sep 17 00:00:00 2001 From: Igor Malinovskiy Date: Thu, 30 Jul 2026 17:59:14 +0200 Subject: [PATCH] Bump 8.10 test env to official 8.10.0 release Replace the 8.10-rc2 custom image with the released redislabs/client-libs-test:8.10.0, including the compose fallback image tag. Co-Authored-By: Claude Fable 5 --- .github/workflows/integration.yml | 2 +- tests/dockers/.env.v8.10 | 2 +- tests/dockers/docker-compose.yml | 4 ++-- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/integration.yml b/.github/workflows/integration.yml index 06dad0f3..7572f458 100644 --- a/.github/workflows/integration.yml +++ b/.github/workflows/integration.yml @@ -39,7 +39,7 @@ jobs: fail-fast: false matrix: # Full version set runs only on the nightly schedule; PRs and pushes - # test a reduced set (7.2 LTS, 7.4 LTS, 8.2 LTS, 8.8 current stable, 8.10 - next) to keep CI fast. + # test a reduced set (7.2 LTS, 7.4 LTS, 8.2 LTS, 8.8, 8.10 current stable) to keep CI fast. redis-version: ${{ fromJSON(github.event_name == 'schedule' && '["8.10", "8.8", "8.6", "8.4", "8.2", "7.4", "7.2", "6.2"]' || '["8.10", "8.8", "8.2", "7.4", "7.2"]') }} diff --git a/tests/dockers/.env.v8.10 b/tests/dockers/.env.v8.10 index fc2ef24e..88ee913e 100644 --- a/tests/dockers/.env.v8.10 +++ b/tests/dockers/.env.v8.10 @@ -2,4 +2,4 @@ # Used by the run-tests GitHub Action # Redis CE image version (Redis 8+ includes modules natively) -CLIENT_LIBS_TEST_IMAGE=redislabs/client-libs-test:custom-30445126297-debian +CLIENT_LIBS_TEST_IMAGE=redislabs/client-libs-test:8.10.0 diff --git a/tests/dockers/docker-compose.yml b/tests/dockers/docker-compose.yml index 923d25e5..9d51059b 100644 --- a/tests/dockers/docker-compose.yml +++ b/tests/dockers/docker-compose.yml @@ -3,7 +3,7 @@ services: redis: - image: ${CLIENT_LIBS_TEST_IMAGE:-redislabs/client-libs-test:8.10-rc2} + image: ${CLIENT_LIBS_TEST_IMAGE:-redislabs/client-libs-test:8.10.0} container_name: redis-standalone environment: - TLS_ENABLED=yes @@ -28,7 +28,7 @@ services: - all cluster: - image: ${CLIENT_LIBS_TEST_IMAGE:-redislabs/client-libs-test:8.10-rc2} + image: ${CLIENT_LIBS_TEST_IMAGE:-redislabs/client-libs-test:8.10.0} container_name: redis-cluster environment: - REDIS_CLUSTER=yes