From 8c88f6093a7986bd4c997a58bd41bb20952ef235 Mon Sep 17 00:00:00 2001 From: Andras Bacsai <5845193+andrasbacsai@users.noreply.github.com> Date: Wed, 12 Aug 2026 12:27:08 +0200 Subject: [PATCH] chore(release): bump default version to 4.3.1 --- config/constants.php | 2 +- tests/Unit/ProductionImageWorkflowTest.php | 6 +++--- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/config/constants.php b/config/constants.php index 2b6ea06f8..47df32df6 100644 --- a/config/constants.php +++ b/config/constants.php @@ -2,7 +2,7 @@ return [ 'coolify' => [ - 'version' => env('COOLIFY_VERSION') ?: '4.3.0', + 'version' => env('COOLIFY_VERSION') ?: '4.3.1', 'helper_version' => '1.0.14', 'realtime_version' => '1.0.17', 'railpack_version' => '0.23.0', diff --git a/tests/Unit/ProductionImageWorkflowTest.php b/tests/Unit/ProductionImageWorkflowTest.php index 7d34b28c7..428ec27a6 100644 --- a/tests/Unit/ProductionImageWorkflowTest.php +++ b/tests/Unit/ProductionImageWorkflowTest.php @@ -19,12 +19,12 @@ it('publishes v4 branch builds under the commit sha with a traceable internal ve ->toContain('ARG COOLIFY_VERSION') ->toContain('ENV COOLIFY_VERSION=${COOLIFY_VERSION}') ->and($constants) - ->toContain("'version' => env('COOLIFY_VERSION') ?: '4.3.0'"); + ->toContain("'version' => env('COOLIFY_VERSION') ?: '4.3.1'"); }); it('orders a maintenance development build before its stable release', function () { - expect(version_compare('4.3.0-dev.d64cbda3e', '4.3.0', '<'))->toBeTrue() - ->and(version_compare('4.3.0', '4.3.0-dev.d64cbda3e', '>'))->toBeTrue(); + expect(version_compare('4.3.1-dev.d64cbda3e', '4.3.1', '<'))->toBeTrue() + ->and(version_compare('4.3.1', '4.3.1-dev.d64cbda3e', '>'))->toBeTrue(); }); it('requires a reviewed draft release before building a stable version', function () {