From 71e3447ebcd735f62dccecee2e7d023634840304 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Thu, 6 Mar 2025 07:37:13 +0000 Subject: [PATCH 1/2] Bump jinja2 from 3.1.5 to 3.1.6 Bumps [jinja2](https://github.com/pallets/jinja) from 3.1.5 to 3.1.6. - [Release notes](https://github.com/pallets/jinja/releases) - [Changelog](https://github.com/pallets/jinja/blob/main/CHANGES.rst) - [Commits](https://github.com/pallets/jinja/compare/3.1.5...3.1.6) --- updated-dependencies: - dependency-name: jinja2 dependency-type: direct:production ... Signed-off-by: dependabot[bot] --- pyproject.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pyproject.toml b/pyproject.toml index c41080478..51a958147 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -45,7 +45,7 @@ dependencies = [ "fastapi-etag==0.4.0", "more-itertools~=10.6.0", "itsdangerous", - "Jinja2==3.1.5", + "Jinja2==3.1.6", "orjson==3.10.15", "psycopg[binary]==3.2.5", "pydantic[email]~=2.10.6", From bdc077db63e611292da79ba7004fea12cf9bf09a Mon Sep 17 00:00:00 2001 From: Peter Boers Date: Thu, 6 Mar 2025 08:56:17 +0100 Subject: [PATCH 2/2] Fix mypy --- test/unit_tests/helpers.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/unit_tests/helpers.py b/test/unit_tests/helpers.py index d13d5ef21..58df5283e 100644 --- a/test/unit_tests/helpers.py +++ b/test/unit_tests/helpers.py @@ -1,7 +1,7 @@ import json from unittest import mock -from deepdiff import DeepDiff # type: ignore +from deepdiff import DeepDiff def assert_no_diff(expected, actual, exclude_paths=None):