From 98d7e7fa1204a9b9e75efe2231ed493228ed0faa Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Fri, 13 Feb 2026 13:15:18 +0000 Subject: [PATCH 1/2] Update redis requirement from <6,>=5.0 to >=5.0,<8 in /backend Updates the requirements on [redis](https://github.com/redis/redis-py) to permit the latest version. - [Release notes](https://github.com/redis/redis-py/releases) - [Changelog](https://github.com/redis/redis-py/blob/master/CHANGES) - [Commits](https://github.com/redis/redis-py/compare/v5.0.0...v7.1.1) --- updated-dependencies: - dependency-name: redis dependency-version: 7.1.1 dependency-type: direct:production ... Signed-off-by: dependabot[bot] --- backend/pyproject.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/backend/pyproject.toml b/backend/pyproject.toml index 809ad040..90597c20 100644 --- a/backend/pyproject.toml +++ b/backend/pyproject.toml @@ -26,7 +26,7 @@ dependencies = [ "whitenoise>=6.8,<7", "django-environ>=0.11,<1", "psycopg[binary]>=3.1,<4", - "redis>=5.0,<6", + "redis>=5.0,<8", "channels>=4.1,<5", "channels-redis>=4.2,<5", "daphne>=4.1,<5", From c07cb9bfaa8bad48466a8f5956366e42446a6046 Mon Sep 17 00:00:00 2001 From: Shinsuke Sugaya Date: Sat, 21 Feb 2026 23:39:48 +0900 Subject: [PATCH 2/2] fix: update uv.lock for redis <8 dependency change Dependabot updated pyproject.toml but did not regenerate uv.lock, causing CI to fail on `uv sync --check`. Co-Authored-By: Claude Opus 4.6 --- backend/uv.lock | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/backend/uv.lock b/backend/uv.lock index e42f2b18..9b55972c 100644 --- a/backend/uv.lock +++ b/backend/uv.lock @@ -1806,7 +1806,7 @@ requires-dist = [ { name = "psycopg", extras = ["binary"], specifier = ">=3.1,<4" }, { name = "pyjwt", specifier = ">=2.9,<3" }, { name = "python-json-logger", specifier = ">=3.2,<4" }, - { name = "redis", specifier = ">=5.0,<6" }, + { name = "redis", specifier = ">=5.0,<8" }, { name = "scikit-learn", specifier = ">=1.6,<2" }, { name = "whitenoise", specifier = ">=6.8,<7" }, ]