From 8830fed1913d87a64534873d1e0cb4d6c14ef499 Mon Sep 17 00:00:00 2001 From: Rodolfo Alonso Hernandez Date: Sun, 10 Mar 2024 05:37:09 +0000 Subject: [PATCH] Open the 2024.2 (Dalmatian) DB branch According to the TC resolution [1] and the release identification document [2], the release number will be used as primary identifier in the development cycle. Release name will be used in marketing. [1]https://governance.openstack.org/tc/resolutions/20220524-release-identification-process.html [2]https://governance.openstack.org/tc/reference/release-naming.html Change-Id: I6fc7a154fa77a8792f93eb40c9b4497c0e67ae2f --- neutron/db/migration/__init__.py | 1 + .../0e6eff810791_add_port_hardware_offload_extension_type.py | 5 +++++ neutron/db/migration/cli.py | 3 ++- 3 files changed, 8 insertions(+), 1 deletion(-) diff --git a/neutron/db/migration/__init__.py b/neutron/db/migration/__init__.py index 8b05fb44cd5..b3e3cbdfdf2 100644 --- a/neutron/db/migration/__init__.py +++ b/neutron/db/migration/__init__.py @@ -40,6 +40,7 @@ ZED = 'zed' RELEASE_2023_1 = '2023.1' RELEASE_2023_2 = '2023.2' RELEASE_2024_1 = '2024.1' +RELEASE_2024_2 = '2024.2' NEUTRON_MILESTONES = [ # earlier milestones were not tagged diff --git a/neutron/db/migration/alembic_migrations/versions/2024.1/expand/0e6eff810791_add_port_hardware_offload_extension_type.py b/neutron/db/migration/alembic_migrations/versions/2024.1/expand/0e6eff810791_add_port_hardware_offload_extension_type.py index 9df9ea11c7f..e4fa8e245b4 100644 --- a/neutron/db/migration/alembic_migrations/versions/2024.1/expand/0e6eff810791_add_port_hardware_offload_extension_type.py +++ b/neutron/db/migration/alembic_migrations/versions/2024.1/expand/0e6eff810791_add_port_hardware_offload_extension_type.py @@ -16,6 +16,8 @@ from alembic import op import sqlalchemy as sa +from neutron.db import migration + """Add port hardware offload extension type @@ -29,6 +31,9 @@ Create Date: 2023-05-09 23:52:40.677006 revision = '0e6eff810791' down_revision = '054e34dbe6b4' +# milestone identifier, used by neutron-db-manage +neutron_milestone = [migration.RELEASE_2024_1] + def upgrade(): op.create_table('porthardwareoffloadtype', diff --git a/neutron/db/migration/cli.py b/neutron/db/migration/cli.py index 4f52a551953..fdfc5c22830 100644 --- a/neutron/db/migration/cli.py +++ b/neutron/db/migration/cli.py @@ -38,7 +38,7 @@ HEADS_FILENAME = 'HEADS' CONTRACT_HEAD_FILENAME = 'CONTRACT_HEAD' EXPAND_HEAD_FILENAME = 'EXPAND_HEAD' -CURRENT_RELEASE = migration.RELEASE_2024_1 +CURRENT_RELEASE = migration.RELEASE_2024_2 RELEASES = ( migration.LIBERTY, migration.MITAKA, @@ -58,6 +58,7 @@ RELEASES = ( migration.RELEASE_2023_1, migration.RELEASE_2023_2, migration.RELEASE_2024_1, + migration.RELEASE_2024_2, ) EXPAND_BRANCH = 'expand'