Skip to content

Commit 2074717

Browse files
committed
Merge branch '8.x' of https://github.com/laravel/laravel into main-8.x
2 parents 55813ff + 56a73db commit 2074717

File tree

4 files changed

+18
-4
lines changed

4 files changed

+18
-4
lines changed

CHANGELOG.md

Lines changed: 13 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,18 @@
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)

composer.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
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
},

public/index.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,8 +16,8 @@
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
/*

resources/lang/en/validation.php

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -45,6 +45,7 @@
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.',
@@ -67,6 +68,7 @@
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.',

0 commit comments

Comments
 (0)