From d712c0fbc7a320f6eea4f8741f2f8d6e517a6507 Mon Sep 17 00:00:00 2001 From: zhangbailin Date: Tue, 24 Mar 2020 11:10:29 +0800 Subject: Microversion 2.84 - action event fault details This patch adds support for microversion 2.84 "Expose instance action event details out of the API" [1]. [1] https://review.opendev.org/#/c/694430/ No changes are required in the novaclient side, so just increment the microversion. Depends-On: https://review.opendev.org/#/c/694430/ Implements blueprint action-event-fault-details Change-Id: I1d71284de9a5f25f4554dd2ec7291d5706381de7 --- 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 f86d680f..adcb85dd 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.83") +API_MAX_VERSION = api_versions.APIVersion("2.84") diff --git a/novaclient/tests/unit/v2/test_shell.py b/novaclient/tests/unit/v2/test_shell.py index c8d3dc9b..f00f583e 100644 --- a/novaclient/tests/unit/v2/test_shell.py +++ b/novaclient/tests/unit/v2/test_shell.py @@ -4505,6 +4505,7 @@ class ShellTest(utils.TestCase): 77, # There are no version-wrapped shell method changes for this. 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. ]) versions_supported = set(range(0, novaclient.API_MAX_VERSION.ver_minor + 1)) -- cgit v1.2.1