From c1b56831dfb96cfc1e87d40f44f7b2cca07c351c Mon Sep 17 00:00:00 2001 From: Govar Jabar Date: Fri, 29 Jan 2021 16:57:50 +0300 Subject: [PATCH 1/7] update web.config (#5528) --- public/web.config | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/public/web.config b/public/web.config index d3711d7c..323482f1 100644 --- a/public/web.config +++ b/public/web.config @@ -1,6 +1,6 @@ From 6d082c81e5bf226dfa6d1dc030e69a225349f535 Mon Sep 17 00:00:00 2001 From: Khaled Date: Sat, 6 Feb 2021 17:35:22 -0700 Subject: [PATCH 2/7] add "ably" in comment as a broadcast connection (#5531) 'ably' was added in the connections array, but the comment was not updated to reflect this fact. --- config/broadcasting.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/config/broadcasting.php b/config/broadcasting.php index ef208598..2d529820 100644 --- a/config/broadcasting.php +++ b/config/broadcasting.php @@ -11,7 +11,7 @@ return [ | framework when an event needs to be broadcast. You may set this to | any of the connections defined in the "connections" array below. | - | Supported: "pusher", "redis", "log", "null" + | Supported: "pusher", "ably", "redis", "log", "null" | */ From eaf7289523b0730b3d0c5a7146ab0f078019a987 Mon Sep 17 00:00:00 2001 From: Jared Lewis Date: Tue, 9 Feb 2021 15:52:23 -0500 Subject: [PATCH 3/7] Add unverified state to UserFactory (#5533) --- database/factories/UserFactory.php | 14 ++++++++++++++ 1 file changed, 14 insertions(+) diff --git a/database/factories/UserFactory.php b/database/factories/UserFactory.php index bdea1a32..99dfdcb6 100644 --- a/database/factories/UserFactory.php +++ b/database/factories/UserFactory.php @@ -30,4 +30,18 @@ class UserFactory extends Factory 'remember_token' => Str::random(10), ]; } + + /** + * Define the model's unverified state. + * + * @return \Illuminate\Database\Eloquent\Factories\Factory + */ + public function unverified() + { + return $this->state(function (array $attributes) { + return [ + 'email_verified_at' => null, + ]; + }); + } } From cbddb27c7e63eb1942efcdd95c8bd5bdf5be940f Mon Sep 17 00:00:00 2001 From: Mark Jaquith Date: Mon, 15 Feb 2021 16:06:24 -0500 Subject: [PATCH 4/7] Change "Login" text to "Log in" (#5536) As this is used as a verb, like its friend "Register", the verb form should be used. http://notaverb.com/login --- resources/views/welcome.blade.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/resources/views/welcome.blade.php b/resources/views/welcome.blade.php index e305e336..917fddfa 100644 --- a/resources/views/welcome.blade.php +++ b/resources/views/welcome.blade.php @@ -27,7 +27,7 @@ @auth Home @else - Login + Log in @if (Route::has('register')) Register From 22626b5701cc7557d4bd45a6af5730027fc4a061 Mon Sep 17 00:00:00 2001 From: Taylor Otwell Date: Mon, 15 Feb 2021 15:06:50 -0600 Subject: [PATCH 5/7] Revert "Change "Login" text to "Log in" (#5536)" (#5537) This reverts commit cbddb27c7e63eb1942efcdd95c8bd5bdf5be940f. --- resources/views/welcome.blade.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/resources/views/welcome.blade.php b/resources/views/welcome.blade.php index 917fddfa..e305e336 100644 --- a/resources/views/welcome.blade.php +++ b/resources/views/welcome.blade.php @@ -27,7 +27,7 @@ @auth Home @else - Log in + Login @if (Route::has('register')) Register From 9a56a60cc9e3785683e256d511ee1fb533025a0a Mon Sep 17 00:00:00 2001 From: Taylor Otwell Date: Tue, 16 Feb 2021 08:02:06 -0600 Subject: [PATCH 6/7] update wording --- resources/views/welcome.blade.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/resources/views/welcome.blade.php b/resources/views/welcome.blade.php index e305e336..917fddfa 100644 --- a/resources/views/welcome.blade.php +++ b/resources/views/welcome.blade.php @@ -27,7 +27,7 @@ @auth Home @else - Login + Log in @if (Route::has('register')) Register From 689c0e5a230a27d421903439e0396a7339973759 Mon Sep 17 00:00:00 2001 From: Dries Vints Date: Tue, 16 Feb 2021 17:57:31 +0100 Subject: [PATCH 7/7] Update CHANGELOG.md --- CHANGELOG.md | 13 ++++++++++++- 1 file changed, 12 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index ca04d691..e8365d68 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,17 @@ # Release Notes -## [Unreleased](https://github.com/laravel/laravel/compare/v8.5.9...8.x) +## [Unreleased](https://github.com/laravel/laravel/compare/v8.5.10...8.x) + + +## [v8.5.10 (2021-02-16)](https://github.com/laravel/laravel/compare/v8.5.9...v8.5.10) + +### Changed +- Add "ably" in comment as a broadcast connection ([#5531](https://github.com/laravel/laravel/pull/5531)) +- Add unverified state to UserFactory ([#5533](https://github.com/laravel/laravel/pull/5533)) +- Update login wording ([9a56a60](https://github.com/laravel/laravel/commit/9a56a60cc9e3785683e256d511ee1fb533025a0a)) + +### Fixed +- Fix dead link in web.config ([#5528](https://github.com/laravel/laravel/pull/5528)) ## [v8.5.9 (2021-01-19)](https://github.com/laravel/laravel/compare/v8.5.8...v8.5.9)