From c8eaae6a2d189e8a4b2cbca0bcce1cb1497f6f51 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 13 Apr 2026 19:10:06 +0000 Subject: [PATCH] chore(deps): Update alembic requirement 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.4 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 ff69ae1..4fd773c 100644 --- a/backend/pyproject.toml +++ b/backend/pyproject.toml @@ -7,7 +7,7 @@ dependencies = [ "uvicorn[standard]>=0.22.0", "pydantic-settings>=2.0.0", "sqlmodel>=0.0.14", - "alembic>=1.11.0", + "alembic>=1.18.4", "asyncpg>=0.28.0", "redis>=5.0.0", "python-multipart>=0.0.6",