File tree Expand file tree Collapse file tree 3 files changed +24
-1
lines changed Expand file tree Collapse file tree 3 files changed +24
-1
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.6...master )
3
+ ## [ Unreleased] ( https://github.com/laravel/laravel/compare/v8.6.7...master )
4
+
5
+
6
+ ## [ v8.6.7 (2021-11-16)] ( https://github.com/laravel/laravel/compare/v8.6.6...v8.6.7 )
7
+
8
+ ### Changed
9
+ - Added ` declined ` and ` declined_if ` validation rules ([ #5723 ] ( https://github.com/laravel/laravel/pull/5723 ) )
10
+ - Should be identical with current sanctum config file ([ #5725 ] ( https://github.com/laravel/laravel/pull/5725 ) )
4
11
5
12
6
13
## [ v8.6.6 (2021-11-09)] ( https://github.com/laravel/laravel/compare/v8.6.5...v8.6.6 )
Original file line number Diff line number Diff line change 19
19
env ('APP_URL ' ) ? ', ' .parse_url (env ('APP_URL ' ), PHP_URL_HOST ) : ''
20
20
))),
21
21
22
+ /*
23
+ |--------------------------------------------------------------------------
24
+ | Sanctum Guards
25
+ |--------------------------------------------------------------------------
26
+ |
27
+ | This array contains the authentication guards that will be checked when
28
+ | Sanctum is trying to authenticate a request. If none of these guards
29
+ | are able to authenticate the request, Sanctum will use the bearer
30
+ | token that's present on an incoming request for authentication.
31
+ |
32
+ */
33
+
34
+ 'guard ' => ['web ' ],
35
+
22
36
/*
23
37
|--------------------------------------------------------------------------
24
38
| Expiration Minutes
Original file line number Diff line number Diff line change 36
36
'date ' => 'The :attribute is not a valid date. ' ,
37
37
'date_equals ' => 'The :attribute must be a date equal to :date. ' ,
38
38
'date_format ' => 'The :attribute does not match the format :format. ' ,
39
+ 'declined ' => 'The :attribute must be declined. ' ,
40
+ 'declined_if ' => 'The :attribute must be declined when :other is :value. ' ,
39
41
'different ' => 'The :attribute and :other must be different. ' ,
40
42
'digits ' => 'The :attribute must be :digits digits. ' ,
41
43
'digits_between ' => 'The :attribute must be between :min and :max digits. ' ,
You can’t perform that action at this time.
0 commit comments