File tree 3 files changed +14
-3
lines changed
3 files changed +14
-3
lines changed Original file line number Diff line number Diff line change 1
1
# Release Notes
2
2
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 ) )
4
15
5
16
6
17
## [ v8.6.2 (2021-09-07)] ( https://github.com/laravel/laravel/compare/v8.6.1...v8.6.2 )
Original file line number Diff line number Diff line change 2
2
3
3
namespace Tests \Feature ;
4
4
5
+ use Illuminate \Foundation \Testing \RefreshDatabase ;
5
6
use Tests \TestCase ;
6
7
7
8
class ExampleTest extends TestCase
Original file line number Diff line number Diff line change 2
2
3
3
namespace Tests ;
4
4
5
- use Illuminate \Foundation \Testing \LazilyRefreshDatabase ;
6
5
use Illuminate \Foundation \Testing \TestCase as BaseTestCase ;
7
6
8
7
abstract class TestCase extends BaseTestCase
9
8
{
10
- use CreatesApplication, LazilyRefreshDatabase ;
9
+ use CreatesApplication;
11
10
}
You can’t perform that action at this time.
0 commit comments