Compare commits

...

5 Commits

Author SHA1 Message Date
Andras Bacsai
85ca38be90 Merge pull request #2325 from coollabsio/next
v4.0.0-beta.293
2024-05-30 20:08:37 +02:00
Andras Bacsai
7c9790dff0 chore: Improve upgrade.blade.php with clearer instructions and formatting 2024-05-30 20:07:42 +02:00
Andras Bacsai
40a71a11cb chore: Add upgrade guide link to upgrade.blade.php 2024-05-30 20:07:06 +02:00
Andras Bacsai
46a500f5e5 async update process 2024-05-30 20:02:11 +02:00
Andras Bacsai
2d1d03bf8e chore: Update version numbers to 4.0.0-beta.293 2024-05-30 20:02:03 +02:00
5 changed files with 9 additions and 6 deletions

View File

@@ -53,12 +53,12 @@ class UpdateCoolify
private function update() private function update()
{ {
if (isDev()) { if (isDev()) {
instant_remote_process([ remote_process([
"sleep 1" "sleep 10"
], $this->server); ], $this->server);
return; return;
} }
instant_remote_process([ remote_process([
"curl -fsSL https://cdn.coollabs.io/coolify/upgrade.sh -o /data/coolify/source/upgrade.sh", "curl -fsSL https://cdn.coollabs.io/coolify/upgrade.sh -o /data/coolify/source/upgrade.sh",
"bash /data/coolify/source/upgrade.sh $this->latestVersion" "bash /data/coolify/source/upgrade.sh $this->latestVersion"
], $this->server); ], $this->server);

View File

@@ -7,7 +7,7 @@ return [
// The release version of your application // The release version of your application
// Example with dynamic git hash: trim(exec('git --git-dir ' . base_path('.git') . ' log --pretty="%h" -n1 HEAD')) // Example with dynamic git hash: trim(exec('git --git-dir ' . base_path('.git') . ' log --pretty="%h" -n1 HEAD'))
'release' => '4.0.0-beta.292', 'release' => '4.0.0-beta.293',
// When left empty or `null` the Laravel environment will be used // When left empty or `null` the Laravel environment will be used
'environment' => config('app.env'), 'environment' => config('app.env'),

View File

@@ -1,3 +1,3 @@
<?php <?php
return '4.0.0-beta.292'; return '4.0.0-beta.293';

View File

@@ -60,6 +60,9 @@
<br /> <br />
<p>You can review the changelogs <a class="font-bold underline" <p>You can review the changelogs <a class="font-bold underline"
href="https://github.com/coollabsio/coolify/releases" target="_blank">here</a>.</p> href="https://github.com/coollabsio/coolify/releases" target="_blank">here</a>.</p>
<br />
<p>If something goes wrong and you cannot upgrade your instance, You can check the following <a class="font-bold underline"
href="https://coolify.io/docs/upgrade" target="_blank">guide</a> on what to do.</p>
@if ($showProgress) @if ($showProgress)
<div class="flex flex-col pt-4"> <div class="flex flex-col pt-4">
<h4>Progress <x-loading /></h4> <h4>Progress <x-loading /></h4>

View File

@@ -1,7 +1,7 @@
{ {
"coolify": { "coolify": {
"v4": { "v4": {
"version": "4.0.0-beta.292" "version": "4.0.0-beta.293"
}, },
"sentinel": { "sentinel": {
"version": "0.0.4" "version": "0.0.4"