From ae0826b06ec08cbddfff36d9745a9a5057f4b34b Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 3 Aug 2026 21:08:05 +0000 Subject: [PATCH] build(deps): bump the python group across 1 directory with 5 updates Updates the requirements on [fastapi](https://github.com/fastapi/fastapi), [uvicorn](https://github.com/Kludex/uvicorn), [prometheus-client](https://github.com/prometheus/client_python), [mcp](https://github.com/modelcontextprotocol/python-sdk) and [ruff](https://github.com/astral-sh/ruff) to permit the latest version. Updates `fastapi` to 0.141.1 - [Release notes](https://github.com/fastapi/fastapi/releases) - [Commits](https://github.com/fastapi/fastapi/compare/0.139.2...0.141.1) Updates `uvicorn` to 0.52.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.51.0...0.52.0) Updates `prometheus-client` to 0.26.0 - [Release notes](https://github.com/prometheus/client_python/releases) - [Commits](https://github.com/prometheus/client_python/compare/v0.25.0...v0.26.0) Updates `mcp` to 2.0.0 - [Release notes](https://github.com/modelcontextprotocol/python-sdk/releases) - [Changelog](https://github.com/modelcontextprotocol/python-sdk/blob/main/RELEASE.md) - [Commits](https://github.com/modelcontextprotocol/python-sdk/compare/v1.28.1...v2.0.0) Updates `ruff` to 0.16.1 - [Release notes](https://github.com/astral-sh/ruff/releases) - [Changelog](https://github.com/astral-sh/ruff/blob/main/CHANGELOG.md) - [Commits](https://github.com/astral-sh/ruff/compare/0.15.22...0.16.1) --- updated-dependencies: - dependency-name: fastapi dependency-version: 0.141.1 dependency-type: direct:production dependency-group: python - dependency-name: uvicorn dependency-version: 0.52.0 dependency-type: direct:production dependency-group: python - dependency-name: prometheus-client dependency-version: 0.26.0 dependency-type: direct:production dependency-group: python - dependency-name: mcp dependency-version: 2.0.0 dependency-type: direct:production dependency-group: python - dependency-name: ruff dependency-version: 0.16.1 dependency-type: direct:development dependency-group: python ... Signed-off-by: dependabot[bot] --- backend/pyproject.toml | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/backend/pyproject.toml b/backend/pyproject.toml index 1fcf276..27a6d51 100644 --- a/backend/pyproject.toml +++ b/backend/pyproject.toml @@ -6,16 +6,16 @@ requires-python = ">=3.11" license = { text = "MIT" } authors = [{ name = "Ian Coutinho" }] dependencies = [ - "fastapi>=0.139.2", - "uvicorn[standard]>=0.51.0", + "fastapi>=0.141.1", + "uvicorn[standard]>=0.52.0", "sqlmodel>=0.0.39", "httpx>=0.28.1", "apprise>=1.12.0", "jinja2>=3.1.6", "pyyaml>=6.0.3", "typer>=0.27.0", - "prometheus-client>=0.25.0", - "mcp>=1.28.1", + "prometheus-client>=0.26.0", + "mcp>=2.0.0", ] [project.optional-dependencies] @@ -24,7 +24,7 @@ dev = [ "pytest-asyncio>=1.4.0", "pytest-cov>=7.1.0", "respx>=0.23.1", - "ruff>=0.15.22", + "ruff>=0.16.1", "pyright>=1.1.411", "pip-audit>=2.10.1", ]