We are delighted to announce the release of: python-ironic-inspector-client 1.12.0: Python client for Ironic Inspector This release is part of the pike release series. The source is available from: https://git.openstack.org/cgit/openstack/python-ironic-inspector- client Download the package from: https://pypi.python.org/pypi/python-ironic-inspector-client Please report issues through launchpad: https://bugs.launchpad.net/python-ironic-inspector-client For more details, please see below. 1.12.0 ^^^^^^ New Features * Add "introspection interface list" and "introspection interface show" commands to display stored introspection data for the node including attached switch port information. In order to get switch data, LLDP data collection must be enabled by the kernel parameter "ipa-collect-lldp=1" and the inspector plugin "basic_lldp" must be enabled. Changes in python-ironic-inspector-client 1.11.0..1.12.0 -------------------------------------------------------- 045fd9e Updated from global requirements 37702fc Updated from global requirements e4513c9 Add new introspection commands for interface data including lldp 2842862 Updated from global requirements f385469 Updated from global requirements 2b3cc42 Remove support for py34 3a64bf4 Update reno for stable/ocata Diffstat (except docs and test files) ------------------------------------- ironic_inspector_client/resource.py | 93 ++++++++++ ironic_inspector_client/shell.py | 76 +++++++- ironic_inspector_client/test/functional.py | 88 +++++++++ ironic_inspector_client/test/test_shell.py | 202 +++++++++++++++++++++ ironic_inspector_client/test/test_v1.py | 120 ++++++++++++ ironic_inspector_client/v1.py | 79 ++++++++ .../interface-list-show-39cedaca3cd9db9b.yaml | 8 + releasenotes/source/index.rst | 1 + releasenotes/source/ocata.rst | 6 + requirements.txt | 6 +- setup.cfg | 3 +- setup.py | 2 +- test-requirements.txt | 2 +- tox.ini | 2 +- 15 files changed, 711 insertions(+), 8 deletions(-) Requirements updates -------------------- diff --git a/requirements.txt b/requirements.txt index 93f7151..20cb7d8 100644 --- a/requirements.txt +++ b/requirements.txt @@ -7,2 +7,2 @@ oslo.i18n>=2.1.0 # Apache-2.0 -oslo.utils>=3.18.0 # Apache-2.0 -pbr>=1.8 # Apache-2.0 +oslo.utils>=3.20.0 # Apache-2.0 +pbr>=2.0.0 # Apache-2.0 @@ -10 +10 @@ python-openstackclient>=3.3.0 # Apache-2.0 -requests!=2.12.2,>=2.10.0 # Apache-2.0 +requests!=2.12.2,!=2.13.0,>=2.10.0 # Apache-2.0 diff --git a/test-requirements.txt b/test-requirements.txt index cdd8a10..8aef992 100644 --- a/test-requirements.txt +++ b/test-requirements.txt @@ -10 +10 @@ requests-mock>=1.1 # Apache-2.0 -sphinx!=1.3b1,<1.4,>=1.2.1 # BSD +sphinx>=1.5.1 # BSD