From 6a68092228844b1793bbcf4f0bf7c5ba2c9bd16c Mon Sep 17 00:00:00 2001 From: Taylor Otwell Date: Tue, 5 Oct 2021 09:23:35 -0500 Subject: [PATCH 1/2] Revert "Uses `LazilyRefreshDatabase` by default (#5696)" (#5700) This reverts commit 4578193d52f148c79b16a552db65e29a65fee209. --- composer.json | 2 +- tests/Feature/ExampleTest.php | 1 + tests/TestCase.php | 3 +-- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/composer.json b/composer.json index fc3dfc6be..3c6d778d1 100644 --- a/composer.json +++ b/composer.json @@ -8,7 +8,7 @@ "php": "^7.3|^8.0", "fruitcake/laravel-cors": "^2.0", "guzzlehttp/guzzle": "^7.0.1", - "laravel/framework": "^8.62", + "laravel/framework": "^8.54", "laravel/sanctum": "^2.11", "laravel/tinker": "^2.5" }, diff --git a/tests/Feature/ExampleTest.php b/tests/Feature/ExampleTest.php index 0894c608d..4ae02bc51 100644 --- a/tests/Feature/ExampleTest.php +++ b/tests/Feature/ExampleTest.php @@ -2,6 +2,7 @@ namespace Tests\Feature; +use Illuminate\Foundation\Testing\RefreshDatabase; use Tests\TestCase; class ExampleTest extends TestCase diff --git a/tests/TestCase.php b/tests/TestCase.php index d665b2a87..2932d4a69 100644 --- a/tests/TestCase.php +++ b/tests/TestCase.php @@ -2,10 +2,9 @@ namespace Tests; -use Illuminate\Foundation\Testing\LazilyRefreshDatabase; use Illuminate\Foundation\Testing\TestCase as BaseTestCase; abstract class TestCase extends BaseTestCase { - use CreatesApplication, LazilyRefreshDatabase; + use CreatesApplication; } From a3b76dbeb71518f3b82d50983d039a20bf49ce8e Mon Sep 17 00:00:00 2001 From: Dries Vints Date: Tue, 5 Oct 2021 20:40:50 +0200 Subject: [PATCH 2/2] Update CHANGELOG.md --- CHANGELOG.md | 13 ++++++++++++- 1 file changed, 12 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 41ebfdb2a..df7923e81 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,17 @@ # Release Notes -## [Unreleased](https://github.com/laravel/laravel/compare/v8.6.2...8.x) +## [Unreleased](https://github.com/laravel/laravel/compare/v8.6.3...8.x) + + +## [v8.6.3 (2021-10-05)](https://github.com/laravel/laravel/compare/v8.6.2...v8.6.3) + +### Changed +- Add failover in supported mail configurations comment section ([#5692](https://github.com/laravel/laravel/pull/5692)) +- Keeping access tokens migration id consistent ([#5691](https://github.com/laravel/laravel/pull/5691)) +- Ensures downloaded version of Collision supports PHP 8.1 ([#5697](https://github.com/laravel/laravel/pull/5697)) + +### Fixed +- Update lte and gte validation messages to have a grammatically parallel structure ([#5699](https://github.com/laravel/laravel/pull/5699)) ## [v8.6.2 (2021-09-07)](https://github.com/laravel/laravel/compare/v8.6.1...v8.6.2)