Skip to content
Merged
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
2 changes: 2 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,8 @@ All notable changes to this project will be documented in this file.
- Aligned API and Nginx image labels with the OCI image spec: dropped deprecated `LABEL maintainer`,
added `org.opencontainers.image.{authors,vendor,documentation,base.name}`, and fixed the Nginx image's
`title`/`description` so it stops inheriting the source-repo defaults.
- Bumped the local dev Redis image from `redis:6` to `redis:8`. Production deployments are unaffected
(they bring their own Redis); Symfony 6.4's cache adapter and the bundled phpredis 6.3 work as-is.

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

Expand Down
7 changes: 6 additions & 1 deletion docker-compose.override.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,12 @@ services:
- "traefik.http.middlewares.redirect-to-https.redirectscheme.scheme=https"

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