Open the 2024.1 (Caracal) 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: I1ffd5878489176f33146688de03367101ede2305
This commit is contained in:
Rodolfo Alonso Hernandez 2023-09-09 22:13:40 +00:00
parent 741f504c7b
commit 7e0ba8bcda
3 changed files with 8 additions and 1 deletions

View File

@ -39,6 +39,7 @@ YOGA = 'yoga'
ZED = 'zed'
RELEASE_2023_1 = '2023.1'
RELEASE_2023_2 = '2023.2'
RELEASE_2024_1 = '2024.1'
NEUTRON_MILESTONES = [
# earlier milestones were not tagged

View File

@ -17,6 +17,8 @@ from alembic import op
import sqlalchemy as sa
from sqlalchemy import sql
from neutron.db import migration
"""Add ECMP and BFD router-level policy attributes
Revision ID: 89c58a70ceba
@ -29,6 +31,9 @@ Create Date: 2023-02-22 21:08:33.593101
revision = '89c58a70ceba'
down_revision = 'c33da356b165'
# milestone identifier, used by neutron-db-manage
neutron_milestone = [migration.RELEASE_2023_2]
def upgrade():
op.add_column('router_extra_attributes',

View File

@ -38,7 +38,7 @@ HEADS_FILENAME = 'HEADS'
CONTRACT_HEAD_FILENAME = 'CONTRACT_HEAD'
EXPAND_HEAD_FILENAME = 'EXPAND_HEAD'
CURRENT_RELEASE = migration.RELEASE_2023_2
CURRENT_RELEASE = migration.RELEASE_2024_1
RELEASES = (
migration.LIBERTY,
migration.MITAKA,
@ -57,6 +57,7 @@ RELEASES = (
migration.ZED,
migration.RELEASE_2023_1,
migration.RELEASE_2023_2,
migration.RELEASE_2024_1,
)
EXPAND_BRANCH = 'expand'