Update release mappings and API history for 16.0

Fix the incorrect Ussuri release mapping.

Change-Id: I77589745a89104ddc948f084f21a60cef8265271
This commit is contained in:
Dmitry Tantsur 2020-09-24 11:19:48 +02:00
parent 28c0f38322
commit 38349c5b83
2 changed files with 24 additions and 6 deletions

View File

@ -2,12 +2,12 @@
REST API Version History
========================
1.68 (Victoria, master)
1.68 (Victoria, 16.0)
-----------------------
Added the ``agent_verify_ca`` parameter to the ramdisk heartbeat API.
1.67 (Victoria, master)
1.67 (Victoria, 15.1)
-----------------------
Add support for the mutually exclusive ``port_uuid`` and ``portgroup_uuid``
@ -16,7 +16,7 @@ fields by having the node vif_attach API accept those values within
If one is specified, then Ironic will attempt to attach a VIF to the relative
port or portgroup.
1.66 (Victoria, master)
1.66 (Victoria, 15.1)
-----------------------
Add ``network_data`` field to the node object, that will be used by

View File

@ -247,6 +247,24 @@ RELEASE_MAPPING = {
'VolumeTarget': ['1.0'],
}
},
'16.0': {
'api': '1.68',
'rpc': '1.51',
'objects': {
'Allocation': ['1.1'],
'Node': ['1.35'],
'Conductor': ['1.3'],
'Chassis': ['1.3'],
'Deployment': ['1.0'],
'DeployTemplate': ['1.1'],
'Port': ['1.9'],
'Portgroup': ['1.4'],
'Trait': ['1.0'],
'TraitList': ['1.0'],
'VolumeConnector': ['1.0'],
'VolumeTarget': ['1.0'],
}
},
'master': {
'api': '1.68',
'rpc': '1.51',
@ -280,9 +298,9 @@ RELEASE_MAPPING = {
#
# There should be at most two named mappings here.
# NOTE(mgoddard): remove Train prior to the Victoria release.
RELEASE_MAPPING['train'] = RELEASE_MAPPING['13.0']
RELEASE_MAPPING['ussuri'] = RELEASE_MAPPING['15.1']
# NOTE(mgoddard): remove Ussuri prior to the Wallaby release.
RELEASE_MAPPING['ussuri'] = RELEASE_MAPPING['15.0']
RELEASE_MAPPING['victoria'] = RELEASE_MAPPING['16.0']
# List of available versions with named versions first; 'master' is excluded.
RELEASE_VERSIONS = sorted(set(RELEASE_MAPPING) - {'master'}, reverse=True)