diff --git a/CHANGELOG.md b/CHANGELOG.md index 6cc2173..5f2025b 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,13 @@ # CHANGELOG ## Content Management SDK For Python +--- +## v1.10.2 + +#### Date: 13 July 2026 + +- Removed hardcoded password literals in unit tests to resolve Snyk CWE-798 (Use of Hardcoded Passwords) findings. + --- ## v1.10.1 diff --git a/contentstack_management/__init__.py b/contentstack_management/__init__.py index 3313428..da6464f 100644 --- a/contentstack_management/__init__.py +++ b/contentstack_management/__init__.py @@ -102,7 +102,7 @@ def get_contentstack_endpoint(region='us', service='', omit_https=False): __author__ = 'dev-ex' __status__ = 'debug' __region__ = 'na' -__version__ = '1.10.1' +__version__ = '1.10.2' __host__ = 'api.contentstack.io' __protocol__ = 'https://' __api_version__ = 'v3'