From 95ec0f1d08736822e7ce3507935600f7548e1e56 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Tue, 9 Jun 2026 03:26:47 +0000 Subject: [PATCH] chore(deps): update uvicorn requirement in /services/agents 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.27.0...0.49.0) --- updated-dependencies: - dependency-name: uvicorn dependency-version: 0.49.0 dependency-type: direct:production ... Signed-off-by: dependabot[bot] --- services/agents/pyproject.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/services/agents/pyproject.toml b/services/agents/pyproject.toml index 991c856f..f9d219e9 100644 --- a/services/agents/pyproject.toml +++ b/services/agents/pyproject.toml @@ -8,7 +8,7 @@ license = "MIT" [tool.poetry.dependencies] python = "^3.11" fastapi = ">=0.109,<0.137" -uvicorn = {extras = ["standard"], version = ">=0.27,<0.49"} +uvicorn = {extras = ["standard"], version = ">=0.27,<0.50"} pydantic = "^2.5.0" pydantic-settings = "^2.1.0" langchain = ">=0.3.0,<0.4.0"