v4.0.0-beta.420.1 (#6069)
This commit is contained in:
@@ -3010,13 +3010,12 @@ function newParser(Application|Service $resource, int $pull_request_id = 0, ?int
|
||||
$savedService->image = $image;
|
||||
$savedService->save();
|
||||
}
|
||||
}
|
||||
|
||||
// Pocketbase does not need gzip for SSE.
|
||||
if (str($savedService->image)->contains('pocketbase') && $savedService->is_gzip_enabled) {
|
||||
$savedService->is_gzip_enabled = false;
|
||||
$savedService->save();
|
||||
}
|
||||
}
|
||||
|
||||
$environment = collect(data_get($service, 'environment', []));
|
||||
$buildArgs = collect(data_get($service, 'build.args', []));
|
||||
|
@@ -2,7 +2,7 @@
|
||||
|
||||
return [
|
||||
'coolify' => [
|
||||
'version' => '4.0.0-beta.420',
|
||||
'version' => '4.0.0-beta.420.1',
|
||||
'helper_version' => '1.0.8',
|
||||
'realtime_version' => '1.0.9',
|
||||
'self_hosted' => env('SELF_HOSTED', true),
|
||||
|
@@ -0,0 +1,38 @@
|
||||
<?php
|
||||
|
||||
use Illuminate\Database\Migrations\Migration;
|
||||
use Illuminate\Support\Facades\DB;
|
||||
use Illuminate\Support\Facades\Log;
|
||||
|
||||
return new class extends Migration
|
||||
{
|
||||
/**
|
||||
* Run the migrations.
|
||||
*/
|
||||
public function up(): void
|
||||
{
|
||||
try {
|
||||
// Add specific index for type_uuid queries with ordering
|
||||
DB::statement('CREATE INDEX CONCURRENTLY IF NOT EXISTS idx_activity_type_uuid_created_at ON activity_log ((properties->>\'type_uuid\'), created_at DESC)');
|
||||
|
||||
// Add specific index for status queries on properties
|
||||
DB::statement('CREATE INDEX CONCURRENTLY IF NOT EXISTS idx_activity_properties_status ON activity_log ((properties->>\'status\'))');
|
||||
|
||||
} catch (\Exception $e) {
|
||||
Log::error('Error adding optimized indexes to activity_log: '.$e->getMessage());
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
* Reverse the migrations.
|
||||
*/
|
||||
public function down(): void
|
||||
{
|
||||
try {
|
||||
DB::statement('DROP INDEX CONCURRENTLY IF EXISTS idx_activity_type_uuid_created_at');
|
||||
DB::statement('DROP INDEX CONCURRENTLY IF EXISTS idx_activity_properties_status');
|
||||
} catch (\Exception $e) {
|
||||
Log::error('Error dropping optimized indexes from activity_log: '.$e->getMessage());
|
||||
}
|
||||
}
|
||||
};
|
@@ -1,7 +1,7 @@
|
||||
{
|
||||
"coolify": {
|
||||
"v4": {
|
||||
"version": "4.0.0-beta.420"
|
||||
"version": "4.0.0-beta.420.1"
|
||||
},
|
||||
"nightly": {
|
||||
"version": "4.0.0-beta.421"
|
||||
|
Reference in New Issue
Block a user