From bb43578d92ebfb3fd2918ee464e2dcd5da190ef3 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Tom=C3=A1=C5=A1=20Hozza?= Date: Wed, 12 Feb 2025 09:14:27 +0100 Subject: [PATCH] osbuild-composer: bump `rhel-9` distro alias to `rhel-9.6` MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit The alias in the built-in config is meant for on-prem and needs to be set to the current in-development minor RHEL version. Signed-off-by: Tomáš Hozza --- cmd/osbuild-composer/config.go | 2 +- cmd/osbuild-composer/config_test.go | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/cmd/osbuild-composer/config.go b/cmd/osbuild-composer/config.go index e62be6537..05ec7c1bb 100644 --- a/cmd/osbuild-composer/config.go +++ b/cmd/osbuild-composer/config.go @@ -127,7 +127,7 @@ func GetDefaultConfig() *ComposerConfigFile { DistroAliases: map[string]string{ "rhel-7": "rhel-7.9", "rhel-8": "rhel-8.10", - "rhel-9": "rhel-9.5", + "rhel-9": "rhel-9.6", "rhel-10": "rhel-10.0", }, LogLevel: "info", diff --git a/cmd/osbuild-composer/config_test.go b/cmd/osbuild-composer/config_test.go index 2e7e9992d..f26d1db3f 100644 --- a/cmd/osbuild-composer/config_test.go +++ b/cmd/osbuild-composer/config_test.go @@ -73,7 +73,7 @@ func TestDefaultConfig(t *testing.T) { "rhel-10": "rhel-10.0", "rhel-7": "rhel-7.9", "rhel-8": "rhel-8.10", - "rhel-9": "rhel-9.5", + "rhel-9": "rhel-9.6", } require.Equal(t, expectedDistroAliases, defaultConfig.DistroAliases)