Newer
Older

Yann Garcia
committed
* Copyright (c) 2022 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 (
<BasicDialog
title={this.props.title}
open={this.props.open}
onSubmit={this.props.onClose}
onClose={this.props.onClose}
submitLabel = {'Ok'}
>
<div style={styles.text}>
<Typography theme="primary" use="subtitle1"><p><b>v1.9 •</b> 2023-02-22</p></Typography>
<Typography use="body1">
AdvantEDGE baseline upgrade to v1.9.0
STF625 Final:
<ul>
<li>V2X messsage distribution support</li>
<li>General maintenance fixes</li>
</ul>
</Typography>
<Typography theme="primary" use="subtitle1"><p><b>v1.8 •</b> 2022-09-29</p></Typography>
<Typography use="body1">
STF625 update 2:
<ul>
<li>Addition of the BWM API (Bandwidth Management Service) v2.2.1</li>
<li>Addition of the MTS API (Multi-access Traffic Steering Service) v2.2.1</li>
<li>Addition of the DAI API (Device Application Interface Service) v2.2.1</li>
</ul>
</Typography>
<Typography theme="primary" use="subtitle1"><p><b>v1.7 •</b> 2022-06-20</p></Typography>
<Typography use="body1">
STF625 update:
<ul>
<li>Addition of the VIS API (V2X Service) v2.2.1</li>
<li>Upgradation of MEC011, MEC012, MEC013 and MEC021 to v2.2.1</li>
</ul>
</Typography>
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
<Typography theme="primary" use="subtitle1"><p><b>v1.6 •</b> 2021-12-16</p></Typography>
<Typography use="body1">
Final STF599 update:
<ul>
<li>AdvantEDGE baseline upgrade to v1.8.1</li>
<li>General maintenance fixes</li>
</ul>
</Typography>
<Typography theme="primary" use="subtitle1"><p><b>v1.5.3 (beta) •</b> 2021-11-22</p></Typography>
<Typography use="body1">
Maintenance Release:
<ul>
<li>Service IDs displayed in frontend</li>
<li>Garbage collector for internal databases</li>
<li>User-persistent sandbox names</li>
<li>MEC Service bug fixes</li>
</ul>
</Typography>
<Typography theme="primary" use="subtitle1"><p><b>v1.5.2 (beta) •</b> 2021-11-08</p></Typography>
<Typography use="body1">
MEC028 WebSockets:
<ul>
<li>MEC028 subscriptions - support for MEC009 WebSocket fallback pattern</li>
</ul>
</Typography>
<Typography theme="primary" use="subtitle1"><p><b>v1.5.1 (beta) •</b> 2021-10-30</p></Typography>
<Typography use="body1">
MEC API Maintenance:
<ul>
<li>MEC Service bug fixes</li>
</ul>
</Typography>
<Typography theme="primary" use="subtitle1"><p><b>v1.5 (beta) •</b> 2021-09-30</p></Typography>
<Typography use="body1">
New MEC APIs:
<ul>
<li>MEC011 - Edge Platform Application Enablement</li>
<li>MEC021 - Application Mobility Service</li>
<li>Dual MEP network to showcase new APIs</li>
</ul>
</Typography>
<Typography theme="primary" use="subtitle1"><p><b>v1.4.1 •</b> 2021-08-06</p></Typography>
<Typography use="body1">
MEC Service Maintenance:
<ul>
<li>MEC Service bug fixes</li>
<li>Beta tags removed from API endpoints</li>
</ul>
</Typography>
<Typography theme="primary" use="subtitle1"><p><b>v1.4 (beta) •</b> 2021-07-20</p></Typography>
<Typography use="body1">
MEC Service Enhancements:
<ul>
<li>MEC012, MEC013 & MEC028 support for all API endpoints</li>
<li>MEC Service bug fixes</li>
</ul>
</Typography>
<Typography theme="primary" use="subtitle1"><p><b>v1.3 •</b> 2021-06-03</p></Typography>
<Typography use="body1">
Long-term Sandbox Analytics Storage:
<ul>
<li>Metrics object storage deployment</li>
<li>Thanos integration for metrics data long-term storage</li>
<li>Maintenance fixes</li>
</ul>
</Typography>
<Typography theme="primary" use="subtitle1"><p><b>v1.2 •</b> 2021-05-11</p></Typography>
<Typography use="body1">
MEC Sandbox VM Upgrade:
<ul>
<li>CPU/Memory upgrade</li>
<li>Maintenance fixes</li>
</ul>
</Typography>
<Typography theme="primary" use="subtitle1"><p><b>v1.1 •</b> 2021-03-23</p></Typography>
<Typography use="body1">
Monitoring & Analytics:
<ul>
<li>Session statistics</li>
<li>MEC Service & Platform API metrics</li>
<li>Alerting framework</li>
<li>Maintenance fixes</li>
</ul>
</Typography>
</div>
</BasicDialog>
);
}
}
const styles = {
text: {
// color: 'black',
marginLeft: 10,
marginRight: 15
},
signature: {
textAlign: 'right'
}
};
export default VersionDialog;