From 2991295aaa2dc09f86cc27a48fac2718ad13e6d2 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Fri, 24 Jul 2026 06:03:13 +0000 Subject: [PATCH] chore(deps-dev): Update ruff requirement in /services/api Updates the requirements on [ruff](https://github.com/astral-sh/ruff) to permit the latest version. - [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.6.0...0.16.0) --- updated-dependencies: - dependency-name: ruff dependency-version: 0.16.0 dependency-type: direct:development ... Signed-off-by: dependabot[bot] --- services/api/requirements-dev.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/services/api/requirements-dev.txt b/services/api/requirements-dev.txt index a94458e8..a708a47a 100644 --- a/services/api/requirements-dev.txt +++ b/services/api/requirements-dev.txt @@ -4,5 +4,5 @@ httpx>=0.28.1 # required by starlette.testclient pytest>=8.0 # optional: collects the run_tests gate pypdf>=4.0 # read generated PDFs in tests (contract documents) -ruff>=0.6 # static-analysis gate (config in ruff.toml): dead code + real defects +ruff>=0.16.0 # static-analysis gate (config in ruff.toml): dead code + real defects bandit>=1.7 # security static analysis (report-only in CI; run before shipping)