/* * Copyright (c) 2020 ETSI. All rights reserved. */ import React, { Component } from 'react'; import BasicDialog from './basic-dialog'; import { Typography } from '@rmwc/typography'; class VersionDialog extends Component { constructor(props) { super(props); } render() { return (

v1.8 • 2022-09-29

STF625 update 2:
  • Addition of the BWM API (Bandwidth Management Service) v2.2.1
  • Addition of the MTS API (Multi-access Traffic Steering Service) v2.2.1
  • Addition of the DAI API (Device Application Interface Service) v2.2.1

v1.7 • 2022-06-20

STF625 update:
  • Addition of the VIS API (V2X Service) v2.2.1
  • Upgradation of MEC011, MEC012, MEC013 and MEC021 to v2.2.1

v1.6 • 2021-12-16

Final STF599 update:
  • AdvantEDGE baseline upgrade to v1.8.1
  • General maintenance fixes

v1.5.3 (beta) • 2021-11-22

Maintenance Release:
  • Service IDs displayed in frontend
  • Garbage collector for internal databases
  • User-persistent sandbox names
  • MEC Service bug fixes

v1.5.2 (beta) • 2021-11-08

MEC028 WebSockets:
  • MEC028 subscriptions - support for MEC009 WebSocket fallback pattern

v1.5.1 (beta) • 2021-10-30

MEC API Maintenance:
  • MEC Service bug fixes

v1.5 (beta) • 2021-09-30

New MEC APIs:
  • MEC011 - Edge Platform Application Enablement
  • MEC021 - Application Mobility Service
  • Dual MEP network to showcase new APIs

v1.4.1 • 2021-08-06

MEC Service Maintenance:
  • MEC Service bug fixes
  • Beta tags removed from API endpoints

v1.4 (beta) • 2021-07-20

MEC Service Enhancements:
  • MEC012, MEC013 & MEC028 support for all API endpoints
  • MEC Service bug fixes

v1.3 • 2021-06-03

Long-term Sandbox Analytics Storage:
  • Metrics object storage deployment
  • Thanos integration for metrics data long-term storage
  • Maintenance fixes

v1.2 • 2021-05-11

MEC Sandbox VM Upgrade:
  • CPU/Memory upgrade
  • Maintenance fixes

v1.1 • 2021-03-23

Monitoring & Analytics:
  • Session statistics
  • MEC Service & Platform API metrics
  • Alerting framework
  • Maintenance fixes
); } } const styles = { text: { // color: 'black', marginLeft: 10, marginRight: 15 }, signature: { textAlign: 'right' } }; export default VersionDialog;