Fix upgrade commands 2 (#19157)

This commit is contained in:
Charles Bochet
2026-03-31 12:47:01 +02:00
committed by GitHub
parent ef66d6b337
commit 1ce4da5b67
10 changed files with 57 additions and 12 deletions
@@ -1,4 +1,8 @@
export const UPGRADE_COMMAND_SUPPORTED_VERSIONS = ['1.19.0', '1.20.0'] as const;
export const UPGRADE_COMMAND_SUPPORTED_VERSIONS = [
'1.19.0',
'1.20.0',
'1.21.0',
] as const;
export type UpgradeCommandVersion =
(typeof UPGRADE_COMMAND_SUPPORTED_VERSIONS)[number];