summaryrefslogtreecommitdiffstats
path: root/docs/release-notes-0.9.0.rst
diff options
context:
space:
mode:
authorDaniel Baumann <daniel.baumann@progress-linux.org>2023-05-11 09:04:53 +0000
committerDaniel Baumann <daniel.baumann@progress-linux.org>2023-05-13 09:34:21 +0000
commit47553c43d71b7b1144f912ab9679f5b60e858fa2 (patch)
tree08378beaeeea8f9bb2686d3037c7b6f5062bb948 /docs/release-notes-0.9.0.rst
parentInitial commit. (diff)
downloadcvprac-a65feb76b09ace829c4c389df1bb986491d035ae.tar.xz
cvprac-a65feb76b09ace829c4c389df1bb986491d035ae.zip
Adding upstream version 1.3.1+dfsg.upstream/1.3.1+dfsg
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'docs/release-notes-0.9.0.rst')
-rw-r--r--docs/release-notes-0.9.0.rst32
1 files changed, 32 insertions, 0 deletions
diff --git a/docs/release-notes-0.9.0.rst b/docs/release-notes-0.9.0.rst
new file mode 100644
index 0000000..3f8dd5c
--- /dev/null
+++ b/docs/release-notes-0.9.0.rst
@@ -0,0 +1,32 @@
+######
+v0.9.0
+######
+
+2018-04-17
+
+New Modules
+^^^^^^^^^^^
+
+* Added Inventory handling methods. (`51 <https://github.com/aristanetworks/cvprac/pull/51>`_) [`cheynearista <https://github.com/cheynearista>`_]
+ add_device_to_inventory, retry_add_to_inventory, delete_device, delete_devices, get_non_connected_device_count, save_inventory.
+* Add basic logout api function. (`d52f4a0 <https://github.com/aristanetworks/cvprac/commit/d52f4a07c49e358d86ca0701d5885cddfd231f98>`_) [`mharista <https://github.com/mharista>`_]
+ Added for future enhanced handling of session logout.
+
+Enhancements
+^^^^^^^^^^^^
+
+* Add ability to provide a query parameter to get_inventory. (`423d555 <https://github.com/aristanetworks/cvprac/commit/423d555adfd0a015ee96540fdc1048a0e26c5c84>`_) [`mharista <https://github.com/mharista>`_]
+ Query string can be used as a match to filter returned inventory list. For example you can filter on a specific version of EOS.
+* Add contact info to docs. (`693d3ba <https://github.com/aristanetworks/cvprac/commit/693d3ba57caa72bb326adbae98b64dba8bc0f104>`_) [`mharista <https://github.com/mharista>`_]
+
+Fixed
+^^^^^
+
+* Fix get_device_by_name to return only the device with the given FQDN. (`41 <https://github.com/aristanetworks/cvprac/pull/41>`_)
+ This was returning all devices that contained the provided name as a string in their data. Now verify the FQDN matches the name before returning.
+* Fix get_devices_in_container to only return devices in the specified container. (`2b26d0c <https://github.com/aristanetworks/cvprac/commit/2b26d0cff773ff687e0d7c0460dd64c9927f2383>`_) [`mharista <https://github.com/mharista>`_]
+ This was previously returning all devices from get_inventory that matched a query string anywhere in their data instead of specific to the parent container.
+* Remove 'id': 1 from data structs in requests. (`52 <https://github.com/aristanetworks/cvprac/pull/52>`_) [`grybak-arista <https://github.com/grybak-arista>`_]
+ This key:value being included int he request data causes an error in 2018 versions of CVP.
+* Add fix for special characters in object names in url. (`53 <https://github.com/aristanetworks/cvprac/pull/53>`_) [`mharista <https://github.com/mharista>`_]
+ Special characters in request parameters (for example a container name Rack2+_DC11) would cause unexpected results. This are now properly escaped for HTTP.