From 6469accf857a384c552909823737e8fe446513ea Mon Sep 17 00:00:00 2001 From: Andrew Brookins Date: Mon, 19 Jan 2026 11:50:22 -0800 Subject: [PATCH 1/2] Test Redis 8.4 in CI --- .github/workflows/ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index daa9bfb7..d5dbe7cb 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -77,7 +77,7 @@ jobs: matrix: os: [ ubuntu-latest ] pyver: [ "3.10", "3.11", "3.12", "3.13", "pypy-3.10" ] - redisstack: [ "latest" ] + redisstack: [ "latest", "8.4.0" ] fail-fast: false services: redis: From 079b2275b538de1dec8adf64462c2ef388d15ab3 Mon Sep 17 00:00:00 2001 From: Andrew Brookins Date: Mon, 19 Jan 2026 18:46:53 -0800 Subject: [PATCH 2/2] Use redis:8.4.0 image for Redis 8 testing --- .github/workflows/ci.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index d5dbe7cb..58e8a4ed 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -77,11 +77,11 @@ jobs: matrix: os: [ ubuntu-latest ] pyver: [ "3.10", "3.11", "3.12", "3.13", "pypy-3.10" ] - redisstack: [ "latest", "8.4.0" ] + redisstack: [ "redis/redis-stack:latest", "redis:8.4.0" ] fail-fast: false services: redis: - image: redis/redis-stack:${{ matrix.redisstack }} + image: ${{ matrix.redisstack }} ports: # Maps port 6379 on service container to the host - 6379:6379