From 12199a8be9dfffdf4a488523ff8afd66d0bf4808 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Sun, 23 Aug 2026 02:39:27 +0000 Subject: [PATCH] build(deps): update uvicorn requirement in /backend Updates the requirements on [uvicorn](https://github.com/Kludex/uvicorn) to permit the latest version. - [Release notes](https://github.com/Kludex/uvicorn/releases) - [Changelog](https://github.com/Kludex/uvicorn/blob/main/docs/release-notes.md) - [Commits](https://github.com/Kludex/uvicorn/compare/0.32.0...0.52.4) --- updated-dependencies: - dependency-name: uvicorn dependency-version: 0.52.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 2272a25..0676d7e 100644 --- a/backend/pyproject.toml +++ b/backend/pyproject.toml @@ -7,7 +7,7 @@ requires-python = ">=3.12" license = { text = "Apache-2.0" } dependencies = [ "fastapi>=0.115", - "uvicorn[standard]>=0.32", + "uvicorn[standard]>=0.52.4", "pydantic>=2.9", "pydantic-settings>=2.5", "sqlalchemy>=2.0.36",