From ca8e5d65da361d070e637d0d82a8eb49b6a41afb Mon Sep 17 00:00:00 2001 From: Adam Mospan Date: Fri, 5 Nov 2021 15:00:12 +0200 Subject: [PATCH 1/4] Remove redundant tap() helper in index.php (#5719) --- public/index.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/public/index.php b/public/index.php index 66ea93cd..002ee24d 100644 --- a/public/index.php +++ b/public/index.php @@ -48,8 +48,8 @@ $kernel = $app->make(Kernel::class); -$response = tap($kernel->handle( +$response = $kernel->handle( $request = Request::capture() -))->send(); +)->send(); $kernel->terminate($request, $response); From 79249c920b45943ecdddb5d968d0a05d0a4bf3d6 Mon Sep 17 00:00:00 2001 From: Braden Keith Date: Fri, 5 Nov 2021 10:45:57 -0400 Subject: [PATCH 2/4] Added Romega Software to Sponsorships (#5721) --- README.md | 1 + 1 file changed, 1 insertion(+) diff --git a/README.md b/README.md index d400ec6d..8878ec11 100644 --- a/README.md +++ b/README.md @@ -47,6 +47,7 @@ ### Premium Partners - **[CMS Max](https://www.cmsmax.com/)** - **[WebReinvent](https://webreinvent.com/?utm_source=laravel&utm_medium=github&utm_campaign=patreon-sponsors)** - **[Lendio](https://lendio.com)** +- **[Romega Software](https://romegasoftware.com)** ## Contributing From 399d435c4f0b41a5b6d3e14894195f9196d36bb8 Mon Sep 17 00:00:00 2001 From: Taylor Otwell Date: Tue, 9 Nov 2021 09:56:23 -0600 Subject: [PATCH 3/4] add facade --- config/app.php | 1 + 1 file changed, 1 insertion(+) diff --git a/config/app.php b/config/app.php index c9b8f5ae..a8d1a82e 100644 --- a/config/app.php +++ b/config/app.php @@ -209,6 +209,7 @@ 'Gate' => Illuminate\Support\Facades\Gate::class, 'Hash' => Illuminate\Support\Facades\Hash::class, 'Http' => Illuminate\Support\Facades\Http::class, + 'Js' => Illuminate\Support\Js::class, 'Lang' => Illuminate\Support\Facades\Lang::class, 'Log' => Illuminate\Support\Facades\Log::class, 'Mail' => Illuminate\Support\Facades\Mail::class, From bad350d1999cbaf2036db9646ddef63d77537e80 Mon Sep 17 00:00:00 2001 From: Dries Vints Date: Tue, 9 Nov 2021 18:29:24 +0100 Subject: [PATCH 4/4] Update CHANGELOG.md --- CHANGELOG.md | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 089daeaa..64bb32c6 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,13 @@ # Release Notes -## [Unreleased](https://github.com/laravel/laravel/compare/v8.6.5...8.x) +## [Unreleased](https://github.com/laravel/laravel/compare/v8.6.6...8.x) + + +## [v8.6.6 (2021-11-09)](https://github.com/laravel/laravel/compare/v8.6.5...v8.6.6) + +### Changed +- Remove redundant `tap()` helper in `index.php` ([#5719](https://github.com/laravel/laravel/pull/5719)) +- Add `Js` facade ([399d435](https://github.com/laravel/laravel/commit/399d435c4f0b41a5b6d3e14894195f9196d36bb8)) ## [v8.6.5 (2021-10-26)](https://github.com/laravel/laravel/compare/v8.6.4...v8.6.5)