Skip to content

Commit 2bd721e

Browse files
authored
Merge pull request #439 from os2display/feature/redis-8-upgrade
chore: bump local dev redis image to redis:8
2 parents 665d38c + 9faf14e commit 2bd721e

2 files changed

Lines changed: 8 additions & 1 deletion

File tree

CHANGELOG.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,8 @@ All notable changes to this project will be documented in this file.
1010
- Aligned API and Nginx image labels with the OCI image spec: dropped deprecated `LABEL maintainer`,
1111
added `org.opencontainers.image.{authors,vendor,documentation,base.name}`, and fixed the Nginx image's
1212
`title`/`description` so it stops inheriting the source-repo defaults.
13+
- Bumped the local dev Redis image from `redis:6` to `redis:8`. Production deployments are unaffected
14+
(they bring their own Redis); Symfony 6.4's cache adapter and the bundled phpredis 6.3 work as-is.
1315

1416
## [3.0.0-rc2] - 2026-05-05
1517

docker-compose.override.yml

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,12 @@ services:
66
- "traefik.http.middlewares.redirect-to-https.redirectscheme.scheme=https"
77

88
redis:
9-
image: "redis:6"
9+
# Redis 8 GA'd 2025-05; back to OSI-approved licensing (AGPLv3) and
10+
# ships RedisJSON / RediSearch / RedisTimeSeries / RedisBloom in-tree.
11+
# Symfony 6.4 cache adapter only checks `redis_version >= 4.0`; the
12+
# phpredis 6.3 shipped in itkdev/php8.4-fpm supports the new RESP3
13+
# niceties without any code change here.
14+
image: "redis:8"
1015
command: redis-server --maxmemory 128mb --maxmemory-policy allkeys-lru
1116
networks:
1217
- app

0 commit comments

Comments
 (0)