File tree Expand file tree Collapse file tree 4 files changed +18
-4
lines changed Expand file tree Collapse file tree 4 files changed +18
-4
lines changed Original file line number Diff line number Diff line change 11# Release Notes
22
3- ## [ Unreleased] ( https://github.com/laravel/laravel/compare/v8.6.9...8.x )
3+ ## [ Unreleased] ( https://github.com/laravel/laravel/compare/v8.6.10...8.x )
4+
5+
6+ ## [ v8.6.10 (2021-12-22)] ( https://github.com/laravel/laravel/compare/v8.6.9...v8.6.10 )
7+
8+ ### Changed
9+ - Bump Laravel to v8.75 ([ #5750 ] ( https://github.com/laravel/laravel/pull/5750 ) )
10+ - Simplify the maintenance file call ([ #5752 ] ( https://github.com/laravel/laravel/pull/5752 ) )
11+ - Add enum translation ([ #5753 ] ( https://github.com/laravel/laravel/pull/5753 ) )
12+ - Add mac_address validation message ([ #5754 ] ( https://github.com/laravel/laravel/pull/5754 ) )
13+
14+ ### Removed
15+ - Delete web.config ([ #5744 ] ( https://github.com/laravel/laravel/pull/5744 ) )
416
517
618## [ v8.6.9 (2021-12-07)] ( https://github.com/laravel/laravel/compare/v8.6.8...v8.6.9 )
Original file line number Diff line number Diff line change 88 "php" : " ^7.3|^8.0" ,
99 "fruitcake/laravel-cors" : " ^2.0" ,
1010 "guzzlehttp/guzzle" : " ^7.0.1" ,
11- "laravel/framework" : " ^8.65 " ,
11+ "laravel/framework" : " ^8.75 " ,
1212 "laravel/sanctum" : " ^2.11" ,
1313 "laravel/tinker" : " ^2.5"
1414 },
Original file line number Diff line number Diff line change 1616|
1717*/
1818
19- if (file_exists (__DIR__ .'/../storage/framework/maintenance.php ' )) {
20- require __DIR__ . ' /../storage/framework/ maintenance.php ' ;
19+ if (file_exists ($ maintenance = __DIR__ .'/../storage/framework/maintenance.php ' )) {
20+ require $ maintenance ;
2121}
2222
2323/*
Original file line number Diff line number Diff line change 4545 'distinct ' => 'The :attribute field has a duplicate value. ' ,
4646 'email ' => 'The :attribute must be a valid email address. ' ,
4747 'ends_with ' => 'The :attribute must end with one of the following: :values. ' ,
48+ 'enum ' => 'The selected :attribute is invalid. ' ,
4849 'exists ' => 'The selected :attribute is invalid. ' ,
4950 'file ' => 'The :attribute must be a file. ' ,
5051 'filled ' => 'The :attribute field must have a value. ' ,
6768 'ip ' => 'The :attribute must be a valid IP address. ' ,
6869 'ipv4 ' => 'The :attribute must be a valid IPv4 address. ' ,
6970 'ipv6 ' => 'The :attribute must be a valid IPv6 address. ' ,
71+ 'mac_address ' => 'The :attribute must be a valid MAC address. ' ,
7072 'json ' => 'The :attribute must be a valid JSON string. ' ,
7173 'lt ' => [
7274 'numeric ' => 'The :attribute must be less than :value. ' ,
You can’t perform that action at this time.
0 commit comments