Skip to content

Commit e124d6d

Browse files
committed
Merge branch '8.x'
# Conflicts: # CHANGELOG.md # composer.json
2 parents 7156a27 + a3b76db commit e124d6d

File tree

3 files changed

+14
-3
lines changed

3 files changed

+14
-3
lines changed

CHANGELOG.md

Lines changed: 12 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,17 @@
11
# Release Notes
22

3-
## [Unreleased](https://github.com/laravel/laravel/compare/v8.6.2...master)
3+
## [Unreleased](https://github.com/laravel/laravel/compare/v8.6.3...master)
4+
5+
6+
## [v8.6.3 (2021-10-05)](https://github.com/laravel/laravel/compare/v8.6.2...v8.6.3)
7+
8+
### Changed
9+
- Add failover in supported mail configurations comment section ([#5692](https://github.com/laravel/laravel/pull/5692))
10+
- Keeping access tokens migration id consistent ([#5691](https://github.com/laravel/laravel/pull/5691))
11+
- Ensures downloaded version of Collision supports PHP 8.1 ([#5697](https://github.com/laravel/laravel/pull/5697))
12+
13+
### Fixed
14+
- Update lte and gte validation messages to have a grammatically parallel structure ([#5699](https://github.com/laravel/laravel/pull/5699))
415

516

617
## [v8.6.2 (2021-09-07)](https://github.com/laravel/laravel/compare/v8.6.1...v8.6.2)

tests/Feature/ExampleTest.php

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@
22

33
namespace Tests\Feature;
44

5+
use Illuminate\Foundation\Testing\RefreshDatabase;
56
use Tests\TestCase;
67

78
class ExampleTest extends TestCase

tests/TestCase.php

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,10 +2,9 @@
22

33
namespace Tests;
44

5-
use Illuminate\Foundation\Testing\LazilyRefreshDatabase;
65
use Illuminate\Foundation\Testing\TestCase as BaseTestCase;
76

87
abstract class TestCase extends BaseTestCase
98
{
10-
use CreatesApplication, LazilyRefreshDatabase;
9+
use CreatesApplication;
1110
}

0 commit comments

Comments
 (0)