diff --git a/app/Http/Livewire/Project/CloneProject.php b/app/Http/Livewire/Project/CloneProject.php index 215f494a7..48852b7ce 100644 --- a/app/Http/Livewire/Project/CloneProject.php +++ b/app/Http/Livewire/Project/CloneProject.php @@ -105,6 +105,7 @@ public function clone() $newDatabase = $database->replicate()->fill([ 'uuid' => $uuid, 'status' => 'exited', + 'started_at' => null, 'environment_id' => $newEnvironment->id, 'destination_id' => $this->selectedServer, ]); diff --git a/app/Http/Livewire/Project/Database/Mariadb/General.php b/app/Http/Livewire/Project/Database/Mariadb/General.php index 4d04371d0..11b5fc42b 100644 --- a/app/Http/Livewire/Project/Database/Mariadb/General.php +++ b/app/Http/Livewire/Project/Database/Mariadb/General.php @@ -44,6 +44,9 @@ class General extends Component public function submit() { try { + if (str($this->database->public_port)->isEmpty()) { + $this->database->public_port = null; + } $this->validate(); $this->database->save(); $this->emit('success', 'Database updated successfully.'); diff --git a/app/Http/Livewire/Project/Database/Mongodb/General.php b/app/Http/Livewire/Project/Database/Mongodb/General.php index 2e6bed4a4..ce0ff14ea 100644 --- a/app/Http/Livewire/Project/Database/Mongodb/General.php +++ b/app/Http/Livewire/Project/Database/Mongodb/General.php @@ -42,10 +42,13 @@ class General extends Component public function submit() { try { - $this->validate(); - if ($this->database->mongo_conf === "") { + if (str($this->database->public_port)->isEmpty()) { + $this->database->public_port = null; + } + if (str($this->database->mongo_conf)->isEmpty()) { $this->database->mongo_conf = null; } + $this->validate(); $this->database->save(); $this->emit('success', 'Database updated successfully.'); } catch (Exception $e) { diff --git a/app/Http/Livewire/Project/Database/Mysql/General.php b/app/Http/Livewire/Project/Database/Mysql/General.php index ca7eb6ebe..416970ea9 100644 --- a/app/Http/Livewire/Project/Database/Mysql/General.php +++ b/app/Http/Livewire/Project/Database/Mysql/General.php @@ -44,6 +44,9 @@ class General extends Component public function submit() { try { + if (str($this->database->public_port)->isEmpty()) { + $this->database->public_port = null; + } $this->validate(); $this->database->save(); $this->emit('success', 'Database updated successfully.'); diff --git a/app/Http/Livewire/Project/Database/Postgresql/General.php b/app/Http/Livewire/Project/Database/Postgresql/General.php index 4e3bda418..7872764e3 100644 --- a/app/Http/Livewire/Project/Database/Postgresql/General.php +++ b/app/Http/Livewire/Project/Database/Postgresql/General.php @@ -91,7 +91,6 @@ public function delete_init_script($script) $collection = collect($this->database->init_scripts); $found = $collection->firstWhere('filename', $script['filename']); if ($found) { - ray($collection->filter(fn ($s) => $s['filename'] !== $script['filename'])->toArray()); $this->database->init_scripts = $collection->filter(fn ($s) => $s['filename'] !== $script['filename'])->toArray(); $this->database->save(); $this->refresh(); @@ -135,6 +134,9 @@ public function save_new_init_script() public function submit() { try { + if (str($this->database->public_port)->isEmpty()) { + $this->database->public_port = null; + } $this->validate(); $this->database->save(); $this->emit('success', 'Database updated successfully.'); diff --git a/app/Jobs/ApplicationDeploymentJob.php b/app/Jobs/ApplicationDeploymentJob.php index d91334745..725b8cbc0 100644 --- a/app/Jobs/ApplicationDeploymentJob.php +++ b/app/Jobs/ApplicationDeploymentJob.php @@ -882,11 +882,17 @@ private function generate_environment_variables($ports) foreach ($this->application->runtime_environment_variables as $env) { $environment_variables->push("$env->key=$env->value"); } + foreach ($this->application->nixpacks_environment_variables as $env) { + $environment_variables->push("$env->key=$env->value"); + } } else { // ray($this->application->runtime_environment_variables_preview)->green(); foreach ($this->application->runtime_environment_variables_preview as $env) { $environment_variables->push("$env->key=$env->value"); } + foreach ($this->application->nixpacks_environment_variables_preview as $env) { + $environment_variables->push("$env->key=$env->value"); + } } // Add PORT if not exists, use the first port as default if ($environment_variables->filter(fn ($env) => Str::of($env)->contains('PORT'))->isEmpty()) { diff --git a/config/sentry.php b/config/sentry.php index 8ffa05932..e6e07d06b 100644 --- a/config/sentry.php +++ b/config/sentry.php @@ -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.112', + 'release' => '4.0.0-beta.113', // When left empty or `null` the Laravel environment will be used 'environment' => config('app.env'), diff --git a/config/version.php b/config/version.php index b2220ad08..ef861eb3a 100644 --- a/config/version.php +++ b/config/version.php @@ -1,3 +1,3 @@