Skip to content

Commit b324543

Browse files
Merge pull request #152 from contentstack/fix/snyk-fix
Added urllib version bump
2 parents c29fca3 + 978411d commit b324543

4 files changed

Lines changed: 10 additions & 3 deletions

File tree

CHANGELOG.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,13 @@
11
# CHANGELOG
22

33
## Content Management SDK For Python
4+
---
5+
## v1.8.2
6+
7+
#### Date: 13 May 2026
8+
9+
- Bumped minimum `urllib3` dependency to `>=2.7.0,<3.0.0` (aligned with `requirements.txt`).
10+
411
---
512
## v1.8.1
613

contentstack_management/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -82,7 +82,7 @@
8282
__author__ = 'dev-ex'
8383
__status__ = 'debug'
8484
__region__ = 'na'
85-
__version__ = '1.8.1'
85+
__version__ = '1.8.2'
8686
__host__ = 'api.contentstack.io'
8787
__protocol__ = 'https://'
8888
__api_version__ = 'v3'

requirements.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ python-dotenv>=1.2.2
22
# <82: pkg_resources (used by coverage-badge and similar tools) was removed in setuptools 82+
33
setuptools>=80.0.0,<82.0.0
44
requests>=2.33.0,<3.0.0
5-
urllib3>=2.6.3,<3.0.0
5+
urllib3>=2.7.0,<3.0.0
66
pylint>=2.0.0
77
bson>=0.5.9,<1.0.0
88
requests-toolbelt>=1.0.0,<2.0.0

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ def get_author_email(package):
5353
"bson >= 0.5.9",
5454
"requests >= 2.5.4",
5555
"requests-toolbelt >= 0.3.1",
56-
"urllib3 >= 2.6.3",
56+
"urllib3 >= 2.7.0,<3.0.0",
5757
],
5858
extras_require={
5959
"dev": ["pytest>=7.0", "twine>=4.0.2", "packaging>=24.0", "dotenv>=0.0.5"],

0 commit comments

Comments
 (0)