From f08e4f8bc529ba913b6cdb6a8e3bc7657189d7dc Mon Sep 17 00:00:00 2001 From: Tim Joosten Date: Mon, 6 Jan 2025 15:52:53 +0100 Subject: [PATCH 01/10] Update .gitignore to not ignore auth.json lan file. (#6515) --- .gitignore | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.gitignore b/.gitignore index bec2973a..c7cf1fa6 100644 --- a/.gitignore +++ b/.gitignore @@ -13,9 +13,9 @@ .phpunit.result.cache Homestead.json Homestead.yaml -auth.json npm-debug.log yarn-error.log +/auth.json /.fleet /.idea /.nova From 658a49a19e98a6059a543be7564d39dc2e6970e0 Mon Sep 17 00:00:00 2001 From: Mathias Grimm Date: Tue, 7 Jan 2025 21:04:38 -0300 Subject: [PATCH 02/10] Adding PHP 8.4 to the tests matrix (#6516) --- .github/workflows/tests.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index 03601bdb..769390bf 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -19,7 +19,7 @@ jobs: strategy: fail-fast: true matrix: - php: [8.2, 8.3] + php: [8.2, 8.3, 8.4] name: PHP ${{ matrix.php }} From cb7ab6170b7b71174743f5556a599c97cee067ad Mon Sep 17 00:00:00 2001 From: Trevor Varwig Date: Thu, 9 Jan 2025 14:14:56 -0600 Subject: [PATCH 03/10] fix css whitespace invalid-calc (#6517) --- 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 979e82a6..f2ad832f 100644 --- a/resources/views/welcome.blade.php +++ b/resources/views/welcome.blade.php @@ -83,7 +83,7 @@ class="hidden aspect-video h-full w-full flex-1 rounded-[10px] object-top object-cover drop-shadow-[0px_4px_34px_rgba(0,0,0,0.25)] dark:block" />
From f9bedb320cac1c77d78052c1355ea37709cd464b Mon Sep 17 00:00:00 2001 From: Julius Kiekbusch Date: Fri, 10 Jan 2025 21:53:27 +0100 Subject: [PATCH 04/10] Fix tailwindclass (#6518) --- resources/views/welcome.blade.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/resources/views/welcome.blade.php b/resources/views/welcome.blade.php index f2ad832f..b9d609c6 100644 --- a/resources/views/welcome.blade.php +++ b/resources/views/welcome.blade.php @@ -15,7 +15,7 @@ @vite(['resources/css/app.css', 'resources/js/app.js']) @else @endif @@ -83,7 +83,7 @@ class="hidden aspect-video h-full w-full flex-1 rounded-[10px] object-top object-cover drop-shadow-[0px_4px_34px_rgba(0,0,0,0.25)] dark:block" />
From d4e9385fbbe4f25411554708d678ebe4b7747351 Mon Sep 17 00:00:00 2001 From: taylorotwell <463230+taylorotwell@users.noreply.github.com> Date: Tue, 14 Jan 2025 15:59:58 +0000 Subject: [PATCH 05/10] Update CHANGELOG --- CHANGELOG.md | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 88e0c187..3b772b2c 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,13 @@ # Release Notes -## [Unreleased](https://github.com/laravel/laravel/compare/v11.5.0...11.x) +## [Unreleased](https://github.com/laravel/laravel/compare/v11.5.1...11.x) + +## [v11.5.1](https://github.com/laravel/laravel/compare/v11.5.0...v11.5.1) - 2025-01-10 + +* Update .gitignore to not ignore auth.json in the lang directory. by [@Tjoosten](https://github.com/Tjoosten) in https://github.com/laravel/laravel/pull/6515 +* Adding PHP 8.4 to the tests matrix by [@mathiasgrimm](https://github.com/mathiasgrimm) in https://github.com/laravel/laravel/pull/6516 +* fix css whitespace invalid-calc by [@tvarwig](https://github.com/tvarwig) in https://github.com/laravel/laravel/pull/6517 +* [11.x] Fix invalid tailwindcss class by [@Jubeki](https://github.com/Jubeki) in https://github.com/laravel/laravel/pull/6518 ## [v11.5.0](https://github.com/laravel/laravel/compare/v11.4.0...v11.5.0) - 2024-12-13 From f15301d18db084e131a0ce8d3e434ae521f00ee3 Mon Sep 17 00:00:00 2001 From: TheCodeholic Date: Wed, 15 Jan 2025 00:03:16 +0400 Subject: [PATCH 06/10] Preserve X-Xsrf-Token header from .htaccess (#6520) * Preserve X-Xsrf-Token header from .htaccess Preserve X-Xsrf-Token header for session based authentication when building API in Laravel * Update .htaccess * Update .htaccess --------- Co-authored-by: Taylor Otwell --- public/.htaccess | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/public/.htaccess b/public/.htaccess index 3aec5e27..b574a597 100644 --- a/public/.htaccess +++ b/public/.htaccess @@ -9,6 +9,10 @@ RewriteCond %{HTTP:Authorization} . RewriteRule .* - [E=HTTP_AUTHORIZATION:%{HTTP:Authorization}] + # Handle X-XSRF-Token Header + RewriteCond %{HTTP:x-xsrf-token} . + RewriteRule .* - [E=HTTP_X_XSRF_TOKEN:%{HTTP:X-XSRF-Token}] + # Redirect Trailing Slashes If Not A Folder... RewriteCond %{REQUEST_FILENAME} !-d RewriteCond %{REQUEST_URI} (.+)/$ From 91b409649007e77bb6f42f0db31641e2a2f9fd13 Mon Sep 17 00:00:00 2001 From: Taylor Otwell Date: Tue, 21 Jan 2025 09:03:57 -0600 Subject: [PATCH 07/10] update filesystem config --- config/filesystems.php | 3 +++ 1 file changed, 3 insertions(+) diff --git a/config/filesystems.php b/config/filesystems.php index b564035a..3d671bd9 100644 --- a/config/filesystems.php +++ b/config/filesystems.php @@ -35,6 +35,7 @@ return [ 'root' => storage_path('app/private'), 'serve' => true, 'throw' => false, + 'report' => false, ], 'public' => [ @@ -43,6 +44,7 @@ return [ 'url' => env('APP_URL').'/storage', 'visibility' => 'public', 'throw' => false, + 'report' => false, ], 's3' => [ @@ -55,6 +57,7 @@ return [ 'endpoint' => env('AWS_ENDPOINT'), 'use_path_style_endpoint' => env('AWS_USE_PATH_STYLE_ENDPOINT', false), 'throw' => false, + 'report' => false, ], ], From 3dd0323ef5069196a1743d943b66f1ae6ea4195d Mon Sep 17 00:00:00 2001 From: taylorotwell <463230+taylorotwell@users.noreply.github.com> Date: Tue, 21 Jan 2025 15:08:46 +0000 Subject: [PATCH 08/10] Update CHANGELOG --- CHANGELOG.md | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 3b772b2c..040d4bd1 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,10 @@ # Release Notes -## [Unreleased](https://github.com/laravel/laravel/compare/v11.5.1...11.x) +## [Unreleased](https://github.com/laravel/laravel/compare/v11.6.0...11.x) + +## [v11.6.0](https://github.com/laravel/laravel/compare/v11.5.1...v11.6.0) - 2025-01-21 + +* Preserve X-Xsrf-Token header from .htaccess by [@thecodeholic](https://github.com/thecodeholic) in https://github.com/laravel/laravel/pull/6520 ## [v11.5.1](https://github.com/laravel/laravel/compare/v11.5.0...v11.5.1) - 2025-01-10 From c452e15d846c6d20d4e8b108b66797744bf38b62 Mon Sep 17 00:00:00 2001 From: laserhybiz <100562257+laserhybiz@users.noreply.github.com> Date: Wed, 22 Jan 2025 18:46:57 +0200 Subject: [PATCH 09/10] Update vite dependencies (#6521) --- package.json | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/package.json b/package.json index 0d104724..e32a8628 100644 --- a/package.json +++ b/package.json @@ -9,9 +9,9 @@ "autoprefixer": "^10.4.20", "axios": "^1.7.4", "concurrently": "^9.0.1", - "laravel-vite-plugin": "^1.0", + "laravel-vite-plugin": "^1.2.0", "postcss": "^8.4.47", "tailwindcss": "^3.4.13", - "vite": "^6.0" + "vite": "^6.0.11" } } From 4760fcd6c5a48c7012b7609048be5c5f9e52ae33 Mon Sep 17 00:00:00 2001 From: Mior Muhammad Zaki Date: Thu, 23 Jan 2025 22:05:06 +0800 Subject: [PATCH 10/10] Sync `session.lifetime` configuration (#6522) See https://github.com/laravel/framework/blob/066b740f14461bb1a793ebb9742321ee00974060/config/session.php#L35 Signed-off-by: Mior Muhammad Zaki --- config/session.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/config/session.php b/config/session.php index f0b6541e..ba0aa60b 100644 --- a/config/session.php +++ b/config/session.php @@ -32,7 +32,7 @@ return [ | */ - 'lifetime' => env('SESSION_LIFETIME', 120), + 'lifetime' => (int) env('SESSION_LIFETIME', 120), 'expire_on_close' => env('SESSION_EXPIRE_ON_CLOSE', false),