From e2ccdc5b04d72fb41332567ae06ad9b9d6546561 Mon Sep 17 00:00:00 2001 From: peaklabs-dev <122374094+peaklabs-dev@users.noreply.github.com> Date: Tue, 24 Feb 2026 19:36:12 +0100 Subject: [PATCH 1/2] chore(release): add new version.json file with new release channels --- version.json | 8 ++++++++ 1 file changed, 8 insertions(+) create mode 100644 version.json diff --git a/version.json b/version.json new file mode 100644 index 000000000..966b71496 --- /dev/null +++ b/version.json @@ -0,0 +1,8 @@ +{ + "coolify": { + "v5": { + "stable": "5.0.0", + "preview": "5.0.0-alpha.1" + } + } +} From 3287a3c7b0e868983b4db3b6e9f0e7b26d16d086 Mon Sep 17 00:00:00 2001 From: peaklabs-dev <122374094+peaklabs-dev@users.noreply.github.com> Date: Mon, 2 Mar 2026 23:31:12 +0100 Subject: [PATCH 2/2] chore(release): add release options to coolify config - get version from env by default - add release channel --- config/coolify.php | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/config/coolify.php b/config/coolify.php index 49531db51..c390d6c36 100644 --- a/config/coolify.php +++ b/config/coolify.php @@ -3,7 +3,8 @@ declare(strict_types=1); return [ - 'version' => '5.0.0-alpha.1', + 'version' => env('COOLIFY_VERSION', '5.0.0-alpha.1'), + 'channel' => env('COOLIFY_CHANNEL', 'stable'), 'helper_version' => '2.0.0', 'self_hosted' => env('SELF_HOSTED', true), 'autoupdate' => env('AUTOUPDATE_ENABLED', false),