diff --git a/docs/html/other/changelog.html b/docs/html/other/changelog.html index 1850461..7ca7aaf 100644 --- a/docs/html/other/changelog.html +++ b/docs/html/other/changelog.html @@ -6,7 +6,14 @@

Changelog

-

This page was created to track changes to versions of GraphEx. The changelog was created in v1.4 of GraphEx and only changes starting from that version are tracked here.

1.8.2

+

This page was created to track changes to versions of GraphEx. The changelog was created in v1.4 of GraphEx and only changes starting from that version are tracked here.

1.8.3

+ +

1.8.2

diff --git a/docs/markdown/other/changelog.md b/docs/markdown/other/changelog.md index 0930320..cce3f15 100644 --- a/docs/markdown/other/changelog.md +++ b/docs/markdown/other/changelog.md @@ -2,6 +2,11 @@ This page was created to track changes to versions of GraphEx. The changelog was created in v1.4 of GraphEx and only changes starting from that version are tracked here. +## 1.8.3 + +- Updates the pinned version of the requests pip module dependency for compatability with Python-ESXi-Utilities library + - Unpins the dependencies of 'requests' + ## 1.8.2 - Corrects raw regex string warnings diff --git a/setup.py b/setup.py index f372858..a35323d 100644 --- a/setup.py +++ b/setup.py @@ -22,7 +22,7 @@ def read_readme(): setup( name="mitre-graphex", - version="1.18.2", + version="1.18.3", author="The MITRE Corporation", description="Visual programming tool for environment automation.", long_description=read_readme(), @@ -96,12 +96,12 @@ def read_readme(): "pyopenssl==25.3.0", "python-dateutil==2.8.2", "pyyaml==6.0.3", - "requests==2.32.5", + "requests==2.33.1", ## start requests deps - "certifi==2025.11.12", - "charset-normalizer==3.4.4", - "idna==3.11", - "urllib3==2.5.0", + # "certifi==2025.11.12", + # "charset-normalizer==3.4.4", + # "idna==3.11", + # "urllib3==2.5.0", # end requests deps # Needed due to deprecation of pkg_resources usage "setuptools==80.9.0",