From 015e5ffd7a42ec0384f49b5af32057a9c1ec12c4 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Fri, 3 Jul 2026 16:28:34 +0000 Subject: [PATCH] build(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.15.20) --- updated-dependencies: - dependency-name: ruff dependency-version: 0.15.20 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 b22027c..3da0a04 100644 --- a/services/api/requirements-dev.txt +++ b/services/api/requirements-dev.txt @@ -4,5 +4,5 @@ httpx>=0.27 # 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.15.20 # static-analysis gate (config in ruff.toml): dead code + real defects bandit>=1.7 # security static analysis (report-only in CI; run before shipping)