From 0234dde4536824dda1cb55d33c4ebba2a5457117 Mon Sep 17 00:00:00 2001 From: David Bomba Date: Wed, 10 Jan 2024 11:35:31 +1100 Subject: [PATCH 1/2] Fixes for migraitons --- .../2024_01_09_084515_product_cost_field_population.php | 1 + 1 file changed, 1 insertion(+) diff --git a/database/migrations/2024_01_09_084515_product_cost_field_population.php b/database/migrations/2024_01_09_084515_product_cost_field_population.php index 830470d94ca9..ce08aed2dcee 100644 --- a/database/migrations/2024_01_09_084515_product_cost_field_population.php +++ b/database/migrations/2024_01_09_084515_product_cost_field_population.php @@ -2,6 +2,7 @@ use App\Utils\Ninja; use App\Models\Invoice; +use App\Models\Product; use Illuminate\Support\Facades\Schema; use Illuminate\Database\Schema\Blueprint; use Illuminate\Database\Migrations\Migration; From 40e078b4e1ec619686aeb77751985e7891576490 Mon Sep 17 00:00:00 2001 From: David Bomba Date: Wed, 10 Jan 2024 11:35:49 +1100 Subject: [PATCH 2/2] Fixes for migration --- VERSION.txt | 2 +- config/ninja.php | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/VERSION.txt b/VERSION.txt index ee108f47ac1b..a94a88fbb889 100644 --- a/VERSION.txt +++ b/VERSION.txt @@ -1 +1 @@ -5.8.4 \ No newline at end of file +5.8.5 \ No newline at end of file diff --git a/config/ninja.php b/config/ninja.php index 7284ecc9ebfb..0ed8eb4931d4 100644 --- a/config/ninja.php +++ b/config/ninja.php @@ -17,8 +17,8 @@ return [ 'require_https' => env('REQUIRE_HTTPS', true), 'app_url' => rtrim(env('APP_URL', ''), '/'), 'app_domain' => env('APP_DOMAIN', 'invoicing.co'), - 'app_version' => env('APP_VERSION', '5.8.4'), - 'app_tag' => env('APP_TAG', '5.8.4'), + 'app_version' => env('APP_VERSION', '5.8.5'), + 'app_tag' => env('APP_TAG', '5.8.5'), 'minimum_client_version' => '5.0.16', 'terms_version' => '1.0.1', 'api_secret' => env('API_SECRET', false),