[barbican] python-barbicanclient 4.5.0 (pike)
We high-spiritedly announce the release of: python-barbicanclient 4.5.0: Client Library for OpenStack Barbican Key Management API This release is part of the pike release series. The source is available from: https://git.openstack.org/cgit/openstack/python-barbicanclient/ Download the package from: https://tarballs.openstack.org/python-barbicanclient/ Please report issues through launchpad: https://bugs.launchpad.net/python-barbicanclient/ For more details, please see below. Changes in python-barbicanclient 4.4.0..4.5.0 --------------------------------------------- ea509a5 Update api references according to refactor result e0e3703 Add secret_type filter to CLI f844a0e Updated from global requirements a95c1a1 Update the documentation link for doc migration 51d8bfa Updated from global requirements c497189 fix default version 3c7d909 Updated from global requirements e599dfd Update doc references 2479529 import content from cli-reference in openstack-manuals 9af9169 rearrange the existing docs into the new standard layout 4eed5c8 Switch from oslosphinx to openstackdocstheme 97906c8 Refactor barbicanclient Diffstat (except docs and test files) ------------------------------------- README.rst | 10 +- barbicanclient/_i18n.py | 2 +- barbicanclient/acls.py | 473 ------------ barbicanclient/barbican_cli/acls.py | 263 ------- barbicanclient/barbican_cli/cas.py | 57 -- barbicanclient/barbican_cli/containers.py | 139 ---- barbicanclient/barbican_cli/orders.py | 140 ---- barbicanclient/barbican_cli/secrets.py | 173 ----- barbicanclient/barbican_cli/v1/__init__.py | 0 barbicanclient/barbican_cli/v1/acls.py | 263 +++++++ barbicanclient/barbican_cli/v1/cas.py | 57 ++ barbicanclient/barbican_cli/v1/containers.py | 139 ++++ barbicanclient/barbican_cli/v1/orders.py | 140 ++++ barbicanclient/barbican_cli/v1/secrets.py | 177 +++++ barbicanclient/cas.py | 240 ------ barbicanclient/client.py | 35 +- barbicanclient/containers.py | 770 ------------------- barbicanclient/exceptions.py | 5 + barbicanclient/orders.py | 546 -------------- barbicanclient/secrets.py | 605 --------------- barbicanclient/v1/__init__.py | 0 barbicanclient/v1/acls.py | 473 ++++++++++++ barbicanclient/v1/cas.py | 240 ++++++ barbicanclient/v1/client.py | 69 ++ barbicanclient/v1/containers.py | 769 +++++++++++++++++++ barbicanclient/v1/orders.py | 546 ++++++++++++++ barbicanclient/v1/secrets.py | 602 +++++++++++++++ requirements.txt | 6 +- setup.cfg | 42 +- test-requirements.txt | 2 +- 62 files changed, 7745 insertions(+), 6800 deletions(-) Requirements updates -------------------- diff --git a/requirements.txt b/requirements.txt index 626ca00..44da02a 100644 --- a/requirements.txt +++ b/requirements.txt @@ -7,2 +7,2 @@ six>=1.9.0 # MIT -cliff>=2.6.0 # Apache-2.0 -keystoneauth1>=2.21.0 # Apache-2.0 +cliff>=2.8.0 # Apache-2.0 +keystoneauth1>=3.0.1 # Apache-2.0 @@ -10 +10 @@ oslo.i18n!=3.15.2,>=2.1.0 # Apache-2.0 -oslo.serialization>=1.10.0 # Apache-2.0 +oslo.serialization!=2.19.1,>=1.10.0 # Apache-2.0 diff --git a/test-requirements.txt b/test-requirements.txt index 5c4d755..4eedab7 100644 --- a/test-requirements.txt +++ b/test-requirements.txt @@ -18 +18 @@ sphinx>=1.6.2 # BSD -oslosphinx>=4.7.0 # Apache-2.0 +openstackdocstheme>=1.11.0 # Apache-2.0
participants (1)
-
no-reply@openstack.org