diff --git a/CHANGELOG.md b/CHANGELOG.md index 2a7234a7..3cf53221 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,17 @@ # Release Notes -## [Unreleased](https://github.com/laravel/laravel/compare/v8.5.9...master) +## [Unreleased](https://github.com/laravel/laravel/compare/v8.5.10...master) + + +## [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) 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" | */ 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, + ]; + }); + } } 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 @@ 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