add v1.4.2 feature flag

Signed-off-by: andy.lee <andy.lee@suse.com>
This commit is contained in:
andy.lee 2025-02-13 14:19:37 +08:00
parent 2c756582e3
commit 6b07a03451
No known key found for this signature in database
GPG Key ID: 10911689462678C7

View File

@ -41,6 +41,10 @@ const featuresV141 = [
...featuresV140
];
const featuresV142 = [
...featuresV141
];
// TODO: add v1.5.0 official release note
const featuresV150 = [
...featuresV141
@ -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
};