From 89ed247c551acb79ecc5167e250c540f1eac0c36 Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Tue, 6 Aug 2024 09:28:10 +0000 Subject: [PATCH] Update dependency gunicorn to v22 [SECURITY] --- poetry.lock | 13 +++++++------ pyproject.toml | 2 +- requirements.txt | 2 +- 3 files changed, 9 insertions(+), 8 deletions(-) diff --git a/poetry.lock b/poetry.lock index 507d4d1..176ab59 100644 --- a/poetry.lock +++ b/poetry.lock @@ -634,22 +634,23 @@ test = ["objgraph", "psutil"] [[package]] name = "gunicorn" -version = "21.2.0" +version = "22.0.0" description = "WSGI HTTP Server for UNIX" optional = false -python-versions = ">=3.5" +python-versions = ">=3.7" files = [ - {file = "gunicorn-21.2.0-py3-none-any.whl", hash = "sha256:3213aa5e8c24949e792bcacfc176fef362e7aac80b76c56f6b5122bf350722f0"}, - {file = "gunicorn-21.2.0.tar.gz", hash = "sha256:88ec8bff1d634f98e61b9f65bc4bf3cd918a90806c6f5c48bc5603849ec81033"}, + {file = "gunicorn-22.0.0-py3-none-any.whl", hash = "sha256:350679f91b24062c86e386e198a15438d53a7a8207235a78ba1b53df4c4378d9"}, + {file = "gunicorn-22.0.0.tar.gz", hash = "sha256:4a0b436239ff76fb33f11c07a16482c521a7e09c1ce3cc293c2330afe01bec63"}, ] [package.dependencies] packaging = "*" [package.extras] -eventlet = ["eventlet (>=0.24.1)"] +eventlet = ["eventlet (>=0.24.1,!=0.36.0)"] gevent = ["gevent (>=1.4.0)"] setproctitle = ["setproctitle"] +testing = ["coverage", "eventlet", "gevent", "pytest", "pytest-cov"] tornado = ["tornado (>=0.2)"] [[package]] @@ -1717,4 +1718,4 @@ test = ["big-O", "importlib-resources", "jaraco.functools", "jaraco.itertools", [metadata] lock-version = "2.0" python-versions = ">=3.10,<4.0" -content-hash = "f1d82a55f054ff7d4b920279a68bc74b72445fde77ea3d9dae29d7ba75ae3882" +content-hash = "969d130103c35f660dc8d681b91dadd9dd49015db37babdfe8ab5131e4dcfd08" diff --git a/pyproject.toml b/pyproject.toml index c187df5..84fcb9e 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -21,7 +21,7 @@ pytest = "*" black = "*" isort = "*" mypy = "*" -gunicorn = "^21.2.0" +gunicorn = "^22.0.0" poetry-plugin-export = "^1.8.0" loguru = "^0.7.2" diff --git a/requirements.txt b/requirements.txt index 4f51791..ecf6f2c 100644 --- a/requirements.txt +++ b/requirements.txt @@ -6,7 +6,7 @@ exceptiongroup==1.2.1 ; python_version >= "3.10" and python_version < "3.11" flask-sqlalchemy==3.1.1 ; python_version >= "3.10" and python_version < "4.0" flask==3.0.3 ; python_version >= "3.10" and python_version < "4.0" greenlet==3.0.3 ; python_version >= "3.10" and python_version < "4.0" and (platform_machine == "aarch64" or platform_machine == "ppc64le" or platform_machine == "x86_64" or platform_machine == "amd64" or platform_machine == "AMD64" or platform_machine == "win32" or platform_machine == "WIN32") -gunicorn==21.2.0 ; python_version >= "3.10" and python_version < "4.0" +gunicorn==22.0.0 ; python_version >= "3.10" and python_version < "4.0" iniconfig==2.0.0 ; python_version >= "3.10" and python_version < "4.0" isort==5.13.2 ; python_version >= "3.10" and python_version < "4.0" itsdangerous==2.2.0 ; python_version >= "3.10" and python_version < "4.0"