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

Finished release 2.14.

parents 6fa5fe73 517ea60e
Branches
Tags 2.14
No related merge requests found
Pipeline #90954 passed
# Changelog # Changelog
All notable changes to this project will be documented in this file. All notable changes to this project will be documented in this file.
## [2.14] - 2024-12-13
- Update references to GÉANT service IDs
## [2.12] - 2024-11-29 ## [2.12] - 2024-11-29
......
...@@ -369,7 +369,7 @@ const LeafletMap: React.FC<LeafletMapProps> = ({ data }) => { ...@@ -369,7 +369,7 @@ const LeafletMap: React.FC<LeafletMapProps> = ({ data }) => {
iptrunk_isis_metric: `${trunk.iptrunk.iptrunk_isis_metric}`, iptrunk_isis_metric: `${trunk.iptrunk.iptrunk_isis_metric}`,
iptrunk_ipv4_network: `${trunk.iptrunk.iptrunk_ipv4_network}`, iptrunk_ipv4_network: `${trunk.iptrunk.iptrunk_ipv4_network}`,
iptrunk_ipv6_network: `${trunk.iptrunk.iptrunk_ipv6_network}`, iptrunk_ipv6_network: `${trunk.iptrunk.iptrunk_ipv6_network}`,
geant_s_sid: `${trunk.iptrunk.geant_s_sid}`, gs_id: `${trunk.iptrunk.gs_id}`,
iptrunk_type: `${trunk.iptrunk.iptrunk_type}`, iptrunk_type: `${trunk.iptrunk.iptrunk_type}`,
}, },
}; };
...@@ -492,12 +492,12 @@ const LeafletMap: React.FC<LeafletMapProps> = ({ data }) => { ...@@ -492,12 +492,12 @@ const LeafletMap: React.FC<LeafletMapProps> = ({ data }) => {
<EuiSelect <EuiSelect
options={[ options={[
{ value: 'none', text: 'None' }, { value: 'none', text: 'None' },
{ value: 'iptrunk_isis_metric', text: 'Iptrunk ISIS Metric' }, { value: 'iptrunk_isis_metric', text: 'IPtrunk ISIS Metric' },
{ value: 'iptrunk_capacity', text: 'Iptrunk Capacity' }, { value: 'iptrunk_capacity', text: 'IPtrunk Capacity' },
{ value: 'iptrunk_type', text: 'Iptrunk Type' }, { value: 'iptrunk_type', text: 'IPtrunk Type' },
{ value: 'iptrunk_ipv4_network', text: 'Iptrunk IPV4 Network' }, { value: 'iptrunk_ipv4_network', text: 'IPtrunk IPv4 Network' },
{ value: 'iptrunk_ipv6_network', text: 'Iptrunk IPV6 Network' }, { value: 'iptrunk_ipv6_network', text: 'IPtrunk IPv6 Network' },
{ value: 'geant_s_sid', text: 'GEANT Service ID' }, { value: 'gs_id', text: 'GEANT Service ID' },
]} ]}
value={labelType} value={labelType}
onChange={handleLabelTypeChange} onChange={handleLabelTypeChange}
......
...@@ -3,7 +3,7 @@ from setuptools import setup ...@@ -3,7 +3,7 @@ from setuptools import setup
setup( setup(
name="geant-service-orchestrator-gui", name="geant-service-orchestrator-gui",
py_modules=[], py_modules=[],
version="2.13", version="2.14",
author="GÉANT Orchestration and Automation Team", author="GÉANT Orchestration and Automation Team",
author_email="goat@geant.org", author_email="goat@geant.org",
description="GÉANT Service Orchestrator GUI dummy package", description="GÉANT Service Orchestrator GUI dummy package",
......
...@@ -25,7 +25,7 @@ export interface Iptrunk { ...@@ -25,7 +25,7 @@ export interface Iptrunk {
iptrunk_type: string; iptrunk_type: string;
iptrunk_ipv4_network: string; iptrunk_ipv4_network: string;
iptrunk_ipv6_network: string; iptrunk_ipv6_network: string;
geant_s_sid: string; gs_id: string;
iptrunk_sides: Array<{ iptrunk_side_node: IptrunkSideNode }>; iptrunk_sides: Array<{ iptrunk_side_node: IptrunkSideNode }>;
} }
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment