From 6b7fc50985142f794b1513edf2e224365c543d1e Mon Sep 17 00:00:00 2001 From: driesvints Date: Tue, 17 Jan 2023 16:28:00 +0000 Subject: [PATCH 1/2] Update CHANGELOG --- CHANGELOG.md | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 788f901a..d7f8ef2d 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,12 @@ # Release Notes -## [Unreleased](https://github.com/laravel/laravel/compare/v9.5.0...9.x) +## [Unreleased](https://github.com/laravel/laravel/compare/v9.5.1...9.x) + +## [v9.5.1](https://github.com/laravel/laravel/compare/v9.5.0...v9.5.1) - 2023-01-11 + +### Changed + +- Use minimum stability "stable" by @taylorotwell in https://github.com/laravel/laravel/commit/c1092ec084bb294a61b0f1c2149fddd662f1fc55 ## [v9.5.0](https://github.com/laravel/laravel/compare/v9.4.1...v9.5.0) - 2023-01-02 From 9c26e612121be5cbc63efd9ec725d30d79233119 Mon Sep 17 00:00:00 2001 From: Tim MacDonald Date: Fri, 20 Jan 2023 13:31:28 +1100 Subject: [PATCH 2/2] Adds "missing" validation rule translations (#6078) --- lang/en/validation.php | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/lang/en/validation.php b/lang/en/validation.php index af94bd42..70407c9d 100644 --- a/lang/en/validation.php +++ b/lang/en/validation.php @@ -103,6 +103,11 @@ return [ 'string' => 'The :attribute must be at least :min characters.', ], 'min_digits' => 'The :attribute must have at least :min digits.', + 'missing' => 'The :attribute field must be missing.', + 'missing_if' => 'The :attribute field must be missing when :other is :value.', + 'missing_unless' => 'The :attribute field must be missing unless :other is :value.', + 'missing_with' => 'The :attribute field must be missing when :values is present.', + 'missing_with_all' => 'The :attribute field must be missing when :values are present.', 'multiple_of' => 'The :attribute must be a multiple of :value.', 'not_in' => 'The selected :attribute is invalid.', 'not_regex' => 'The :attribute format is invalid.',