Skip to content

Commit 49674f4

Browse files
authored
Merge pull request #86 from contentstack/fix/snyk-fix-22-07-2026
fix: patch Snyk vulnerabilities in pip, setuptools, and black
2 parents 4a951dd + 90f717a commit 49674f4

4 files changed

Lines changed: 13 additions & 5 deletions

File tree

CHANGELOG.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,13 @@
11
# Changelog
22

3+
## v1.6.1 (2026-07-22)
4+
5+
### Fix: Dependency security upgrades
6+
7+
- Upgraded `black` to `>=26.3.1` to fix a high-severity Directory Traversal vulnerability ([SNYK-PYTHON-BLACK-15518063](https://security.snyk.io/vuln/SNYK-PYTHON-BLACK-15518063)).
8+
- Upgraded `pip` to `>=26.1.2` to fix Arbitrary File Upload ([SNYK-PYTHON-PIP-16115367](https://security.snyk.io/vuln/SNYK-PYTHON-PIP-16115367)), Arbitrary Code Injection ([SNYK-PYTHON-PIP-16316401](https://security.snyk.io/vuln/SNYK-PYTHON-PIP-16316401)), and Directory Traversal ([SNYK-PYTHON-PIP-16964647](https://security.snyk.io/vuln/SNYK-PYTHON-PIP-16964647)) vulnerabilities.
9+
- Upgraded `setuptools` to `>=83.0.0` to fix an Improper Unicode Encoding Handling vulnerability ([SNYK-PYTHON-SETUPTOOLS-17895075](https://security.snyk.io/vuln/SNYK-PYTHON-SETUPTOOLS-17895075)).
10+
311
## v1.6.0 (2026-06-22)
412

513
### New feature: Multi-region endpoint resolution

contentstack_utils/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,6 +39,6 @@
3939
__title__ = 'contentstack_utils'
4040
__author__ = 'contentstack'
4141
__status__ = 'debug'
42-
__version__ = '1.6.0'
42+
__version__ = '1.6.1'
4343
__endpoint__ = 'cdn.contentstack.io'
4444
__contact__ = 'support@contentstack.com'

requirements.txt

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
1-
pip~=26.0
2-
setuptools==80.3.1
1+
pip>=26.1.2
2+
setuptools>=83.0.0
33
lxml~=6.1.0
44
ruff==0.11.5
55
pytest>=7.0.0
66
pytest-cov>=4.0.0
77
pytest-html>=4.2.0
8-
black>=24.3.0
8+
black>=26.3.1
99
flake8>=6.0.0
1010
isort>=5.0.0

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ def run(self):
3434
long_description_content_type="text/markdown",
3535
url="https://github.com/contentstack/contentstack-utils-python",
3636
license='MIT',
37-
version='1.6.0',
37+
version='1.6.1',
3838
install_requires=[
3939

4040
],

0 commit comments

Comments
 (0)