diff options
-rw-r--r-- | doc/source/contributor/webapi-version-history.rst | 5 | ||||
-rw-r--r-- | ironic/common/release_mappings.py | 20 |
2 files changed, 25 insertions, 0 deletions
diff --git a/doc/source/contributor/webapi-version-history.rst b/doc/source/contributor/webapi-version-history.rst index f90cb3c6c..58c0598eb 100644 --- a/doc/source/contributor/webapi-version-history.rst +++ b/doc/source/contributor/webapi-version-history.rst @@ -2,6 +2,11 @@ REST API Version History ======================== +1.79 (Zed, 21.0) +---------------------- +A node with the same name as the allocation ``name`` is moved to the +start of the derived candidate list. + 1.78 (Xena, 18.2) ---------------------- Add endpoints to allow history events for nodes to be retrieved via diff --git a/ironic/common/release_mappings.py b/ironic/common/release_mappings.py index aaf423bfe..9dfe864ee 100644 --- a/ironic/common/release_mappings.py +++ b/ironic/common/release_mappings.py @@ -470,6 +470,26 @@ RELEASE_MAPPING = { 'VolumeTarget': ['1.0'], } }, + '21.0': { + 'api': '1.79', + 'rpc': '1.55', + 'objects': { + 'Allocation': ['1.1'], + 'BIOSSetting': ['1.1'], + 'Node': ['1.36'], + 'NodeHistory': ['1.0'], + 'Conductor': ['1.3'], + 'Chassis': ['1.3'], + 'Deployment': ['1.0'], + 'DeployTemplate': ['1.1'], + 'Port': ['1.10'], + 'Portgroup': ['1.4'], + 'Trait': ['1.0'], + 'TraitList': ['1.0'], + 'VolumeConnector': ['1.0'], + 'VolumeTarget': ['1.0'], + } + }, 'master': { 'api': '1.79', 'rpc': '1.55', |