From 72b5b48f3a66b2b2d79aabc52fb25708802bdf0e Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 27 Oct 2025 05:06:12 +0000 Subject: [PATCH] security(deps): update connexion[swagger-ui] requirement Updates the requirements on [connexion[swagger-ui]](https://github.com/spec-first/connexion) to permit the latest version. - [Release notes](https://github.com/spec-first/connexion/releases) - [Commits](https://github.com/spec-first/connexion/compare/2.6.0...3.3.0) --- updated-dependencies: - dependency-name: connexion[swagger-ui] dependency-version: 3.3.0 dependency-type: direct:production ... Signed-off-by: dependabot[bot] --- backend/api/src/main/python/requirements.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) mode change 100755 => 100644 backend/api/src/main/python/requirements.txt diff --git a/backend/api/src/main/python/requirements.txt b/backend/api/src/main/python/requirements.txt old mode 100755 new mode 100644 index 1ccaf60..c8a8272 --- a/backend/api/src/main/python/requirements.txt +++ b/backend/api/src/main/python/requirements.txt @@ -2,7 +2,7 @@ connexion[swagger-ui] >= 2.6.0; python_version>="3.6" # 2.3 is the last version that supports python 3.4-3.5 connexion[swagger-ui] <= 2.3.0; python_version=="3.5" or python_version=="3.4" # prevent breaking dependencies from advent of connexion>=3.0 -connexion[swagger-ui] <= 2.14.2; python_version>"3.4" +connexion[swagger-ui] <= 3.3.0; python_version>"3.4" # connexion requires werkzeug but connexion < 2.4.0 does not install werkzeug # we must peg werkzeug versions below to fix connexion # https://github.com/zalando/connexion/pull/1044