diff --git a/Changelog.md b/Changelog.md index ff85c7a92c5d94c6dcf54a50fc881fba1c387f05..6aca342250d75caaeb63c15a28be2ab60da3f921 100644 --- a/Changelog.md +++ b/Changelog.md @@ -2,6 +2,9 @@ All notable changes to this project will be documented in this file. +## [2.3] - 2024-06-19 +- Changed Modify IP trunk label to Modify ISIS + ## [2.2] - 2024-06-18 - Fixed DNS allocation when hostname is already in use during allocation process. - Fixed regex that validates interface names diff --git a/gso/migrations/versions/2024-04-30_1ec810b289c0_add_orchestrator_2_2_1_V2_migrations.py b/gso/migrations/versions/2024-04-30_1ec810b289c0_add_orchestrator_2_2_1_V2_migrations.py index 0f4609b65cc69454403ebe90c49859f5e8a06d35..16689df6b2e6be8801b92e1fbd36be0100e58d55 100644 --- a/gso/migrations/versions/2024-04-30_1ec810b289c0_add_orchestrator_2_2_1_V2_migrations.py +++ b/gso/migrations/versions/2024-04-30_1ec810b289c0_add_orchestrator_2_2_1_V2_migrations.py @@ -5,14 +5,13 @@ Revises: Create Date: 2024-04-02 10:21:08.539591 """ -from alembic import op -from orchestrator.migrations.helpers import create_workflow, delete_workflow - # revision identifiers, used by Alembic. revision = '1ec810b289c0' down_revision = '32cad119b7c4' branch_labels = None -depends_on = '048219045729' # in this revision, SURF has added a new columns to the workflow table like delted_at, so we need to add a dependency on the revision that added the columns to the workflow table. +depends_on = '048219045729' +# in this revision, SURF has added a new columns to the workflow table like deleted_at, so we need to add a dependency +# on the revision that added the columns to the workflow table. def upgrade() -> None: diff --git a/gso/migrations/versions/2024-06-19_fvd7mfcfbs1q_update_modify_isis_workflow.py b/gso/migrations/versions/2024-06-19_fvd7mfcfbs1q_update_modify_isis_workflow.py new file mode 100644 index 0000000000000000000000000000000000000000..f3a1ae003a77aba2735742588f2355eca100c93b --- /dev/null +++ b/gso/migrations/versions/2024-06-19_fvd7mfcfbs1q_update_modify_isis_workflow.py @@ -0,0 +1,26 @@ +"""Add upstream migrations as a dependency. + +Revision ID: fvd7mfcfbs1q +Revises: +Create Date: 2024-06-19 11:17:08.539591 + +""" +import sqlalchemy as sa +from alembic import op + +# revision identifiers, used by Alembic. +revision = 'fvd7mfcfbs1q' +down_revision = '1ec810b289c0' +branch_labels = None +depends_on = None + + +def upgrade() -> None: + conn = op.get_bind() + conn.execute( + sa.text("""UPDATE workflows SET description = 'Modify ISIS metric' WHERE name = 'modify_isis_metric'""") + ) + + +def downgrade() -> None: + pass diff --git a/setup.py b/setup.py index 2da4e0e87e430056160bdc4f1ff9dc814c730290..a722f10fca99f718d48d12abecb8cf0d6c3e5e4a 100644 --- a/setup.py +++ b/setup.py @@ -4,7 +4,7 @@ from setuptools import find_packages, setup setup( name="geant-service-orchestrator", - version="2.2", + version="2.3", author="GÉANT Orchestration and Automation Team", author_email="goat@geant.org", description="GÉANT Service Orchestrator",