Merge "Bump client microversion to 2.38"

This commit is contained in:
Jenkins 2016-11-15 16:08:18 +00:00 committed by Gerrit Code Review
commit 7a0b17e224
3 changed files with 7 additions and 1 deletions

View File

@ -25,4 +25,4 @@ API_MIN_VERSION = api_versions.APIVersion("2.1")
# when client supported the max version, and bumped sequentially, otherwise
# the client may break due to server side new version may include some
# backward incompatible change.
API_MAX_VERSION = api_versions.APIVersion("2.37")
API_MAX_VERSION = api_versions.APIVersion("2.38")

View File

@ -3080,6 +3080,7 @@ class ShellTest(utils.TestCase):
# novaclient
34, # doesn't require any changes in novaclient
37, # There are no versioned wrapped shell method changes for this
38, # doesn't require any changes in novaclient
])
versions_supported = set(range(0,
novaclient.API_MAX_VERSION.ver_minor + 1))

View File

@ -0,0 +1,5 @@
---
upgrade:
- Support for microversion 2.38 added. As of microversion 2.38, invalid
statuses passed to 'nova list --status invalid_status' will result in a
HTTP 400 Bad Request error response.