From 33ceba78baba318237964646980f275df12e413f Mon Sep 17 00:00:00 2001 From: Nuno Maduro Date: Thu, 18 Nov 2021 16:18:32 +0000 Subject: [PATCH 1/4] Removes the commands property (#5727) --- app/Console/Kernel.php | 9 --------- 1 file changed, 9 deletions(-) diff --git a/app/Console/Kernel.php b/app/Console/Kernel.php index 69914e99378..d8bc1d29f0c 100644 --- a/app/Console/Kernel.php +++ b/app/Console/Kernel.php @@ -7,15 +7,6 @@ class Kernel extends ConsoleKernel { - /** - * The Artisan commands provided by your application. - * - * @var array - */ - protected $commands = [ - // - ]; - /** * Define the application's command schedule. * From 3de91bca75bd8745e2a8f7d0dd4a3548e3fe2098 Mon Sep 17 00:00:00 2001 From: N'Bayramberdiyev Date: Fri, 19 Nov 2021 16:51:42 +0300 Subject: [PATCH 2/4] sort validation rules alphabetically (#5728) --- resources/lang/en/validation.php | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/resources/lang/en/validation.php b/resources/lang/en/validation.php index 51735fee2a1..ba42c8d93b0 100644 --- a/resources/lang/en/validation.php +++ b/resources/lang/en/validation.php @@ -100,6 +100,10 @@ 'numeric' => 'The :attribute must be a number.', 'password' => 'The password is incorrect.', 'present' => 'The :attribute field must be present.', + 'prohibited' => 'The :attribute field is prohibited.', + 'prohibited_if' => 'The :attribute field is prohibited when :other is :value.', + 'prohibited_unless' => 'The :attribute field is prohibited unless :other is in :values.', + 'prohibits' => 'The :attribute field prohibits :other from being present.', 'regex' => 'The :attribute format is invalid.', 'required' => 'The :attribute field is required.', 'required_if' => 'The :attribute field is required when :other is :value.', @@ -108,10 +112,6 @@ 'required_with_all' => 'The :attribute field is required when :values are present.', 'required_without' => 'The :attribute field is required when :values is not present.', 'required_without_all' => 'The :attribute field is required when none of :values are present.', - 'prohibited' => 'The :attribute field is prohibited.', - 'prohibited_if' => 'The :attribute field is prohibited when :other is :value.', - 'prohibited_unless' => 'The :attribute field is prohibited unless :other is in :values.', - 'prohibits' => 'The :attribute field prohibits :other from being present.', 'same' => 'The :attribute and :other must match.', 'size' => [ 'numeric' => 'The :attribute must be :size.', From 0eb4a40eb38a92102be63234b041954914c5bbce Mon Sep 17 00:00:00 2001 From: Dries Vints Date: Tue, 23 Nov 2021 18:30:45 +0100 Subject: [PATCH 3/4] Update CHANGELOG.md --- CHANGELOG.md | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index b4e03953f06..01a0a9c554f 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -3,6 +3,13 @@ ## [Unreleased](https://github.com/laravel/laravel/compare/v8.6.7...8.x) +## [v8.6.8 (2021-11-23)](https://github.com/laravel/laravel/compare/v8.6.7...v8.6.8) + +### Changed +- Order validation rules alphabetically ([#5728](https://github.com/laravel/laravel/pull/5728)) +- Removes the Console\Kernel::$commands property ([#5727](https://github.com/laravel/laravel/pull/5727)) + + ## [v8.6.7 (2021-11-16)](https://github.com/laravel/laravel/compare/v8.6.6...v8.6.7) ### Changed From 901879dd68d276af4d937b3bf0e2a2467d8efa09 Mon Sep 17 00:00:00 2001 From: Dries Vints Date: Tue, 23 Nov 2021 18:31:14 +0100 Subject: [PATCH 4/4] Update CHANGELOG.md --- CHANGELOG.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 01a0a9c554f..2a85b39e150 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,6 @@ # Release Notes -## [Unreleased](https://github.com/laravel/laravel/compare/v8.6.7...8.x) +## [Unreleased](https://github.com/laravel/laravel/compare/v8.6.8...8.x) ## [v8.6.8 (2021-11-23)](https://github.com/laravel/laravel/compare/v8.6.7...v8.6.8)