From 51cdc385c83c1782bb6bed2b29ee8770c291c140 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 15 Jun 2026 03:44:36 +0000 Subject: [PATCH] fix(deps): bump the backend group in /backend with 3 updates Bumps the backend group in /backend with 3 updates: [fastapi](https://github.com/fastapi/fastapi), [pytest](https://github.com/pytest-dev/pytest) and [ruff](https://github.com/astral-sh/ruff). Updates `fastapi` from 0.136.3 to 0.137.0 - [Release notes](https://github.com/fastapi/fastapi/releases) - [Commits](https://github.com/fastapi/fastapi/compare/0.136.3...0.137.0) Updates `pytest` from 9.0.3 to 9.1.0 - [Release notes](https://github.com/pytest-dev/pytest/releases) - [Changelog](https://github.com/pytest-dev/pytest/blob/main/CHANGELOG.rst) - [Commits](https://github.com/pytest-dev/pytest/compare/9.0.3...9.1.0) Updates `ruff` from 0.15.16 to 0.15.17 - [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.16...0.15.17) --- updated-dependencies: - dependency-name: fastapi dependency-version: 0.137.0 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: backend - dependency-name: pytest dependency-version: 9.1.0 dependency-type: direct:development update-type: version-update:semver-minor dependency-group: backend - dependency-name: ruff dependency-version: 0.15.17 dependency-type: direct:development update-type: version-update:semver-patch dependency-group: backend ... Signed-off-by: dependabot[bot] --- backend/pyproject.toml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/backend/pyproject.toml b/backend/pyproject.toml index 8a78783..5150224 100644 --- a/backend/pyproject.toml +++ b/backend/pyproject.toml @@ -10,7 +10,7 @@ name = "devops-demo-backend" version = "0.1.0" requires-python = ">=3.12" dependencies = [ - "fastapi==0.136.3", + "fastapi==0.137.0", "uvicorn[standard]==0.49.0", "pydantic==2.13.4", "psycopg[binary]==3.3.4", @@ -25,9 +25,9 @@ dependencies = [ [project.optional-dependencies] dev = [ "mypy==2.1.0", - "pytest==9.0.3", + "pytest==9.1.0", "pytest-asyncio==1.4.0", - "ruff==0.15.16", + "ruff==0.15.17", ] [tool.setuptools]