summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--cinderclient/api_versions.py2
-rw-r--r--releasenotes/notes/update-rocky-max-api-version-ff9cc9a9ed8353c1.yaml22
2 files changed, 23 insertions, 1 deletions
diff --git a/cinderclient/api_versions.py b/cinderclient/api_versions.py
index 0fcb208..cb7b54b 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 = {"1": "2"}
DEPRECATED_VERSION = "2.0"
-MAX_VERSION = "3.52"
+MAX_VERSION = "3.55"
MIN_VERSION = "3.0"
_SUBSTITUTIONS = {}
diff --git a/releasenotes/notes/update-rocky-max-api-version-ff9cc9a9ed8353c1.yaml b/releasenotes/notes/update-rocky-max-api-version-ff9cc9a9ed8353c1.yaml
new file mode 100644
index 0000000..ff6836f
--- /dev/null
+++ b/releasenotes/notes/update-rocky-max-api-version-ff9cc9a9ed8353c1.yaml
@@ -0,0 +1,22 @@
+---
+prelude: >
+ This release fixes the issue that functionality had been implemented
+ in the previous release to handle up to microversion 3.55 of the Block
+ Storage API, but the cinderclient was under the impression that it
+ could only handle up to microversion 3.52.
+issues:
+ - |
+ There is a possible backward incompatability issue that could affect
+ consumers of the
+ ``cinderclient.client.get_highest_client_server_version(url)`` method.
+ It might have been expected that the 4.0.x series of releases would be
+ capped at microversion 3.52; however, in this release, that method may
+ return up to microversion 3.55. Ordinarily, this would be signaled by
+ incrementing the minor version of the cinderclient; however, that cannot
+ be done for this release because the 4.1.x series has already been
+ released from the stein branch.
+upgrade:
+ - |
+ This version of the cinderclient can communicate with the Block Storage
+ API up to microversion 3.55. The previous release could only handle up
+ to microversion 3.52.