Skip to content

Commit eb6add3

Browse files
authored
Merge pull request coollabsio#3287 from coollabsio/next
v4.0.0-beta.325
2 parents 62de2b8 + dfd5cc9 commit eb6add3

File tree

4 files changed

+12
-8
lines changed

4 files changed

+12
-8
lines changed

bootstrap/helpers/shared.php

Lines changed: 8 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2819,8 +2819,10 @@ function parseDockerComposeFile(Service|Application $resource, bool $isNew = fal
28192819
$defaultLabels = defaultLabels($resource->id, $containerName, $pull_request_id, type: 'application');
28202820
$serviceLabels = $serviceLabels->merge($defaultLabels);
28212821

2822-
if ($server->isLogDrainEnabled() && $resource->isLogDrainEnabled()) {
2823-
data_set($service, 'logging', generate_fluentd_configuration());
2822+
if ($server->isLogDrainEnabled()) {
2823+
if ($resource instanceof Application && $resource->isLogDrainEnabled()) {
2824+
data_set($service, 'logging', generate_fluentd_configuration());
2825+
}
28242826
}
28252827
if ($serviceLabels->count() > 0) {
28262828
if ($resource->settings->is_container_label_escape_enabled) {
@@ -2923,8 +2925,10 @@ function newParser(Application|Service $resource, int $pull_request_id = 0, ?int
29232925
$restart = data_get_str($service, 'restart', RESTART_MODE);
29242926
$logging = data_get($service, 'logging');
29252927

2926-
if ($server->isLogDrainEnabled() && $resource->isLogDrainEnabled()) {
2927-
$logging = generate_fluentd_configuration();
2928+
if ($server->isLogDrainEnabled()) {
2929+
if ($resource instanceof Application && $resource->isLogDrainEnabled()) {
2930+
$logging = generate_fluentd_configuration();
2931+
}
29282932
}
29292933
$volumes = collect(data_get($service, 'volumes', []));
29302934
$networks = collect(data_get($service, 'networks', []));

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.324',
10+
'release' => '4.0.0-beta.325',
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.324';
3+
return '4.0.0-beta.325';

versions.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
{
22
"coolify": {
33
"v4": {
4-
"version": "4.0.0-beta.324"
4+
"version": "4.0.0-beta.325"
55
},
66
"nightly": {
7-
"version": "4.0.0-beta.324"
7+
"version": "4.0.0-beta.325"
88
}
99
}
1010
}

0 commit comments

Comments
 (0)