[release][keystone] keystoneauth release 1.2.0 (mitaka)
We are overjoyed to announce the release of: keystoneauth 1.2.0: Authentication Library for OpenStack Identity This release is part of the mitaka release series. With source available at: http://git.openstack.org/cgit/openstack/keystoneauth With package available at: https://pypi.python.org/pypi/keystoneauth1 For more details, please see the git log history below and: http://launchpad.net/keystoneauth/+milestone/1.2.0 Please report issues through launchpad: http://bugs.launchpad.net/keystoneauth Changes in keystoneauth1 1.1.0..1.2.0 ------------------------------------- 4fd8531 Expose bind data via AccessInfo 14a2586 Return None from generic plugin if failure 3ccc374 Updated from global requirements b2484fd Copy AccessInfo tests from keystoneclient 54c0c6a Fix deprecated options in oslo_config d6ffc5b Updated from global requirements 67280cb Add url as a deprecated alias for endpoint 8f68031 Updated from global requirements 7bb7f56 auto-generate release history e264bdb Make RST section delineation length match title e212009 Remove "Features" section from README cddd78f Update the project description 10c5961 Make __all__ immutable f1885f0 Add UnknownConnectionError to __all__ 662394b remove references to keystone CLI 280a912 Add shields.io version/downloads links/badges into README.rst 45a95b6 Allow fetching oslo.config Opts from plugins a0e1d74 Fix doc session example b3a454c add openid connect plugins 3915102 Change ignore-errors to ignore_errors 4501513 Updated from global requirements Diffstat (except docs and test files) ------------------------------------- .coveragerc | 2 +- README.rst | 27 ++- keystoneauth1/access/__init__.py | 4 +- keystoneauth1/access/access.py | 39 ++- keystoneauth1/exceptions/auth_plugins.py | 4 +- keystoneauth1/exceptions/base.py | 2 +- keystoneauth1/exceptions/catalog.py | 4 +- keystoneauth1/exceptions/connection.py | 5 +- keystoneauth1/exceptions/discovery.py | 4 +- keystoneauth1/exceptions/http.py | 4 +- keystoneauth1/exceptions/response.py | 2 +- keystoneauth1/exceptions/service_providers.py | 2 +- keystoneauth1/fixture/__init__.py | 4 +- keystoneauth1/fixture/discovery.py | 4 +- keystoneauth1/fixture/v2.py | 3 + keystoneauth1/fixture/v3.py | 3 + keystoneauth1/identity/__init__.py | 9 +- keystoneauth1/identity/generic/__init__.py | 4 +- keystoneauth1/identity/generic/password.py | 4 +- keystoneauth1/identity/v3/__init__.py | 8 +- keystoneauth1/identity/v3/base.py | 2 +- keystoneauth1/identity/v3/federation.py | 2 +- keystoneauth1/identity/v3/k2k.py | 2 +- keystoneauth1/identity/v3/oidc.py | 266 +++++++++++++++++++++ keystoneauth1/identity/v3/password.py | 2 +- keystoneauth1/identity/v3/token.py | 2 +- keystoneauth1/loading/__init__.py | 4 +- keystoneauth1/loading/_plugins/admin_token.py | 1 + keystoneauth1/loading/_plugins/identity/v3.py | 58 +++++ keystoneauth1/loading/base.py | 4 +- keystoneauth1/loading/cli.py | 4 +- keystoneauth1/loading/conf.py | 18 +- keystoneauth1/loading/opts.py | 4 +- keystoneauth1/loading/session.py | 4 +- requirements.txt | 2 +- setup.cfg | 2 + test-requirements.txt | 4 +- 51 files changed, 1175 insertions(+), 252 deletions(-) Requirements updates -------------------- diff --git a/requirements.txt b/requirements.txt index f1e4df1..54b348c 100644 --- a/requirements.txt +++ b/requirements.txt @@ -7 +7 @@ iso8601>=0.1.9 -requests>=2.5.2 +requests!=2.8.0,>=2.5.2 diff --git a/test-requirements.txt b/test-requirements.txt index dc735af..186bac7 100644 --- a/test-requirements.txt +++ b/test-requirements.txt @@ -17 +17 @@ oslotest>=1.10.0 # Apache-2.0 -os-testr>=0.1.0 +os-testr>=0.4.1 @@ -21 +21 @@ sphinx!=1.2.0,!=1.3b1,<1.3,>=1.1.2 -tempest-lib>=0.6.1 +tempest-lib>=0.10.0
participants (1)
-
davanum@gmail.com