From 57c1fd51dac92803bcd8cb3a63a5242b1289bbbb Mon Sep 17 00:00:00 2001 From: Tetiana Blindaruk Date: Tue, 29 Sep 2020 19:03:08 +0300 Subject: [PATCH 1/5] [6.x] update changelog --- CHANGELOG-6.x.md | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/CHANGELOG-6.x.md b/CHANGELOG-6.x.md index 3d774a432c43..dc62b3b8aec9 100644 --- a/CHANGELOG-6.x.md +++ b/CHANGELOG-6.x.md @@ -1,6 +1,12 @@ # Release Notes for 6.x -## [Unreleased](https://github.com/laravel/framework/compare/v6.18.40...6.x) +## [Unreleased](https://github.com/laravel/framework/compare/v6.18.41...6.x) + + +## [v6.18.41 (2020-09-29)](https://github.com/laravel/framework/compare/v6.18.40...v6.18.41) + +### Fixed +- Added support for stream reads in FileManager for S3 driver ([#34480](https://github.com/laravel/framework/pull/34480)) ## [v6.18.40 (2020-09-09)](https://github.com/laravel/framework/compare/v6.18.39...v6.18.40) From 52c77fcbc82e33d5c6e20771f584ab063e21855f Mon Sep 17 00:00:00 2001 From: "Abdallah S. Hassan" <34351131+abdallahshassan@users.noreply.github.com> Date: Fri, 2 Oct 2020 22:10:17 +0200 Subject: [PATCH 2/5] add missed RESET_THROTTLED constant to Password Facade (#34641) --- src/Illuminate/Support/Facades/Password.php | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/src/Illuminate/Support/Facades/Password.php b/src/Illuminate/Support/Facades/Password.php index 228b588827d5..864b5e987dde 100755 --- a/src/Illuminate/Support/Facades/Password.php +++ b/src/Illuminate/Support/Facades/Password.php @@ -40,6 +40,13 @@ class Password extends Facade */ const INVALID_TOKEN = PasswordBroker::INVALID_TOKEN; + /** + * Constant representing a throttled reset attempt. + * + * @var string + */ + const RESET_THROTTLED = PasswordBroker::RESET_THROTTLED; + /** * Get the registered name of the component. * From 8de2c9deb6fef5e8bb8a1f8e40b21827c998f578 Mon Sep 17 00:00:00 2001 From: Daan Raatjes Date: Mon, 5 Oct 2020 14:49:08 +0200 Subject: [PATCH 3/5] Fix incorrect PHPDoc argument for signedRoute (#34672) --- src/Illuminate/Routing/UrlGenerator.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Illuminate/Routing/UrlGenerator.php b/src/Illuminate/Routing/UrlGenerator.php index b8b8f08c1fc8..63e344aca213 100755 --- a/src/Illuminate/Routing/UrlGenerator.php +++ b/src/Illuminate/Routing/UrlGenerator.php @@ -311,7 +311,7 @@ public function formatScheme($secure = null) * Create a signed route URL for a named route. * * @param string $name - * @param array $parameters + * @param mixed $parameters * @param \DateTimeInterface|\DateInterval|int|null $expiration * @param bool $absolute * @return string From 924e3a6735357b81b624459a77504c76bc1a4c3c Mon Sep 17 00:00:00 2001 From: Daan Raatjes Date: Mon, 5 Oct 2020 15:31:12 +0200 Subject: [PATCH 4/5] Fix incorrect PHPDoc type for queryParameters (#34683) --- src/Illuminate/Http/Resources/Json/ResourceCollection.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Illuminate/Http/Resources/Json/ResourceCollection.php b/src/Illuminate/Http/Resources/Json/ResourceCollection.php index f71fd0b3fc02..2931fd6463c7 100644 --- a/src/Illuminate/Http/Resources/Json/ResourceCollection.php +++ b/src/Illuminate/Http/Resources/Json/ResourceCollection.php @@ -35,7 +35,7 @@ class ResourceCollection extends JsonResource implements Countable, IteratorAggr /** * The query parameters that should be added to the pagination links. * - * @var array + * @var array|null */ protected $queryParameters; From ea27c9af8f9fbd27ab0753749830c267f25de9d4 Mon Sep 17 00:00:00 2001 From: Taylor Otwell Date: Tue, 6 Oct 2020 09:21:51 -0500 Subject: [PATCH 5/5] patch --- src/Illuminate/Foundation/Application.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Illuminate/Foundation/Application.php b/src/Illuminate/Foundation/Application.php index 6e17144a10f1..466b878d9c32 100755 --- a/src/Illuminate/Foundation/Application.php +++ b/src/Illuminate/Foundation/Application.php @@ -31,7 +31,7 @@ class Application extends Container implements ApplicationContract, HttpKernelIn * * @var string */ - const VERSION = '6.18.41'; + const VERSION = '6.18.42'; /** * The base path for the Laravel installation.