diff --git a/doc/source/contributor/webapi-version-history.rst b/doc/source/contributor/webapi-version-history.rst index dca34e57a1..15de0644ec 100644 --- a/doc/source/contributor/webapi-version-history.rst +++ b/doc/source/contributor/webapi-version-history.rst @@ -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 diff --git a/ironic/common/release_mappings.py b/ironic/common/release_mappings.py index 0e30785d4e..624e004edb 100644 --- a/ironic/common/release_mappings.py +++ b/ironic/common/release_mappings.py @@ -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)