Skip to content

Commit 85ca38b

Browse files
authored
Merge pull request coollabsio#2325 from coollabsio/next
v4.0.0-beta.293
2 parents 1092d00 + 7c9790d commit 85ca38b

File tree

5 files changed

+9
-6
lines changed

5 files changed

+9
-6
lines changed

app/Actions/Server/UpdateCoolify.php

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -53,12 +53,12 @@ public function handle($manual_update = false)
5353
private function update()
5454
{
5555
if (isDev()) {
56-
instant_remote_process([
57-
"sleep 1"
56+
remote_process([
57+
"sleep 10"
5858
], $this->server);
5959
return;
6060
}
61-
instant_remote_process([
61+
remote_process([
6262
"curl -fsSL https://cdn.coollabs.io/coolify/upgrade.sh -o /data/coolify/source/upgrade.sh",
6363
"bash /data/coolify/source/upgrade.sh $this->latestVersion"
6464
], $this->server);

config/sentry.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77

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

config/version.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
<?php
22

3-
return '4.0.0-beta.292';
3+
return '4.0.0-beta.293';

resources/views/livewire/upgrade.blade.php

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -60,6 +60,9 @@ class="absolute top-0 right-0 flex items-center justify-center w-8 h-8 mt-5 mr-5
6060
<br />
6161
<p>You can review the changelogs <a class="font-bold underline"
6262
href="https://github.com/coollabsio/coolify/releases" target="_blank">here</a>.</p>
63+
<br />
64+
<p>If something goes wrong and you cannot upgrade your instance, You can check the following <a class="font-bold underline"
65+
href="https://coolify.io/docs/upgrade" target="_blank">guide</a> on what to do.</p>
6366
@if ($showProgress)
6467
<div class="flex flex-col pt-4">
6568
<h4>Progress <x-loading /></h4>

versions.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"coolify": {
33
"v4": {
4-
"version": "4.0.0-beta.292"
4+
"version": "4.0.0-beta.293"
55
},
66
"sentinel": {
77
"version": "0.0.4"

0 commit comments

Comments
 (0)