Add 1.4.3 feature flag

Signed-off-by: Andy Lee <andy.lee@suse.com>
This commit is contained in:
Andy Lee 2025-05-06 11:26:53 +08:00
parent 7e5ee04637
commit 2255bd4f69
No known key found for this signature in database
GPG Key ID: EC774C32160918ED

View File

@ -40,13 +40,19 @@ const featuresV141 = [
...featuresV140 ...featuresV140
]; ];
// https://github.com/harvester/dashboard/releases/tag/v1.4.2
const featuresV142 = [ const featuresV142 = [
...featuresV141, ...featuresV141,
'refreshIntervalInSecond', 'refreshIntervalInSecond',
'allowEmptySnapshotClassName' 'allowEmptySnapshotClassName'
]; ];
// TODO: add v1.5.0 official release note // https://github.com/harvester/dashboard/releases/tag/v1.4.3-rc1
const featuresV143 = [
...featuresV142,
];
// https://github.com/harvester/harvester-ui-extension/releases/tag/v1.5.0
const featuresV150 = [ const featuresV150 = [
...featuresV142 ...featuresV142
]; ];
@ -59,5 +65,6 @@ export const RELEASE_FEATURES = {
'v1.4.0': featuresV140, 'v1.4.0': featuresV140,
'v1.4.1': featuresV141, 'v1.4.1': featuresV141,
'v1.4.2': featuresV142, 'v1.4.2': featuresV142,
'v1.4.3': featuresV143,
'v1.5.0': featuresV150 'v1.5.0': featuresV150
}; };