From 16f531e6460e1276bb02faaf2788b9c754af284d Mon Sep 17 00:00:00 2001 From: Martin Eiber Date: Fri, 26 Feb 2021 14:19:45 +0100 Subject: [PATCH 1/3] [8.x] Added sans-serif as Fallback Font (#5543) * Added sans-serif as Fallback Font Added sans-serif as Fallback Font to the Welcome Page * Update welcome.blade.php Co-authored-by: Taylor Otwell --- resources/views/welcome.blade.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/resources/views/welcome.blade.php b/resources/views/welcome.blade.php index 917fddfa..f8ba9e21 100644 --- a/resources/views/welcome.blade.php +++ b/resources/views/welcome.blade.php @@ -16,7 +16,7 @@ From 03be0afb442b96ebfb0091cc9c3a44a7ad907f4b Mon Sep 17 00:00:00 2001 From: Rodrigo Pedra Brum Date: Mon, 1 Mar 2021 10:38:37 -0300 Subject: [PATCH 2/3] Don't trim `current_password` (#5546) Inspired by https://github.com/laravel/framework/pull/36415 As JetStream/Fortify uses a `current_password` field when allowing a user to change their password, and as JetStream is one of the starter kits listed on the docs, this PR adds `current_password` in the `$except` option of the `TrimStrings` middleware. --- app/Http/Middleware/TrimStrings.php | 1 + 1 file changed, 1 insertion(+) diff --git a/app/Http/Middleware/TrimStrings.php b/app/Http/Middleware/TrimStrings.php index 5a50e7b5..a8a252df 100644 --- a/app/Http/Middleware/TrimStrings.php +++ b/app/Http/Middleware/TrimStrings.php @@ -12,6 +12,7 @@ class TrimStrings extends Middleware * @var array */ protected $except = [ + 'current_password', 'password', 'password_confirmation', ]; From 20455c6f5fdee67e445208b0fcc4a1a92d80ce24 Mon Sep 17 00:00:00 2001 From: Dries Vints Date: Tue, 2 Mar 2021 17:36:09 +0100 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 5c037b49..15074d56 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,13 @@ # Release Notes -## [Unreleased](https://github.com/laravel/laravel/compare/v8.5.11...8.x) +## [Unreleased](https://github.com/laravel/laravel/compare/v8.5.12...8.x) + + +## [v8.5.12 (2021-03-02)](https://github.com/laravel/laravel/compare/v8.5.11...v8.5.12) + +### Fixed +- Added sans-serif as Fallback Font ([#5543](https://github.com/laravel/laravel/pull/5543)) +- Don't trim `current_password` ([#5546](https://github.com/laravel/laravel/pull/5546)) ## [v8.5.11 (2021-02-23)](https://github.com/laravel/laravel/compare/v8.5.10...v8.5.11)