From 23b171f7313893e24005bd9ac91e1f293367a522 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Fri, 3 Jul 2026 05:43:09 +0000 Subject: [PATCH] Update alembic requirement from <2.0,>=1.13 to >=1.18.5,<2.0 in /backend Updates the requirements on [alembic](https://github.com/sqlalchemy/alembic) to permit the latest version. - [Release notes](https://github.com/sqlalchemy/alembic/releases) - [Changelog](https://github.com/sqlalchemy/alembic/blob/main/CHANGES) - [Commits](https://github.com/sqlalchemy/alembic/commits) --- updated-dependencies: - dependency-name: alembic dependency-version: 1.18.5 dependency-type: direct:production ... Signed-off-by: dependabot[bot] --- backend/pyproject.toml | 2 +- backend/requirements.txt | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/backend/pyproject.toml b/backend/pyproject.toml index ec93bd2..2d06464 100644 --- a/backend/pyproject.toml +++ b/backend/pyproject.toml @@ -4,7 +4,7 @@ version = "0.1.6" description = "FastAPI backend for TaskBridge" requires-python = ">=3.11" dependencies = [ - "alembic>=1.13,<2.0", + "alembic>=1.18.5,<2.0", "fastapi>=0.115,<1.0", "passlib[bcrypt]>=1.7,<2.0", "pydantic>=2.9,<3.0", diff --git a/backend/requirements.txt b/backend/requirements.txt index d3cbd26..7b51b32 100644 --- a/backend/requirements.txt +++ b/backend/requirements.txt @@ -1,4 +1,4 @@ -alembic>=1.13,<2.0 +alembic>=1.18.5,<2.0 fastapi>=0.115,<1.0 passlib[bcrypt]>=1.7,<2.0 bcrypt>=3.2,<4.0