From c1587b52c98727f007340417458c5da42d5fbbdc Mon Sep 17 00:00:00 2001 From: netpok Date: Sun, 13 Jun 2021 17:46:57 +0200 Subject: [PATCH 1/2] Add translation for current_password rule (#5628) --- 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 49e3388b..7a15f437 100644 --- a/resources/lang/en/validation.php +++ b/resources/lang/en/validation.php @@ -31,6 +31,7 @@ ], 'boolean' => 'The :attribute field must be true or false.', 'confirmed' => 'The :attribute confirmation does not match.', + 'current_password' => 'The password is incorrect.', 'date' => 'The :attribute is not a valid date.', 'date_equals' => 'The :attribute must be a date equal to :date.', 'date_format' => 'The :attribute does not match the format :format.', From 99d5ca2845a7f1d24a28a6c1e756f1ede8641f96 Mon Sep 17 00:00:00 2001 From: Dries Vints Date: Tue, 15 Jun 2021 17:48:56 +0200 Subject: [PATCH 2/2] Update CHANGELOG.md --- CHANGELOG.md | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index d83acbe0..c3efa307 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,12 @@ # Release Notes -## [Unreleased](https://github.com/laravel/laravel/compare/v8.5.19...8.x) +## [Unreleased](https://github.com/laravel/laravel/compare/v8.5.20...8.x) + + +## [v8.5.20 (2021-06-15)](https://github.com/laravel/laravel/compare/v8.5.19...v8.5.20) + +### Changed +- Add translation for current_password rule ([#5628](https://github.com/laravel/laravel/pull/5628)) ## [v8.5.19 (2021-06-01)](https://github.com/laravel/laravel/compare/v8.5.18...v8.5.19)