8000 Merge branch '6.x' into 8.x · laravel/framework@6bc7d1b · GitHub
[go: up one dir, main page]

Skip to content

Commit 6bc7d1b

Browse files
Merge branch '6.x' into 8.x
2 parents ec82a4f + 0966a30 commit 6bc7d1b

File tree

2 files changed

+15
-2
lines changed

2 files changed

+15
-2
lines changed

CHANGELOG-6.x.md

Lines changed: 14 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,19 @@
11
# Release Notes for 6.x
22

3-
## [Unreleased](https://github.com/laravel/framework/compare/v6.20.13...6.x)
3+
## [Unreleased](https://github.com/laravel/framework/compare/v6.20.15...6.x)
4+
5+
6+
## [v6.20.15 (2021-01-26)](https://github.com/laravel/framework/compare/v6.20.14...v6.20.15)
7+
8+
### Changed
9+
- Pipe new through render and report exception methods ([#36037](https://github.com/laravel/framework/pull/36037))
10+
11+
12+
## [v6.20.14 (2021-01-21)](https://github.com/laravel/framework/compare/v6.20.13...v6.20.14)
13+
14+
### Fixed
15+
- Fixed type error in `Illuminate\Http\Concerns\InteractsWithContentTypes::isJson()` ([#35956](https://github.com/laravel/framework/pull/35956))
16+
- Limit expected bindings ([#35972](https://github.com/laravel/framework/pull/35972), [006873d](https://github.com/laravel/framework/commit/006873df411d28bfd03fea5e7f91a2afe3918498))
417

518

619
## [v6.20.13 (2021-01-19)](https://github.com/laravel/framework/compare/v6.20.12...v6.20.13)

src/Illuminate/Pagination/AbstractPaginator.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -494,7 +494,7 @@ public static function currentPathResolver(Closure $resolver)
494494
public static function resolveCurrentPage($pageName = 'page', $default = 1)
495495
{
496496
if (isset(static::$currentPageResolver)) {
497-
return call_user_func(static::$currentPageResolver, $pageName);
497+
return (int) call_user_func(static::$currentPageResolver, $pageName);
498498
}
499499

500500
return $default;

0 commit comments

Comments
 (0)
0