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
This commit is contained in:
Rodolfo Alonso Hernandez 2024-03-10 05:37:09 +00:00 committed by Rodolfo Alonso
parent 00355e092d
commit 8830fed191
3 changed files with 8 additions and 1 deletions

View File

@ -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

View File

@ -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',

View File

@ -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'