From 0d2df7c1277d44e7456ac3ec3490c26cbe71689b Mon Sep 17 00:00:00 2001 From: apetre-ionos <142817204+apetre-ionos@users.noreply.github.com> Date: Thu, 3 Sep 2026 12:23:46 +0300 Subject: [PATCH] fix: bump urllib3 lower bound to 2.2.2 to address CVE-2024-37891 --- pyproject.toml | 2 +- requirements.txt | 2 +- setup.py | 4 ++-- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/pyproject.toml b/pyproject.toml index dc1ddf2..25cc982 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -12,7 +12,7 @@ include = ["ionoscloud_cdn/py.typed"] [tool.poetry.dependencies] python = "^3.9" -urllib3 = ">= 2.1.0, < 3.0.0" +urllib3 = ">= 2.2.2, < 3.0.0" python-dateutil = ">= 2.8.2" pydantic = ">= 2" typing-extensions = ">= 4.7.1" diff --git a/requirements.txt b/requirements.txt index 6cbb2b9..3f74e59 100644 --- a/requirements.txt +++ b/requirements.txt @@ -1,4 +1,4 @@ -urllib3 >= 2.1.0, < 3.0.0 +urllib3 >= 2.2.2, < 3.0.0 python_dateutil >= 2.8.2 pydantic >= 2 typing-extensions >= 4.7.1 diff --git a/setup.py b/setup.py index e9635c3..3a70e22 100644 --- a/setup.py +++ b/setup.py @@ -24,7 +24,7 @@ VERSION = "1.0.0-beta.2" PYTHON_REQUIRES = ">= 3.9" REQUIRES = [ - "urllib3 >= 2.1.0, < 3.0.0", + "urllib3 >= 2.2.2, < 3.0.0", "python-dateutil >= 2.8.2", "pydantic >= 2", "typing-extensions >= 4.7.1", @@ -46,4 +46,4 @@ This API manages CDN distributions. """, # noqa: E501 package_data={"ionoscloud_cdn": ["py.typed"]}, -) \ No newline at end of file +)