summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLee Yarwood <lyarwood@redhat.com>2020-03-25 14:26:53 +0000
committerSylvain Bauza <sbauza@redhat.com>2020-04-10 20:15:05 +0000
commit7ed265bbf580cb35876738f16b1d430efd75aa2a (patch)
tree82c585299634991ad5c1f8f319a70f7ed1894873
parentca1262daeb793b5de1f5a267cf03d5b76651dbed (diff)
downloadpython-novaclient-7ed265bbf580cb35876738f16b1d430efd75aa2a.tar.gz
Microversion 2.87 - Stable device boot from volume rescue
This microversion is used to request a stable device rescue for boot from volume instances and will only succeed when the compute hosting the instance reports the COMPUTE_RESCUE_BFV trait. No changes are required within novaclient so this change only bumps API_MAX_VERSION. Depends-On: https://review.opendev.org/#/c/701430/ Change-Id: I7885b8558db7657abbfe1f45877f52e947f5f655
-rw-r--r--novaclient/__init__.py2
-rw-r--r--novaclient/tests/unit/v2/test_shell.py1
2 files changed, 2 insertions, 1 deletions
diff --git a/novaclient/__init__.py b/novaclient/__init__.py
index 878cb9a2..0b29e4f1 100644
--- a/novaclient/__init__.py
+++ b/novaclient/__init__.py
@@ -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.86")
+API_MAX_VERSION = api_versions.APIVersion("2.87")
diff --git a/novaclient/tests/unit/v2/test_shell.py b/novaclient/tests/unit/v2/test_shell.py
index 0994b5bd..040f8cba 100644
--- a/novaclient/tests/unit/v2/test_shell.py
+++ b/novaclient/tests/unit/v2/test_shell.py
@@ -4538,6 +4538,7 @@ class ShellTest(utils.TestCase):
83, # There are no version-wrapped shell method changes for this.
84, # There are no version-wrapped shell method changes for this.
86, # doesn't require any changes in novaclient.
+ 87, # doesn't require any changes in novaclient.
])
versions_supported = set(range(0,
novaclient.API_MAX_VERSION.ver_minor + 1))