From eca7bc7d66cef63500a62e8deaa3fce1772f1641 Mon Sep 17 00:00:00 2001 From: Aimeos Date: Wed, 8 Jan 2020 12:44:22 +0100 Subject: [PATCH 1/4] Use file session driver again --- .env.example | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.env.example b/.env.example index 39e35b24..53d48bf3 100644 --- a/.env.example +++ b/.env.example @@ -16,7 +16,7 @@ DB_PASSWORD= BROADCAST_DRIVER=log CACHE_DRIVER=file QUEUE_CONNECTION=sync -SESSION_DRIVER=cookie +SESSION_DRIVER=file SESSION_LIFETIME=120 REDIS_HOST=127.0.0.1 From f44f065a2b2cad1a947a7e8adc08fcc13d18c49c Mon Sep 17 00:00:00 2001 From: Aimeos Date: Wed, 8 Jan 2020 12:44:53 +0100 Subject: [PATCH 2/4] Use file session driver again --- config/session.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/config/session.php b/config/session.php index 97caf9a7..857ebc3e 100644 --- a/config/session.php +++ b/config/session.php @@ -18,7 +18,7 @@ | */ - 'driver' => env('SESSION_DRIVER', 'cookie'), + 'driver' => env('SESSION_DRIVER', 'file'), /* |-------------------------------------------------------------------------- From f121af8985d1dbb665cb9ca4b6a9f7dbb6211a7c Mon Sep 17 00:00:00 2001 From: Robert Korulczyk Date: Sun, 12 Jan 2020 16:06:29 +0100 Subject: [PATCH 3/4] Add missing full stop for some validation messages (#5205) --- resources/lang/en/validation.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/resources/lang/en/validation.php b/resources/lang/en/validation.php index ce1d80dd..a65914f9 100644 --- a/resources/lang/en/validation.php +++ b/resources/lang/en/validation.php @@ -40,7 +40,7 @@ 'dimensions' => 'The :attribute has invalid image dimensions.', 'distinct' => 'The :attribute field has a duplicate value.', 'email' => 'The :attribute must be a valid email address.', - 'ends_with' => 'The :attribute must end with one of the following: :values', + 'ends_with' => 'The :attribute must end with one of the following: :values.', 'exists' => 'The selected :attribute is invalid.', 'file' => 'The :attribute must be a file.', 'filled' => 'The :attribute field must have a value.', @@ -110,7 +110,7 @@ 'string' => 'The :attribute must be :size characters.', 'array' => 'The :attribute must contain :size items.', ], - 'starts_with' => 'The :attribute must start with one of the following: :values', + 'starts_with' => 'The :attribute must start with one of the following: :values.', 'string' => 'The :attribute must be a string.', 'timezone' => 'The :attribute must be a valid zone.', 'unique' => 'The :attribute has already been taken.', From 9b6d1b14bcbeba1b52a75a48dedc0402b1f08bb5 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ca=C3=ADque=20de=20Castro=20Soares=20da=20Silva?= Date: Mon, 13 Jan 2020 13:36:09 -0300 Subject: [PATCH 4/4] Update laravel mix and sass loader (#5203) --- package.json | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/package.json b/package.json index 9fcb8ee8..e822d86a 100644 --- a/package.json +++ b/package.json @@ -12,10 +12,10 @@ "devDependencies": { "axios": "^0.19", "cross-env": "^5.1", - "laravel-mix": "^4.0.7", + "laravel-mix": "^5.0.1", "lodash": "^4.17.13", "resolve-url-loader": "^2.3.1", "sass": "^1.15.2", - "sass-loader": "^7.1.0" + "sass-loader": "^8.0.0" } }