File tree 4 files changed +12
-3
lines changed
4 files changed +12
-3
lines changed Original file line number Diff line number Diff line change 1
1
# Release Notes
2
2
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 ) )
4
11
5
12
6
13
## [ v8.6.5 (2021-10-26)] ( https://github.com/laravel/laravel/compare/v8.6.4...v8.6.5 )
Original file line number Diff line number Diff line change @@ -47,6 +47,7 @@ We would like to extend our thanks to the following sponsors for funding Laravel
47
47
- ** [ CMS Max] ( https://www.cmsmax.com/ ) **
48
48
- ** [ WebReinvent] ( https://webreinvent.com/?utm_source=laravel&utm_medium=github&utm_campaign=patreon-sponsors ) **
49
49
- ** [ Lendio] ( https://lendio.com ) **
50
+ - ** [ Romega Software] ( https://romegasoftware.com ) **
50
51
51
52
## Contributing
52
53
Original file line number Diff line number Diff line change 209
209
'Gate ' => Illuminate \Support \Facades \Gate::class,
210
210
'Hash ' => Illuminate \Support \Facades \Hash::class,
211
211
'Http ' => Illuminate \Support \Facades \Http::class,
212
+ 'Js ' => Illuminate \Support \Js::class,
212
213
'Lang ' => Illuminate \Support \Facades \Lang::class,
213
214
'Log ' => Illuminate \Support \Facades \Log::class,
214
215
'Mail ' => Illuminate \Support \Facades \Mail::class,
Original file line number Diff line number Diff line change 48
48
49
49
$ kernel = $ app ->make (Kernel::class);
50
50
51
- $ response = tap ( $ kernel ->handle (
51
+ $ response = $ kernel ->handle (
52
52
$ request = Request::capture ()
53
- )) ->send ();
53
+ )->send ();
54
54
55
55
$ kernel ->terminate ($ request , $ response );
You can’t perform that action at this time.
0 commit comments