Merge remote-tracking branch 'origin/next' into fix/manual-webhook-repository-matching

This commit is contained in:
Andras Bacsai 2026-05-22 15:44:24 +02:00
commit 941dbfd988
4 changed files with 5 additions and 4 deletions

View file

@ -2,7 +2,7 @@
return [
'coolify' => [
'version' => '4.1.0',
'version' => '4.1.1',
'helper_version' => '1.0.14',
'realtime_version' => '1.0.15',
'railpack_version' => '0.23.0',

View file

@ -1,7 +1,7 @@
{
"coolify": {
"v4": {
"version": "4.1.0"
"version": "4.1.1"
},
"nightly": {
"version": "4.2.0"

View file

@ -172,7 +172,8 @@ function checkTheme() {
}
@auth
window.Pusher = Pusher;
window.Echo = new Echo({
const EchoConstructor = typeof Echo === 'function' ? Echo : Echo.default;
window.Echo = new EchoConstructor({
broadcaster: 'pusher',
cluster: "{{ config('constants.pusher.host') }}" || window.location.hostname,
key: "{{ config('constants.pusher.app_key') }}" || 'coolify',

View file

@ -1,7 +1,7 @@
{
"coolify": {
"v4": {
"version": "4.1.0"
"version": "4.1.1"
},
"nightly": {
"version": "4.2.0"