From ca1262daeb793b5de1f5a267cf03d5b76651dbed Mon Sep 17 00:00:00 2001 From: Lee Yarwood Date: Tue, 7 Apr 2020 11:55:24 +0100 Subject: Microversion 2.86 - Extra spec validation This microversion introduces extra spec validation within the API. No changes are required within novaclient so this change only bumps API_MAX_VERSION. Depends-On: https://review.opendev.org/#/c/708436/ Change-Id: Ic8fef7ee363435e9ac728b87d494593fcc6defc0 --- novaclient/__init__.py | 2 +- novaclient/tests/unit/v2/test_shell.py | 1 + 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/novaclient/__init__.py b/novaclient/__init__.py index 5e3e7701..878cb9a2 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.85") +API_MAX_VERSION = api_versions.APIVersion("2.86") diff --git a/novaclient/tests/unit/v2/test_shell.py b/novaclient/tests/unit/v2/test_shell.py index d21252bd..0994b5bd 100644 --- a/novaclient/tests/unit/v2/test_shell.py +++ b/novaclient/tests/unit/v2/test_shell.py @@ -4537,6 +4537,7 @@ class ShellTest(utils.TestCase): 82, # There are no version-wrapped shell method changes for this. 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. ]) versions_supported = set(range(0, novaclient.API_MAX_VERSION.ver_minor + 1)) -- cgit v1.2.1