From 978411d8923631ff8d7fe4464b3269d3e197ea5f Mon Sep 17 00:00:00 2001 From: sunil-lakshman <104969541+sunil-lakshman@users.noreply.github.com> Date: Wed, 13 May 2026 15:11:13 +0530 Subject: [PATCH] Added urllib version bump --- CHANGELOG.md | 7 +++++++ contentstack_management/__init__.py | 2 +- requirements.txt | 2 +- setup.py | 2 +- 4 files changed, 10 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 568734c..f6777ff 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,13 @@ # CHANGELOG ## Content Management SDK For Python +--- +## v1.8.2 + +#### Date: 13 May 2026 + +- Bumped minimum `urllib3` dependency to `>=2.7.0,<3.0.0` (aligned with `requirements.txt`). + --- ## v1.8.1 diff --git a/contentstack_management/__init__.py b/contentstack_management/__init__.py index f416031..4f5c3f1 100644 --- a/contentstack_management/__init__.py +++ b/contentstack_management/__init__.py @@ -82,7 +82,7 @@ __author__ = 'dev-ex' __status__ = 'debug' __region__ = 'na' -__version__ = '1.8.1' +__version__ = '1.8.2' __host__ = 'api.contentstack.io' __protocol__ = 'https://' __api_version__ = 'v3' diff --git a/requirements.txt b/requirements.txt index 3b2042e..8d07db2 100644 --- a/requirements.txt +++ b/requirements.txt @@ -2,7 +2,7 @@ python-dotenv>=1.2.2 # <82: pkg_resources (used by coverage-badge and similar tools) was removed in setuptools 82+ setuptools>=80.0.0,<82.0.0 requests>=2.33.0,<3.0.0 -urllib3>=2.6.3,<3.0.0 +urllib3>=2.7.0,<3.0.0 pylint>=2.0.0 bson>=0.5.9,<1.0.0 requests-toolbelt>=1.0.0,<2.0.0 diff --git a/setup.py b/setup.py index 661c8e0..165b475 100644 --- a/setup.py +++ b/setup.py @@ -53,7 +53,7 @@ def get_author_email(package): "bson >= 0.5.9", "requests >= 2.5.4", "requests-toolbelt >= 0.3.1", - "urllib3 >= 2.6.3", + "urllib3 >= 2.7.0,<3.0.0", ], extras_require={ "dev": ["pytest>=7.0", "twine>=4.0.2", "packaging>=24.0", "dotenv>=0.0.5"],