File tree Expand file tree Collapse file tree 4 files changed +24
-5
lines changed Expand file tree Collapse file tree 4 files changed +24
-5
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.0...master )
3
+ ## [ Unreleased] ( https://github.com/laravel/laravel/compare/v8.6.1...master )
4
+
5
+
6
+ ## [ v8.6.1 (2021-08-24)] ( https://github.com/laravel/laravel/compare/v8.6.0...v8.6.1 )
7
+
8
+ ### Changed
9
+ - Add failover driver to default mail config file ([ #5672 ] ( https://github.com/laravel/laravel/pull/5672 ) )
4
10
5
11
6
12
## [ v8.6.0 (2021-08-17)] ( https://github.com/laravel/laravel/compare/v8.5.24...v8.6.0 )
Original file line number Diff line number Diff line change @@ -19,5 +19,10 @@ class TrustProxies extends Middleware
19
19
*
20
20
* @var int
21
21
*/
22
- protected $ headers = Request::HEADER_X_FORWARDED_FOR | Request::HEADER_X_FORWARDED_HOST | Request::HEADER_X_FORWARDED_PORT | Request::HEADER_X_FORWARDED_PROTO | Request::HEADER_X_FORWARDED_AWS_ELB ;
22
+ protected $ headers =
23
+ Request::HEADER_X_FORWARDED_FOR |
24
+ Request::HEADER_X_FORWARDED_HOST |
25
+ Request::HEADER_X_FORWARDED_PORT |
26
+ Request::HEADER_X_FORWARDED_PROTO |
27
+ Request::HEADER_X_FORWARDED_AWS_ELB ;
23
28
}
Original file line number Diff line number Diff line change @@ -15,7 +15,7 @@ class User extends Authenticatable
15
15
/**
16
16
* The attributes that are mass assignable.
17
17
*
18
- * @var array
18
+ * @var string[]
19
19
*/
20
20
protected $ fillable = [
21
21
'name ' ,
@@ -24,7 +24,7 @@ class User extends Authenticatable
24
24
];
25
25
26
26
/**
27
- * The attributes that should be hidden for arrays .
27
+ * The attributes that should be hidden for serialization .
28
28
*
29
29
* @var array
30
30
*/
@@ -34,7 +34,7 @@ class User extends Authenticatable
34
34
];
35
35
36
36
/**
37
- * The attributes that should be cast to native types .
37
+ * The attributes that should be cast.
38
38
*
39
39
* @var array
40
40
*/
Original file line number Diff line number Diff line change 70
70
'array ' => [
71
71
'transport ' => 'array ' ,
72
72
],
73
+
74
+ 'failover ' => [
75
+ 'transport ' => 'failover ' ,
76
+ 'mailers ' => [
77
+ 'smtp ' ,
78
+ 'log ' ,
79
+ ],
80
+ ],
73
81
],
74
82
75
83
/*
You can’t perform that action at this time.
0 commit comments