Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 8 additions & 1 deletion docs/html/other/changelog.html
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,14 @@
<body>

<h1>Changelog</h1>
<p>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.</p><h2>1.8.2</h2>
<p>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.</p><h2>1.8.3</h2>
<ul>
<li>Updates the pinned version of the requests pip module dependency for compatability with Python-ESXi-Utilities library<ul>
<li>Unpins the dependencies of &#39;requests&#39;</li>
</ul>
</li>
</ul>
<h2>1.8.2</h2>
<ul>
<li>Corrects raw regex string warnings</li>
</ul>
Expand Down
5 changes: 5 additions & 0 deletions docs/markdown/other/changelog.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
12 changes: 6 additions & 6 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -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(),
Expand Down Expand Up @@ -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",
Expand Down
Loading