From 5808129a1f702f973c7c31203d16db2066bd9030 Mon Sep 17 00:00:00 2001 From: Dries Vints Date: Fri, 26 Mar 2021 15:47:26 +0100 Subject: [PATCH 1/5] Rename test methods (#5574) --- tests/Feature/ExampleTest.php | 2 +- tests/Unit/ExampleTest.php | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/tests/Feature/ExampleTest.php b/tests/Feature/ExampleTest.php index cdb51119..4ae02bc5 100644 --- a/tests/Feature/ExampleTest.php +++ b/tests/Feature/ExampleTest.php @@ -12,7 +12,7 @@ class ExampleTest extends TestCase * * @return void */ - public function testBasicTest() + public function test_example() { $response = $this->get('/'); diff --git a/tests/Unit/ExampleTest.php b/tests/Unit/ExampleTest.php index 358cfc88..62e8c3cd 100644 --- a/tests/Unit/ExampleTest.php +++ b/tests/Unit/ExampleTest.php @@ -11,7 +11,7 @@ class ExampleTest extends TestCase * * @return void */ - public function testBasicTest() + public function test_example() { $this->assertTrue(true); } From 54741275481a44be350758d6556c32696844b1a8 Mon Sep 17 00:00:00 2001 From: Taylor Otwell Date: Thu, 8 Apr 2021 13:45:57 -0500 Subject: [PATCH 2/5] Update README.md --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 From 0e8e9a0727afce37d6954a9763a86dde82eb99ee Mon Sep 17 00:00:00 2001 From: JuanDMeGon Date: Tue, 13 Apr 2021 07:28:01 -0500 Subject: [PATCH 3/5] [8.x] Using faker method instead of properties (#5583) After Faker PHP 1.14 using properties is deprecated and is recommended to use methods instead. --- database/factories/UserFactory.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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), From e109ac9022888ed86661ab57b7724e4bf1cf9a72 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Roger=20Vil=C3=A0?= Date: Fri, 16 Apr 2021 15:13:56 +0200 Subject: [PATCH 4/5] Update .gitignore (#5593) --- database/.gitignore | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) 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* From a6ffdbdf416d60c38443725807a260a84dca5045 Mon Sep 17 00:00:00 2001 From: Dries Vints Date: Tue, 20 Apr 2021 18:13:08 +0200 Subject: [PATCH 5/5] Update CHANGELOG.md --- CHANGELOG.md | 12 +++++++++++- 1 file changed, 11 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index f55469d6..45e94be1 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,16 @@ # Release Notes -## [Unreleased](https://github.com/laravel/laravel/compare/v8.5.15...8.x) +## [Unreleased](https://github.com/laravel/laravel/compare/v8.5.16...8.x) + + +## [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)