Merge pull request #78 from harvester/mergify/bp/release-harvester-v1.5/pr-71

chore: add v1.5.0 and v1.3.3 feature flags (backport #71)
This commit is contained in:
Andy Lee 2025-01-10 16:35:40 +08:00 committed by GitHub
commit e33302050b
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -17,6 +17,12 @@ const featuresV132 = [
'improveMaintenanceMode', 'improveMaintenanceMode',
]; ];
// TODO: add v1.3.3 official release note
// https://github.com/harvester/dashboard/releases/tag/v1.3.3-dev-20250105
const featuresV133 = [
...featuresV132,
];
// https://github.com/harvester/dashboard/releases/tag/v1.4.0 // https://github.com/harvester/dashboard/releases/tag/v1.4.0
const featuresV140 = [ const featuresV140 = [
...featuresV132, ...featuresV132,
@ -35,10 +41,17 @@ const featuresV141 = [
...featuresV140 ...featuresV140
]; ];
// TODO: add v1.5.0 official release note
const featuresV150 = [
...featuresV141
];
export const RELEASE_FEATURES = { export const RELEASE_FEATURES = {
'v1.3.0': featuresV130, 'v1.3.0': featuresV130,
'v1.3.1': featuresV131, 'v1.3.1': featuresV131,
'v1.3.2': featuresV132, 'v1.3.2': featuresV132,
'v1.3.3': featuresV133,
'v1.4.0': featuresV140, 'v1.4.0': featuresV140,
'v1.4.1': featuresV141, 'v1.4.1': featuresV141,
'v1.5.0': featuresV150
}; };