diff -Nru python-glanceclient-3.1.0/ChangeLog python-glanceclient-3.1.1/ChangeLog --- python-glanceclient-3.1.0/ChangeLog 2020-04-07 13:31:32.000000000 +0000 +++ python-glanceclient-3.1.1/ChangeLog 2020-04-13 22:19:04.000000000 +0000 @@ -1,6 +1,14 @@ CHANGES ======= +3.1.1 +----- + +* Add release note for glanceclient 3.1.1 +* Pass --all-stores, --allow-failure as bool to API +* Update TOX/UPPER\_CONSTRAINTS\_FILE for stable/ussuri +* Update .gitreview for stable/ussuri + 3.1.0 ----- diff -Nru python-glanceclient-3.1.0/debian/changelog python-glanceclient-3.1.1/debian/changelog --- python-glanceclient-3.1.0/debian/changelog 2020-04-09 14:30:23.000000000 +0000 +++ python-glanceclient-3.1.1/debian/changelog 2020-04-16 15:28:38.000000000 +0000 @@ -1,3 +1,9 @@ +python-glanceclient (1:3.1.1-0ubuntu1) focal; urgency=medium + + * New upstream release for OpenStack Ussuri. + + -- Corey Bryant Thu, 16 Apr 2020 11:28:38 -0400 + python-glanceclient (1:3.1.0-0ubuntu1) focal; urgency=medium * New upstream release for OpenStack Ussuri. diff -Nru python-glanceclient-3.1.0/glanceclient/v2/images.py python-glanceclient-3.1.1/glanceclient/v2/images.py --- python-glanceclient-3.1.0/glanceclient/v2/images.py 2020-04-07 13:30:24.000000000 +0000 +++ python-glanceclient-3.1.1/glanceclient/v2/images.py 2020-04-13 22:18:14.000000000 +0000 @@ -335,13 +335,13 @@ if stores: data['stores'] = stores if allow_failure: - data['all_stores_must_succeed'] = 'false' + data['all_stores_must_succeed'] = False if backend is not None: headers['x-image-meta-store'] = backend if all_stores: - data['all_stores'] = 'true' + data['all_stores'] = True if allow_failure: - data['all_stores_must_succeed'] = 'false' + data['all_stores_must_succeed'] = False if uri: if method == 'web-download': diff -Nru python-glanceclient-3.1.0/PKG-INFO python-glanceclient-3.1.1/PKG-INFO --- python-glanceclient-3.1.0/PKG-INFO 2020-04-07 13:31:32.000000000 +0000 +++ python-glanceclient-3.1.1/PKG-INFO 2020-04-13 22:19:04.000000000 +0000 @@ -1,6 +1,6 @@ Metadata-Version: 1.2 Name: python-glanceclient -Version: 3.1.0 +Version: 3.1.1 Summary: OpenStack Image API Client Library Home-page: https://docs.openstack.org/python-glanceclient/latest/ Author: OpenStack diff -Nru python-glanceclient-3.1.0/python_glanceclient.egg-info/pbr.json python-glanceclient-3.1.1/python_glanceclient.egg-info/pbr.json --- python-glanceclient-3.1.0/python_glanceclient.egg-info/pbr.json 2020-04-07 13:31:32.000000000 +0000 +++ python-glanceclient-3.1.1/python_glanceclient.egg-info/pbr.json 2020-04-13 22:19:04.000000000 +0000 @@ -1 +1 @@ -{"git_version": "3e91562", "is_release": true} \ No newline at end of file +{"git_version": "1d8fa3d", "is_release": true} \ No newline at end of file diff -Nru python-glanceclient-3.1.0/python_glanceclient.egg-info/PKG-INFO python-glanceclient-3.1.1/python_glanceclient.egg-info/PKG-INFO --- python-glanceclient-3.1.0/python_glanceclient.egg-info/PKG-INFO 2020-04-07 13:31:32.000000000 +0000 +++ python-glanceclient-3.1.1/python_glanceclient.egg-info/PKG-INFO 2020-04-13 22:19:04.000000000 +0000 @@ -1,6 +1,6 @@ Metadata-Version: 1.2 Name: python-glanceclient -Version: 3.1.0 +Version: 3.1.1 Summary: OpenStack Image API Client Library Home-page: https://docs.openstack.org/python-glanceclient/latest/ Author: OpenStack diff -Nru python-glanceclient-3.1.0/python_glanceclient.egg-info/SOURCES.txt python-glanceclient-3.1.1/python_glanceclient.egg-info/SOURCES.txt --- python-glanceclient-3.1.0/python_glanceclient.egg-info/SOURCES.txt 2020-04-07 13:31:32.000000000 +0000 +++ python-glanceclient-3.1.1/python_glanceclient.egg-info/SOURCES.txt 2020-04-13 22:19:04.000000000 +0000 @@ -117,6 +117,7 @@ releasenotes/notes/2.16.0_Release-43ebe06b74a272ba.yaml releasenotes/notes/2.17.0_Release-c67392be3b428d10.yaml releasenotes/notes/3.1.0_Release-1337ddc753b88905.yaml +releasenotes/notes/3.1.1_Release-a452f4709d7d9a7d.yaml releasenotes/notes/bp-use-keystoneauth-e12f300e58577b13.yaml releasenotes/notes/copy-existing-image-619b7e6bc3394446.yaml releasenotes/notes/del_from_store-2d807c3038283907.yaml diff -Nru python-glanceclient-3.1.0/releasenotes/notes/3.1.1_Release-a452f4709d7d9a7d.yaml python-glanceclient-3.1.1/releasenotes/notes/3.1.1_Release-a452f4709d7d9a7d.yaml --- python-glanceclient-3.1.0/releasenotes/notes/3.1.1_Release-a452f4709d7d9a7d.yaml 1970-01-01 00:00:00.000000000 +0000 +++ python-glanceclient-3.1.1/releasenotes/notes/3.1.1_Release-a452f4709d7d9a7d.yaml 2020-04-13 22:18:14.000000000 +0000 @@ -0,0 +1,10 @@ +--- +prelude: | + This version of python-glanceclient fixes an important issue where under + some circumstances the client was not sending information of the + appropriate data type when contacting the Image Service API. +fixes: + - | + Bug 1871674_: Pass boolean instead of string for --all-stores, --allow-failure options + + .. _1871674: https://code.launchpad.net/bugs/1871674 diff -Nru python-glanceclient-3.1.0/tox.ini python-glanceclient-3.1.1/tox.ini --- python-glanceclient-3.1.0/tox.ini 2020-04-07 13:30:24.000000000 +0000 +++ python-glanceclient-3.1.1/tox.ini 2020-04-13 22:18:14.000000000 +0000 @@ -9,7 +9,7 @@ OS_STDERR_NOCAPTURE=False deps = - -c{env:UPPER_CONSTRAINTS_FILE:https://releases.openstack.org/constraints/upper/master} + -c{env:UPPER_CONSTRAINTS_FILE:https://releases.openstack.org/constraints/upper/ussuri} -r{toxinidir}/requirements.txt -r{toxinidir}/test-requirements.txt commands = stestr run --slowest {posargs} @@ -56,7 +56,7 @@ [testenv:releasenotes] basepython = python3 deps = - -c{env:UPPER_CONSTRAINTS_FILE:https://releases.openstack.org/constraints/upper/master} + -c{env:UPPER_CONSTRAINTS_FILE:https://releases.openstack.org/constraints/upper/ussuri} -r{toxinidir}/doc/requirements.txt commands = sphinx-build -a -E -W -d releasenotes/build/doctrees -b html releasenotes/source releasenotes/build/html