Skip to content
Snippets Groups Projects
Commit 51f0d954 authored by geant-release-service's avatar geant-release-service
Browse files

Finished release 2.1.

parents 38e8ada3 88e71181
No related branches found
No related tags found
No related merge requests found
Pipeline #87200 passed
......@@ -2,6 +2,9 @@
All notable changes to this project will be documented in this file.
## [2.1] - 2024-06-17
- Fixed tiny bugs in migrate IP trunk.
§
## [2.0] - 2024-05-23
- Upgraded `orchestrator-core` to version 2!
- Added Opengear products.
......
......@@ -3,19 +3,20 @@
import ipaddress
from uuid import UUID
from fastapi import APIRouter
from fastapi import APIRouter, Depends
from orchestrator.domain import SubscriptionModel
from orchestrator.schemas.base import OrchestratorBaseModel
from orchestrator.services.subscriptions import build_extended_domain_model
from starlette import status
from gso.auth.security import opa_security_default
from gso.products.product_blocks.iptrunk import IptrunkType, PhysicalPortCapacity
from gso.products.product_blocks.router import RouterRole
from gso.products.product_blocks.site import LatitudeCoordinate, LongitudeCoordinate
from gso.services.subscriptions import get_active_iptrunk_subscriptions
from gso.utils.shared_enums import Vendor
router = APIRouter(prefix="/networks", tags=["Network"])
router = APIRouter(prefix="/networks", tags=["Network"], dependencies=[Depends(opa_security_default)])
class SiteBlock(OrchestratorBaseModel):
......
......@@ -658,7 +658,7 @@ def update_subscription_model(
subscription.iptrunk.iptrunk_sides[replace_index].iptrunk_side_ae_members.clear()
# And update the list to only include the new member interfaces
for member in new_lag_member_interfaces:
subscription.iptrunk.iptrunk_sides[0].iptrunk_side_ae_members.append(
subscription.iptrunk.iptrunk_sides[replace_index].iptrunk_side_ae_members.append(
IptrunkInterfaceBlock.new(subscription_id=uuid4(), **member),
)
......
......@@ -4,7 +4,7 @@ from setuptools import find_packages, setup
setup(
name="geant-service-orchestrator",
version="2.0",
version="2.1",
author="GÉANT Orchestration and Automation Team",
author_email="goat@geant.org",
description="GÉANT Service Orchestrator",
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment