From 6bfe68365d0ab1301dfae87867814048440d6a78 Mon Sep 17 00:00:00 2001 From: Ali Shaikh Date: Fri, 9 Oct 2020 17:40:20 +0500 Subject: [PATCH 1/3] [8.x] Added 'LOG_LEVEL' env variable in .env.example (#5445) * Added 'LOG_LEVEL' env variable in .env.example Added 'LOG_LEVEL' env variable in .env.example to be consistant with the change in [#5442](https://github.com/laravel/laravel/pull/5442) * Update .env.example Co-authored-by: Dries Vints --- .env.example | 1 + 1 file changed, 1 insertion(+) diff --git a/.env.example b/.env.example index ac748637..7dc51e1f 100644 --- a/.env.example +++ b/.env.example @@ -5,6 +5,7 @@ APP_DEBUG=true APP_URL=http://localhost LOG_CHANNEL=stack +LOG_LEVEL=debug DB_CONNECTION=mysql DB_HOST=127.0.0.1 From 8d3ca07c4cff6d36593625ee4b34e19ce2dba15b Mon Sep 17 00:00:00 2001 From: Tim MacDonald Date: Sat, 17 Oct 2020 00:25:48 +1100 Subject: [PATCH 2/3] add 'multiple_of' translation (#5449) --- resources/lang/en/validation.php | 1 + 1 file changed, 1 insertion(+) diff --git a/resources/lang/en/validation.php b/resources/lang/en/validation.php index a65914f9..2e2820b0 100644 --- a/resources/lang/en/validation.php +++ b/resources/lang/en/validation.php @@ -90,6 +90,7 @@ return [ 'string' => 'The :attribute must be at least :min characters.', 'array' => 'The :attribute must have at least :min items.', ], + 'multiple_of' => 'The :attribute must be a multiple of :value', 'not_in' => 'The selected :attribute is invalid.', 'not_regex' => 'The :attribute format is invalid.', 'numeric' => 'The :attribute must be a number.', From d82d7505a17355dfe09c6722cebd6274f11585eb Mon Sep 17 00:00:00 2001 From: Dries Vints Date: Tue, 20 Oct 2020 20:34:02 +0200 Subject: [PATCH 3/3] Update CHANGELOG.md --- CHANGELOG.md | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 658af6c0..5f642bbb 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,13 @@ # Release Notes -## [Unreleased](https://github.com/laravel/laravel/compare/v8.1.0...master) +## [Unreleased](https://github.com/laravel/laravel/compare/v8.2.0...master) + + +## [v8.2.0 (2020-10-20)](https://github.com/laravel/laravel/compare/v8.1.0...v8.2.0) + +### Added +- Added 'LOG_LEVEL' env variable in `.env.example` ([#5445](https://github.com/laravel/laravel/pull/5445)) +- Add 'multiple_of' translation ([#5449](https://github.com/laravel/laravel/pull/5449)) ## [v8.1.0 (2020-10-06)](https://github.com/laravel/laravel/compare/v8.0.3...v8.1.0)