Skip to content

Commit

Permalink
Merge pull request #2225 from coollabsio/next
Browse files Browse the repository at this point in the history
v4.0.0-beta.280
  • Loading branch information
andrasbacsai committed May 16, 2024
2 parents e6d1233 + ed9cdc1 commit d81da10
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 6 deletions.
3 changes: 1 addition & 2 deletions app/Jobs/ApplicationDeploymentJob.php
Original file line number Diff line number Diff line change
Expand Up @@ -1179,12 +1179,11 @@ private function clone_repository()
]
);
if ($this->saved_outputs->get('commit_message')) {
$commit_message = str($this->saved_outputs->get('commit_message'))->limit(50);
$commit_message = str($this->saved_outputs->get('commit_message'))->limit(47);
$this->application_deployment_queue->commit_message = $commit_message->value();
ApplicationDeploymentQueue::whereCommit($this->commit)->whereApplicationId($this->application->id)->update(
['commit_message' => $commit_message->value()]
);
$this->application_deployment_queue->save();
}
}

Expand Down
2 changes: 1 addition & 1 deletion app/Livewire/Project/Shared/ScheduledTask/All.php
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ public function mount()
} elseif ($this->resource->type() == 'application') {
if ($this->resource->build_pack === 'dockercompose') {
$parsed = $this->resource->parseCompose();
$containers = collect($parsed['services'])->keys();
$containers = collect(data_get($parsed,'services'))->keys();
$this->containerNames = $containers;
} else {
$this->containerNames = collect([]);
Expand Down
2 changes: 1 addition & 1 deletion config/sentry.php
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@

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

Expand Down
2 changes: 1 addition & 1 deletion config/version.php
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
<?php

return '4.0.0-beta.279';
return '4.0.0-beta.280';
2 changes: 1 addition & 1 deletion versions.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"coolify": {
"v4": {
"version": "4.0.0-beta.279"
"version": "4.0.0-beta.280"
},
"sentinel": {
"version": "0.0.4"
Expand Down

0 comments on commit d81da10

Please sign in to comment.