We are satisfied to announce the release of: keystonemiddleware 2.4.0: Middleware for OpenStack Identity This release is part of the mitaka release series. With source available at: http://git.openstack.org/cgit/openstack/keystonemiddleware With package available at: https://pypi.python.org/pypi/keystonemiddleware For more details, please see the git log history below and: http://launchpad.net/keystonemiddleware/+milestone/2.4.0 Please report issues through launchpad: http://bugs.launchpad.net/keystonemiddleware Changes in keystonemiddleware 2.3.0..2.4.0 ------------------------------------------ 2074ca8 Updated from global requirements 313b61e Updated from global requirements fbfc787 Remove auth headers in AuthProtocol b453a8f Use request helpers for token_info/token_auth 7e362fd Make __all__ immutable 9cbd47b Move response status check to the call 7dcbdf7 only make token invalid when it really is 88547b5 auto-generate release history 121f9cd Add shields.io version/downloads links/badges into README.rst 8b74d28 Updated from global requirements ce04350 Change ignore-errors to ignore_errors c9447db Cleanup a few auth_token comments ba9ab51 Seperate standalone cache tests dfd2280 Import _memcache_pool normally 36d7964 Create Environment cache pool e9ad518 Handle memcache pool arguments collectively Diffstat (except docs and test files) ------------------------------------- .coveragerc | 2 +- README.rst | 8 + keystonemiddleware/auth_token/__init__.py | 55 ++-- keystonemiddleware/auth_token/_cache.py | 88 +++---- keystonemiddleware/auth_token/_identity.py | 17 +- keystonemiddleware/auth_token/_memcache_pool.py | 10 +- keystonemiddleware/auth_token/_request.py | 10 + keystonemiddleware/opts.py | 4 +- .../unit/auth_token/test_auth_token_middleware.py | 286 ++++++--------------- requirements.txt | 6 +- setup.py | 2 +- test-requirements.txt | 2 +- 19 files changed, 372 insertions(+), 311 deletions(-) Requirements updates -------------------- diff --git a/requirements.txt b/requirements.txt index 5298cd5..8ee15b4 100644 --- a/requirements.txt +++ b/requirements.txt @@ -11 +11 @@ oslo.utils>=2.0.0 # Apache-2.0 -pbr<2.0,>=1.6 +pbr>=1.6 @@ -14 +14 @@ python-keystoneclient>=1.6.0 -requests>=2.5.2 +requests!=2.8.0,>=2.5.2 @@ -16 +16 @@ six>=1.9.0 -WebOb>=1.2.3 +WebOb<1.5.0,>=1.2.3 diff --git a/test-requirements.txt b/test-requirements.txt index 677f008..f42f04d 100644 --- a/test-requirements.txt +++ b/test-requirements.txt @@ -13 +13 @@ oslotest>=1.10.0 # Apache-2.0 -oslo.messaging!=1.17.0,!=1.17.1,>=1.16.0 # Apache-2.0 +oslo.messaging!=1.17.0,!=1.17.1,!=2.6.0,>=1.16.0 # Apache-2.0