diff options
Diffstat (limited to 'docs')
-rw-r--r-- | docs/labs/lab06-provisioning/vc_task_retrigger.py | 4 | ||||
-rw-r--r-- | docs/release-notes-1.4.0.rst | 20 |
2 files changed, 22 insertions, 2 deletions
diff --git a/docs/labs/lab06-provisioning/vc_task_retrigger.py b/docs/labs/lab06-provisioning/vc_task_retrigger.py index b5586ee..cfee3a1 100644 --- a/docs/labs/lab06-provisioning/vc_task_retrigger.py +++ b/docs/labs/lab06-provisioning/vc_task_retrigger.py @@ -7,7 +7,7 @@ import argparse import ssl import sys -from pkg_resources import parse_version +from packaging.version import parse from getpass import getpass from cvprac.cvp_client import CvpClient import requests.packages.urllib3 @@ -56,7 +56,7 @@ def main(): # Get the current CVP version cvp_release = clnt.api.get_cvp_info()['version'] - if parse_version(cvp_release) < parse_version('2020.3.0'): + if parse(cvp_release) < parse('2020.3.0'): # For older CVP, we manually trigger a compliance check try: clnt.api.check_compliance('root', 'container') diff --git a/docs/release-notes-1.4.0.rst b/docs/release-notes-1.4.0.rst new file mode 100644 index 0000000..b6c81fb --- /dev/null +++ b/docs/release-notes-1.4.0.rst @@ -0,0 +1,20 @@ +###### +v1.4.0 +###### + +2024-5-6 + +Enhancements +^^^^^^^^^^^^ + +* Move from pkg_resources to packaging for Python 3.12 support. (`271 <https://github.com/aristanetworks/cvprac/pull/271>`_) [`mharista <https://github.com/mharista>`_] +* Add support for searchTopology V3 endpoint. (`275 <https://github.com/aristanetworks/cvprac/pull/275>`_) [`mharista <https://github.com/mharista>`_] + +Fixed +^^^^^ + +* Add missing url encoding for get_user. (`264 <https://github.com/aristanetworks/cvprac/pull/264>`_) [`noredistribution <https://github.com/noredistribution>`_] +* Updated the enrollment endpoint for CVaaS. (`269 <https://github.com/aristanetworks/cvprac/pull/269>`_) [`noredistribution <https://github.com/noredistribution>`_] +* Add timeout to get_configlets_and_mappers(). (`270 <https://github.com/aristanetworks/cvprac/pull/270>`_) [`noredistribution <https://github.com/noredistribution>`_] +* Update setup.py to reference python3 only. (`272 <https://github.com/aristanetworks/cvprac/pull/272>`_) [`mharista <https://github.com/mharista>`_] +* Python3 lint/format fixes. (`273 <https://github.com/aristanetworks/cvprac/pull/273>`_) [`mharista <https://github.com/mharista>`_] |