chore(release): bump Coolify and nightly versions

This commit is contained in:
Andras Bacsai
2026-08-16 09:31:37 +02:00
parent ead8fcd41a
commit 4c22919d38
4 changed files with 11 additions and 6 deletions
+1 -1
View File
@@ -2,7 +2,7 @@
return [
'coolify' => [
'version' => env('COOLIFY_VERSION') ?: '4.3.4',
'version' => env('COOLIFY_VERSION') ?: '4.3.5',
'helper_version' => '1.0.15',
'realtime_version' => '1.0.17',
'railpack_version' => '0.23.0',
+2 -2
View File
@@ -1,10 +1,10 @@
{
"coolify": {
"v4": {
"version": "4.3.4"
"version": "4.3.5"
},
"nightly": {
"version": "4.3.5"
"version": "4.3.6"
},
"helper": {
"version": "1.0.15"
+6 -1
View File
@@ -4,6 +4,8 @@ it('publishes v4 branch builds under the commit sha with a traceable internal ve
$workflow = file_get_contents(dirname(__DIR__, 2).'/.github/workflows/coolify-sha-build.yml');
$dockerfile = file_get_contents(dirname(__DIR__, 2).'/docker/production/Dockerfile');
$constants = file_get_contents(dirname(__DIR__, 2).'/config/constants.php');
$versions = json_decode(file_get_contents(dirname(__DIR__, 2).'/versions.json'), true, flags: JSON_THROW_ON_ERROR);
$nightlyVersions = json_decode(file_get_contents(dirname(__DIR__, 2).'/other/nightly/versions.json'), true, flags: JSON_THROW_ON_ERROR);
expect($workflow)
->toContain('name: Build Coolify (SHA)')
@@ -21,7 +23,10 @@ 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.4'");
->toContain("'version' => env('COOLIFY_VERSION') ?: '4.3.5'")
->and($versions['coolify']['v4']['version'])->toBe('4.3.5')
->and($versions['coolify']['nightly']['version'])->toBe('4.3.6')
->and($nightlyVersions)->toBe($versions);
});
it('orders a maintenance development build before its stable release', function () {
+2 -2
View File
@@ -1,10 +1,10 @@
{
"coolify": {
"v4": {
"version": "4.3.4"
"version": "4.3.5"
},
"nightly": {
"version": "4.3.5"
"version": "4.3.6"
},
"helper": {
"version": "1.0.15"