Here is the first pass at a fixture to handle the case that ceilometer is doing with the hacked-up memcache interface. This will be something supported by keystonemiddleware so it should not break randomly in the future: https://review.openstack.org/#/c/249794/
On Thu, Nov 26, 2015 at 7:27 AM, Dmitry Tantsur <[email protected]> wrote: > I suspect it could break ironic stable/kilo in the same way as 2.0.0 > release. Still investigating, checking if > https://review.openstack.org/#/c/250341/ will also fix it. Example of > failing patch: https://review.openstack.org/#/c/248365/ > > On 11/23/2015 08:54 PM, [email protected] wrote: > >> We are pumped to announce the release of: >> >> keystonemiddleware 1.5.3: Middleware for OpenStack Identity >> >> This release is part of the kilo stable 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/1.5.3 >> >> Please report issues through launchpad: >> >> http://bugs.launchpad.net/keystonemiddleware >> >> Notable changes >> ---------------- >> >> will now require python-requests<2.8.0 >> >> Changes in keystonemiddleware 1.5.2..1.5.3 >> ------------------------------------------ >> >> d56d96c Updated from global requirements >> 9aafe8d Updated from global requirements >> cc746dc Add an explicit test failure condition when auth_token is missing >> 5b1e18f Fix list_opts test to not check all deps >> 217cd3d Updated from global requirements >> 518e9c3 Ensure cache keys are a known/fixed length >> 033c151 Updated from global requirements >> >> Diffstat (except docs and test files) >> ------------------------------------- >> >> keystonemiddleware/auth_token/_cache.py | 19 >> ++++++++++++++++++- >> requirements.txt | 19 >> ++++++++++--------- >> setup.py | 1 - >> test-requirements-py3.txt | 18 >> +++++++++--------- >> test-requirements.txt | 18 >> +++++++++--------- >> 7 files changed, 69 insertions(+), 37 deletions(-) >> >> >> Requirements updates >> -------------------- >> >> diff --git a/requirements.txt b/requirements.txt >> index e3288a1..23308cd 100644 >> --- a/requirements.txt >> +++ b/requirements.txt >> @@ -7,9 +7,9 @@ iso8601>=0.1.9 >> -oslo.config>=1.9.3,<1.10.0 # Apache-2.0 >> -oslo.context>=0.2.0,<0.3.0 # Apache-2.0 >> -oslo.i18n>=1.5.0,<1.6.0 # Apache-2.0 >> -oslo.serialization>=1.4.0,<1.5.0 # Apache-2.0 >> -oslo.utils>=1.4.0,<1.5.0 # Apache-2.0 >> -pbr>=0.6,!=0.7,<1.0 >> -pycadf>=0.8.0,<0.9.0 >> -python-keystoneclient>=1.1.0,<1.4.0 >> -requests>=2.2.0,!=2.4.0 >> +oslo.config<1.10.0,>=1.9.3 # Apache-2.0 >> +oslo.context<0.3.0,>=0.2.0 # Apache-2.0 >> +oslo.i18n<1.6.0,>=1.5.0 # Apache-2.0 >> +oslo.serialization<1.5.0,>=1.4.0 # Apache-2.0 >> +oslo.utils!=1.4.1,<1.5.0,>=1.4.0 # Apache-2.0 >> +pbr!=0.7,<1.0,>=0.6 >> +pycadf<0.9.0,>=0.8.0 >> +python-keystoneclient<1.4.0,>=1.2.0 >> +requests!=2.4.0,<2.8.0,>=2.2.0 >> @@ -16,0 +17 @@ six>=1.9.0 >> +stevedore<1.4.0,>=1.3.0 # Apache-2.0 >> diff --git a/test-requirements.txt b/test-requirements.txt >> index 11d9e17..5ab5eb0 100644 >> --- a/test-requirements.txt >> +++ b/test-requirements.txt >> @@ -5 +5 @@ >> -hacking>=0.10.0,<0.11 >> +hacking<0.11,>=0.10.0 >> @@ -9,2 +9,2 @@ discover >> -fixtures>=0.3.14 >> -mock>=1.0 >> +fixtures<1.3.0,>=0.3.14 >> +mock<1.1.0,>=1.0 >> @@ -12,5 +12,5 @@ pycrypto>=2.6 >> -oslosphinx>=2.5.0,<2.6.0 # Apache-2.0 >> -oslotest>=1.5.1,<1.6.0 # Apache-2.0 >> -oslo.messaging>=1.8.0,<1.9.0 # Apache-2.0 >> -requests-mock>=0.6.0 # Apache-2.0 >> -sphinx>=1.1.2,!=1.2.0,!=1.3b1,<1.3 >> +oslosphinx<2.6.0,>=2.5.0 # Apache-2.0 >> +oslotest<1.6.0,>=1.5.1 # Apache-2.0 >> +oslo.messaging<1.9.0,>=1.8.0 # Apache-2.0 >> +requests-mock>=0.6.0 # Apache-2.0 >> +sphinx!=1.2.0,!=1.3b1,<1.3,>=1.1.2 >> @@ -19 +19 @@ testresources>=0.2.4 >> -testtools>=0.9.36,!=1.2.0 >> +testtools!=1.2.0,>=0.9.36 >> >> >> >> _______________________________________________ >> OpenStack-announce mailing list >> [email protected] >> http://lists.openstack.org/cgi-bin/mailman/listinfo/openstack-announce >> >> > > __________________________________________________________________________ > OpenStack Development Mailing List (not for usage questions) > Unsubscribe: [email protected]?subject:unsubscribe > http://lists.openstack.org/cgi-bin/mailman/listinfo/openstack-dev >
__________________________________________________________________________ OpenStack Development Mailing List (not for usage questions) Unsubscribe: [email protected]?subject:unsubscribe http://lists.openstack.org/cgi-bin/mailman/listinfo/openstack-dev
