diff --git a/CHANGELOG.md b/CHANGELOG.md index f6a01866..a944ec71 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,16 @@ # Release Notes -## [Unreleased](https://github.com/laravel/laravel/compare/v8.5.15...master) +## [Unreleased](https://github.com/laravel/laravel/compare/v8.5.16...master) + + +## [v8.5.16 (2021-04-20)](https://github.com/laravel/laravel/compare/v8.5.15...v8.5.16) + +### Changed +- Rename test methods ([#5574](https://github.com/laravel/laravel/pull/5574)) +- Using faker method instead of properties ([#5583](https://github.com/laravel/laravel/pull/5583)) + +### Fixed +- Ignore SQLite files generated on parallel testing ([#5593](https://github.com/laravel/laravel/pull/5593)) ## [v8.5.15 (2021-03-23)](https://github.com/laravel/laravel/compare/v8.5.14...v8.5.15) diff --git a/README.md b/README.md index e1dcd2e1..ceb6ac0a 100644 --- a/README.md +++ b/README.md @@ -42,7 +42,7 @@ We would like to extend our thanks to the following sponsors for funding Laravel - **[Many](https://www.many.co.uk)** - **[Webdock, Fast VPS Hosting](https://www.webdock.io/en)** - **[DevSquad](https://devsquad.com)** -- **[Curotec](https://www.curotec.com/)** +- **[Curotec](https://www.curotec.com/services/technologies/laravel/)** - **[OP.GG](https://op.gg)** ## Contributing diff --git a/database/.gitignore b/database/.gitignore index 97fc9767..9b19b93c 100644 --- a/database/.gitignore +++ b/database/.gitignore @@ -1,2 +1 @@ -*.sqlite -*.sqlite-journal +*.sqlite* diff --git a/database/factories/UserFactory.php b/database/factories/UserFactory.php index 3510ed67..a24ce53f 100644 --- a/database/factories/UserFactory.php +++ b/database/factories/UserFactory.php @@ -23,8 +23,8 @@ class UserFactory extends Factory public function definition() { return [ - 'name' => $this->faker->name, - 'email' => $this->faker->unique()->safeEmail, + 'name' => $this->faker->name(), + 'email' => $this->faker->unique()->safeEmail(), 'email_verified_at' => now(), 'password' => '$2y$10$92IXUNpkjO0rOQ5byMi.Ye4oKoEa3Ro9llC/.og/at2.uheWG/igi', // password 'remember_token' => Str::random(10),