From 63c3405695889b0f2b0c8df91b238f0243018c3a Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 13 Apr 2026 14:40:20 +0000 Subject: [PATCH] Bump the fastapi group in /backend with 4 updates Updates the requirements on [fastapi](https://github.com/fastapi/fastapi), [uvicorn](https://github.com/Kludex/uvicorn), [pydantic](https://github.com/pydantic/pydantic) and [pydantic-settings](https://github.com/pydantic/pydantic-settings) to permit the latest version. Updates `fastapi` to 0.135.3 - [Release notes](https://github.com/fastapi/fastapi/releases) - [Commits](https://github.com/fastapi/fastapi/compare/0.115.0...0.135.3) Updates `uvicorn` to 0.44.0 - [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.34.0...0.44.0) Updates `pydantic` to 2.13.0 - [Release notes](https://github.com/pydantic/pydantic/releases) - [Changelog](https://github.com/pydantic/pydantic/blob/main/HISTORY.md) - [Commits](https://github.com/pydantic/pydantic/compare/v2.9.0...v2.13.0) Updates `pydantic-settings` to 2.13.1 - [Release notes](https://github.com/pydantic/pydantic-settings/releases) - [Commits](https://github.com/pydantic/pydantic-settings/compare/v2.6.0...v2.13.1) --- updated-dependencies: - dependency-name: fastapi dependency-version: 0.135.3 dependency-type: direct:production dependency-group: fastapi - dependency-name: uvicorn dependency-version: 0.44.0 dependency-type: direct:production dependency-group: fastapi - dependency-name: pydantic dependency-version: 2.13.0 dependency-type: direct:production dependency-group: fastapi - dependency-name: pydantic-settings dependency-version: 2.13.1 dependency-type: direct:production dependency-group: fastapi ... Signed-off-by: dependabot[bot] --- backend/pyproject.toml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/backend/pyproject.toml b/backend/pyproject.toml index 5a79ca0..3f4edf0 100644 --- a/backend/pyproject.toml +++ b/backend/pyproject.toml @@ -4,10 +4,10 @@ version = "0.1.0" description = "AI-powered multi-agent code review system" requires-python = ">=3.12" dependencies = [ - "fastapi>=0.115.0", - "uvicorn[standard]>=0.34.0", - "pydantic>=2.9.0", - "pydantic-settings>=2.6.0", + "fastapi>=0.135.3", + "uvicorn[standard]>=0.44.0", + "pydantic>=2.13.0", + "pydantic-settings>=2.13.1", "tree-sitter>=0.23.0", "tree-sitter-python>=0.23.0", "tree-sitter-javascript>=0.23.0",