summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRafael Weingärtner <rafael@apache.org>2021-01-27 16:01:26 -0300
committerRafael Weingärtner <rafael@apache.org>2021-01-27 17:48:06 -0300
commit070307d2b4ec181301aea248e06a5f549930c0e6 (patch)
tree03b97b97f21ac969b73e4d62c2dfaf68114226da
parent1abc1b5d404c523a696f7186bc4c4b6fc7407cad (diff)
downloadpython-cinderclient-070307d2b4ec181301aea248e06a5f549930c0e6.tar.gz
Add MV 3.63 to the max supported version
During the implementation on [1], it was requested to extend the Cinder client to support the newly created microversion (MV). Therefore, this patch is doing exactly that. We do not need to do any other work forward bcause the list volumes will display whatever we have in the response. I mean, the default is ``['ID', 'Status', 'Name', 'Size', 'Volume Type', 'Bootable', 'Attached to']``, but one can customize these fields using ``--fields`` [1] https://review.opendev.org/c/openstack/cinder/+/666886 Closes-Bug: https://bugs.launchpad.net/python-cinderclient/+bug/1913474 Depends-on: https://review.opendev.org/c/openstack/cinder/+/666886 Change-Id: I0815570a50e9b38fe18733c727acd52a406bfc1e
-rw-r--r--cinderclient/api_versions.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/cinderclient/api_versions.py b/cinderclient/api_versions.py
index ff4cc93..55dbfec 100644
--- a/cinderclient/api_versions.py
+++ b/cinderclient/api_versions.py
@@ -29,7 +29,7 @@ LOG = logging.getLogger(__name__)
# key is a deprecated version and value is an alternative version.
DEPRECATED_VERSIONS = {"2": "3"}
DEPRECATED_VERSION = "2.0"
-MAX_VERSION = "3.62"
+MAX_VERSION = "3.63"
MIN_VERSION = "3.0"
_SUBSTITUTIONS = {}