From 2a5874555006475180fa419c0ca91af9693143fb Mon Sep 17 00:00:00 2001 From: "andy.lee" Date: Thu, 9 Jan 2025 17:43:19 +0800 Subject: [PATCH] chore: add v1.5.0 and v1.3.3 feature flags Signed-off-by: andy.lee --- pkg/harvester/config/feature-flags.js | 13 +++++++++++++ 1 file changed, 13 insertions(+) diff --git a/pkg/harvester/config/feature-flags.js b/pkg/harvester/config/feature-flags.js index 1b49c71..0787b21 100644 --- a/pkg/harvester/config/feature-flags.js +++ b/pkg/harvester/config/feature-flags.js @@ -17,6 +17,12 @@ const featuresV132 = [ '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 const featuresV140 = [ ...featuresV132, @@ -35,10 +41,17 @@ const featuresV141 = [ ...featuresV140 ]; +// TODO: add v1.5.0 official release note +const featuresV150 = [ + ...featuresV141 +]; + export const RELEASE_FEATURES = { 'v1.3.0': featuresV130, 'v1.3.1': featuresV131, 'v1.3.2': featuresV132, + 'v1.3.3': featuresV133, 'v1.4.0': featuresV140, 'v1.4.1': featuresV141, + 'v1.5.0': featuresV150 };