src/constants: support fedora 42

This commit is contained in:
Sanne Raymaekers 2025-05-08 18:14:04 +02:00 committed by Klara Simickova
parent 9daa21a5ca
commit e560f011aa

View file

@ -56,6 +56,7 @@ export const CENTOS_9 = 'centos-9';
export const CENTOS_10 = 'centos-10';
export const FEDORA_40 = 'fedora-40';
export const FEDORA_41 = 'fedora-41';
export const FEDORA_42 = 'fedora-42';
export const X86_64 = 'x86_64';
export const AARCH64 = 'aarch64';
@ -96,6 +97,7 @@ export const ON_PREM_RELEASES = new Map([
[CENTOS_10, 'CentOS Stream 10'],
[FEDORA_40, 'Fedora Linux 40'],
[FEDORA_41, 'Fedora Linux 41'],
[FEDORA_42, 'Fedora Linux 42'],
[RHEL_10_BETA, 'Red Hat Enterprise Linux (RHEL) 10 Beta'],
[RHEL_10, 'Red Hat Enterprise Linux (RHEL) 10'],
]);
@ -103,6 +105,7 @@ export const ON_PREM_RELEASES = new Map([
export const FEDORA_RELEASES = new Map([
[FEDORA_40, 'Fedora Linux 40'],
[FEDORA_41, 'Fedora Linux 41'],
[FEDORA_42, 'Fedora Linux 42'],
[CENTOS_9, 'CentOS Stream 9'],
[CENTOS_10, 'CentOS Stream 10'],
]);