We are excited to announce the release of: python-barbicanclient 4.1.0: Client Library for OpenStack Barbican Key Management API This release is part of the newton release series. With source available at: https://git.openstack.org/cgit/openstack/python-barbicanclient/ Please report issues through launchpad: https://bugs.launchpad.net/python-barbicanclient/ For more details, please see below. Changes in python-barbicanclient 4.0.0..4.1.0 --------------------------------------------- 06066e7 Updated from global requirements 8ee0012 Fix jenkins failing on coverage report b128a4d Fixed python-barbicanclient functional tests. e2ce2af Updated from global requirements 850fbd1 Remove unused import 12ad639 Updated from global requirements d683ac9 Update mailmap for Douglas Mendizábal 9dd65b2 Update the home-page with developer documentation link d37b847 Issue deprecation message for the barbican CLI d6d5f86 Fixed python-barbicanclient functional tests. d134057 Censoring secrets payload value from debug log 8d3b5b3 Fix argument order for assertEqual to (exp, obs) 459f68f Fixed barbican client order list 3a4d6ec Display error description 4db1aec Updated from global requirements 6d26923 Remove unused import logging c1cc35a Make Client test documentation similar to Barbican Diffstat (except docs and test files) ------------------------------------- .mailmap | 4 +- barbicanclient/barbican.py | 10 +- barbicanclient/base.py | 8 + barbicanclient/client.py | 4 +- barbicanclient/containers.py | 3 +- barbicanclient/orders.py | 8 +- barbicanclient/osc_plugin.py | 3 - barbicanclient/secrets.py | 4 +- .../client/v1/functional/test_containers.py | 18 +-- .../client/v1/functional/test_orders.py | 60 +++---- .../client/v1/functional/test_secrets.py | 62 ++++---- requirements.txt | 8 +- setup.cfg | 2 +- test-requirements.txt | 8 +- tox.ini | 2 +- 29 files changed, 348 insertions(+), 197 deletions(-) Requirements updates -------------------- diff --git a/requirements.txt b/requirements.txt index 2b75e2b..c58e7de 100644 --- a/requirements.txt +++ b/requirements.txt @@ -5 +5 @@ pbr>=1.6 # Apache-2.0 -requests!=2.9.0,>=2.8.1 # Apache-2.0 +requests>=2.10.0 # Apache-2.0 @@ -7,2 +7,2 @@ six>=1.9.0 # MIT -python-keystoneclient!=1.8.0,!=2.1.0,>=1.6.0 # Apache-2.0 -cliff!=1.16.0,>=1.15.0 # Apache-2.0 +python-keystoneclient!=2.1.0,>=2.0.0 # Apache-2.0 +cliff!=1.16.0,!=1.17.0,>=1.15.0 # Apache-2.0 @@ -11 +11 @@ oslo.serialization>=1.10.0 # Apache-2.0 -oslo.utils>=3.5.0 # Apache-2.0 +oslo.utils>=3.16.0 # Apache-2.0 diff --git a/test-requirements.txt b/test-requirements.txt index c9bdfc0..6ef223b 100644 --- a/test-requirements.txt +++ b/test-requirements.txt @@ -7,3 +7,3 @@ hacking<0.11,>=0.10.0 -fixtures>=1.3.1 # Apache-2.0/BSD -requests-mock>=0.7.0 # Apache-2.0 -mock>=1.2 # BSD +fixtures>=3.0.0 # Apache-2.0/BSD +requests-mock>=1.0 # Apache-2.0 +mock>=2.0 # BSD @@ -17 +17 @@ python-openstackclient>=2.1.0 # Apache-2.0 -sphinx!=1.2.0,!=1.3b1,<1.3,>=1.1.2 # BSD +sphinx!=1.3b1,<1.3,>=1.2.1 # BSD