Merge pull request #109 from a110605/add_v142_feature_flag

Add v1.4.2 feature flag to master branch
This commit is contained in:
Andy Lee 2025-02-05 17:44:28 +08:00 committed by GitHub
commit 5c06287648
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -25,7 +25,7 @@ const featuresV133 = [
// https://github.com/harvester/dashboard/releases/tag/v1.4.0
const featuresV140 = [
...featuresV132,
...featuresV133,
'cpuPinning',
'usbPassthrough',
'volumeEncryption',
@ -35,15 +35,19 @@ const featuresV140 = [
'improveMaintenanceMode',
];
// TODO: add v1.4.1 official release note
// https://github.com/harvester/dashboard/releases/tag/v1.4.1-rc1
// https://github.com/harvester/dashboard/releases/tag/v1.4.1
const featuresV141 = [
...featuresV140
];
// TODO: add v1.4.2 official release note
const featuresV142 = [
...featuresV141
];
// TODO: add v1.5.0 official release note
const featuresV150 = [
...featuresV141
...featuresV142
];
export const RELEASE_FEATURES = {
@ -53,5 +57,6 @@ export const RELEASE_FEATURES = {
'v1.3.3': featuresV133,
'v1.4.0': featuresV140,
'v1.4.1': featuresV141,
'v1.4.2': featuresV142,
'v1.5.0': featuresV150
};