Skip to content

Commit aa71b03

Browse files
committed
Merge branch '8.x'
# Conflicts: # CHANGELOG.md
2 parents d54907c + bad350d commit aa71b03

File tree

4 files changed

+12
-3
lines changed

4 files changed

+12
-3
lines changed

CHANGELOG.md

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,13 @@
11
# Release Notes
22

3-
## [Unreleased](https://github.com/laravel/laravel/compare/v8.6.5...master)
3+
## [Unreleased](https://github.com/laravel/laravel/compare/v8.6.6...master)
4+
5+
6+
## [v8.6.6 (2021-11-09)](https://github.com/laravel/laravel/compare/v8.6.5...v8.6.6)
7+
8+
### Changed
9+
- Remove redundant `tap()` helper in `index.php` ([#5719](https://github.com/laravel/laravel/pull/5719))
10+
- Add `Js` facade ([399d435](https://github.com/laravel/laravel/commit/399d435c4f0b41a5b6d3e14894195f9196d36bb8))
411

512

613
## [v8.6.5 (2021-10-26)](https://github.com/laravel/laravel/compare/v8.6.4...v8.6.5)

README.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -47,6 +47,7 @@ We would like to extend our thanks to the following sponsors for funding Laravel
4747
- **[CMS Max](https://www.cmsmax.com/)**
4848
- **[WebReinvent](https://webreinvent.com/?utm_source=laravel&utm_medium=github&utm_campaign=patreon-sponsors)**
4949
- **[Lendio](https://lendio.com)**
50+
- **[Romega Software](https://romegasoftware.com)**
5051

5152
## Contributing
5253

config/app.php

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -209,6 +209,7 @@
209209
'Gate' => Illuminate\Support\Facades\Gate::class,
210210
'Hash' => Illuminate\Support\Facades\Hash::class,
211211
'Http' => Illuminate\Support\Facades\Http::class,
212+
'Js' => Illuminate\Support\Js::class,
212213
'Lang' => Illuminate\Support\Facades\Lang::class,
213214
'Log' => Illuminate\Support\Facades\Log::class,
214215
'Mail' => Illuminate\Support\Facades\Mail::class,

public/index.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -48,8 +48,8 @@
4848

4949
$kernel = $app->make(Kernel::class);
5050

51-
$response = tap($kernel->handle(
51+
$response = $kernel->handle(
5252
$request = Request::capture()
53-
))->send();
53+
)->send();
5454

5555
$kernel->terminate($request, $response);

0 commit comments

Comments
 (0)