From aae1bc1785d935ce64f21a8c1f7fa644fbbe67fb Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Sat, 22 Mar 2025 03:03:59 +0000 Subject: [PATCH] fix(deps): update dependency gunicorn to v23 [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..72bec3b 100644 --- a/poetry.lock +++ b/poetry.lock @@ -634,22 +634,23 @@ test = ["objgraph", "psutil"] [[package]] name = "gunicorn" -version = "21.2.0" +version = "23.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-23.0.0-py3-none-any.whl", hash = "sha256:ec400d38950de4dfd418cff8328b2c8faed0edb0d517d3394e457c317908ca4d"}, + {file = "gunicorn-23.0.0.tar.gz", hash = "sha256:f014447a0101dc57e294f6c18ca6b40227a4c90e9bdb586042628030cba004ec"}, ] [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 = "0199f703ae60df7e458fb4957d138069f9dff590559fee1325808ac197acc878" diff --git a/pyproject.toml b/pyproject.toml index c187df5..3f65d33 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -21,7 +21,7 @@ pytest = "*" black = "*" isort = "*" mypy = "*" -gunicorn = "^21.2.0" +gunicorn = "^23.0.0" poetry-plugin-export = "^1.8.0" loguru = "^0.7.2" diff --git a/requirements.txt b/requirements.txt index 4f51791..3d83107 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==23.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"