From 641fcfb60aa47266c5b4767830dc45bad00c561c Mon Sep 17 00:00:00 2001 From: Taylor Otwell Date: Fri, 6 Mar 2020 07:57:11 -0600 Subject: [PATCH 1/5] remove config entry --- config/view.php | 13 ------------- 1 file changed, 13 deletions(-) diff --git a/config/view.php b/config/view.php index bc73d32b..22b8a18d 100644 --- a/config/view.php +++ b/config/view.php @@ -33,17 +33,4 @@ realpath(storage_path('framework/views')) ), - /* - |-------------------------------------------------------------------------- - | Blade View Modification Checking - |-------------------------------------------------------------------------- - | - | On every request the framework will check to see if a view has expired - | to determine if it needs to be recompiled. If you are in production - | and precompiling views this feature may be disabled to save time. - | - */ - - 'expires' => env('VIEW_CHECK_EXPIRATION', true), - ]; From b0ce2adc423ff175a20838ee5f2c858cbc63b11f Mon Sep 17 00:00:00 2001 From: Roberto Aguilar Date: Fri, 6 Mar 2020 15:16:30 -0600 Subject: [PATCH 2/5] Add new SQS queue suffix option (#5252) As described in laravel/framework#31784, this option will allow to define a queue name suffix. --- config/queue.php | 1 + 1 file changed, 1 insertion(+) diff --git a/config/queue.php b/config/queue.php index 3a30d6c6..00b76d65 100644 --- a/config/queue.php +++ b/config/queue.php @@ -55,6 +55,7 @@ 'secret' => env('AWS_SECRET_ACCESS_KEY'), 'prefix' => env('SQS_PREFIX', 'https://sqs.us-east-1.amazonaws.com/your-account-id'), 'queue' => env('SQS_QUEUE', 'your-queue-name'), + 'suffix' => env('SQS_SUFFIX'), 'region' => env('AWS_DEFAULT_REGION', 'us-east-1'), ], From c7a0002432351690d28223afa7caa272e769e226 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Andr=C3=A9=20Ricard?= Date: Wed, 11 Mar 2020 09:37:46 -0300 Subject: [PATCH 3/5] Fix the code indent of object operators (#5258) This commit fixes the code indent of object operators, as following the framework code standards -> 2.4. Indenting --- app/Providers/RouteServiceProvider.php | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/app/Providers/RouteServiceProvider.php b/app/Providers/RouteServiceProvider.php index 527eee34..540d17b4 100644 --- a/app/Providers/RouteServiceProvider.php +++ b/app/Providers/RouteServiceProvider.php @@ -59,8 +59,8 @@ public function map() protected function mapWebRoutes() { Route::middleware('web') - ->namespace($this->namespace) - ->group(base_path('routes/web.php')); + ->namespace($this->namespace) + ->group(base_path('routes/web.php')); } /** @@ -73,8 +73,8 @@ protected function mapWebRoutes() protected function mapApiRoutes() { Route::prefix('api') - ->middleware('api') - ->namespace($this->namespace) - ->group(base_path('routes/api.php')); + ->middleware('api') + ->namespace($this->namespace) + ->group(base_path('routes/api.php')); } } From 166abfa35c535f4572d5971a99aec45cc8c63ff6 Mon Sep 17 00:00:00 2001 From: "Barry vd. Heuvel" Date: Wed, 11 Mar 2020 21:08:52 +0100 Subject: [PATCH 4/5] Update default CORS config (#5259) --- config/cors.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/config/cors.php b/config/cors.php index 5c9de897..558369dc 100644 --- a/config/cors.php +++ b/config/cors.php @@ -25,9 +25,9 @@ 'allowed_headers' => ['*'], - 'exposed_headers' => false, + 'exposed_headers' => [], - 'max_age' => false, + 'max_age' => 0, 'supports_credentials' => false, From f93f4ad8bf114116a7c6917e7da155b5656463af Mon Sep 17 00:00:00 2001 From: Mathieu TUDISCO Date: Fri, 13 Mar 2020 20:53:56 +0100 Subject: [PATCH 5/5] Fix session config changes (#5261) * Fix session config changes * Update session.php Co-authored-by: Taylor Otwell --- config/session.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/config/session.php b/config/session.php index bc9174f4..d0ccd5a8 100644 --- a/config/session.php +++ b/config/session.php @@ -166,7 +166,7 @@ | */ - 'secure' => env('SESSION_SECURE_COOKIE', null), + 'secure' => env('SESSION_SECURE_COOKIE'), /* |-------------------------------------------------------------------------- @@ -190,7 +190,7 @@ | take place, and can be used to mitigate CSRF attacks. By default, we | do not enable this as other CSRF protection services are in place. | - | Supported: "lax", "strict", "none" + | Supported: "lax", "strict", "none", null | */