From 90acdfe92be3c471f3fa2b599f8cabda43dbf245 Mon Sep 17 00:00:00 2001 From: driesvints Date: Tue, 9 May 2023 14:24:52 +0000 Subject: [PATCH 01/15] Update CHANGELOG --- CHANGELOG.md | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 00cda728b7e..583e36b7614 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,12 @@ # Release Notes -## [Unreleased](https://github.com/laravel/laravel/compare/v10.1.1...10.x) +## [Unreleased](https://github.com/laravel/laravel/compare/v10.2.0...10.x) + +## [v10.2.0](https://github.com/laravel/laravel/compare/v10.1.1...v10.2.0) - 2023-05-05 + +- Update welcome.blade.php by @aymanatmeh in https://github.com/laravel/laravel/pull/6163 +- Sets package.json type to module by @timacdonald in https://github.com/laravel/laravel/pull/6090 +- Add url support for mail config by @chu121su12 in https://github.com/laravel/laravel/pull/6170 ## [v10.1.1](https://github.com/laravel/laravel/compare/v10.0.7...v10.1.1) - 2023-04-18 From 7e0a2db2e072436dd00a4fa129aebffb3c08d877 Mon Sep 17 00:00:00 2001 From: Eliezer Margareten <46111162+emargareten@users.noreply.github.com> Date: Wed, 10 May 2023 21:51:00 +0300 Subject: [PATCH 02/15] Add hashed cast to user password (#6171) * Add `hashed` cast to user password * Update composer.json --- app/Models/User.php | 1 + composer.json | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/app/Models/User.php b/app/Models/User.php index 23b406346fd..4d7f70f568f 100644 --- a/app/Models/User.php +++ b/app/Models/User.php @@ -40,5 +40,6 @@ class User extends Authenticatable */ protected $casts = [ 'email_verified_at' => 'datetime', + 'password' => 'hashed', ]; } diff --git a/composer.json b/composer.json index 4ac9c6aba2c..0b45dd18835 100644 --- a/composer.json +++ b/composer.json @@ -7,7 +7,7 @@ "require": { "php": "^8.1", "guzzlehttp/guzzle": "^7.2", - "laravel/framework": "^10.8", + "laravel/framework": "^10.10", "laravel/sanctum": "^3.2", "laravel/tinker": "^2.8" }, From 953eae29387eb962b5e308a29f9a6d95de837ab0 Mon Sep 17 00:00:00 2001 From: Jesse Leite Date: Fri, 12 May 2023 14:39:56 -0400 Subject: [PATCH 03/15] Bring back cluster config option, as required by pusher-js v8.0. (#6174) --- config/broadcasting.php | 1 + 1 file changed, 1 insertion(+) diff --git a/config/broadcasting.php b/config/broadcasting.php index 9e4d4aa44b5..2410485384e 100644 --- a/config/broadcasting.php +++ b/config/broadcasting.php @@ -36,6 +36,7 @@ 'secret' => env('PUSHER_APP_SECRET'), 'app_id' => env('PUSHER_APP_ID'), 'options' => [ + 'cluster' => env('PUSHER_APP_CLUSTER'), 'host' => env('PUSHER_HOST') ?: 'api-'.env('PUSHER_APP_CLUSTER', 'mt1').'.pusher.com', 'port' => env('PUSHER_PORT', 443), 'scheme' => env('PUSHER_SCHEME', 'https'), From fb8e9cee79bc3cebff9ee20068d95eefbb281aa7 Mon Sep 17 00:00:00 2001 From: driesvints Date: Tue, 16 May 2023 15:38:55 +0000 Subject: [PATCH 04/15] Update CHANGELOG --- CHANGELOG.md | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 583e36b7614..45eb31e03a3 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,11 @@ # Release Notes -## [Unreleased](https://github.com/laravel/laravel/compare/v10.2.0...10.x) +## [Unreleased](https://github.com/laravel/laravel/compare/v10.2.1...10.x) + +## [v10.2.1](https://github.com/laravel/laravel/compare/v10.2.0...v10.2.1) - 2023-05-12 + +- Add hashed cast to user password by @emargareten in https://github.com/laravel/laravel/pull/6171 +- Bring back pusher cluster config option by @jesseleite in https://github.com/laravel/laravel/pull/6174 ## [v10.2.0](https://github.com/laravel/laravel/compare/v10.1.1...v10.2.0) - 2023-05-05 From a6bfbc7f90e33fd6cae3cb23f106c9689858c3b5 Mon Sep 17 00:00:00 2001 From: Taylor Otwell Date: Tue, 23 May 2023 16:45:40 -0500 Subject: [PATCH 05/15] add lock path --- config/cache.php | 1 + 1 file changed, 1 insertion(+) diff --git a/config/cache.php b/config/cache.php index 33bb29546eb..d4171e2212c 100644 --- a/config/cache.php +++ b/config/cache.php @@ -52,6 +52,7 @@ 'file' => [ 'driver' => 'file', 'path' => storage_path('framework/cache/data'), + 'lock_path' => storage_path('framework/cache/data'), ], 'memcached' => [ From 812bfb6911c225df3921c7874e6b373eb4c8ddae Mon Sep 17 00:00:00 2001 From: driesvints Date: Wed, 24 May 2023 13:24:31 +0000 Subject: [PATCH 06/15] Update CHANGELOG --- CHANGELOG.md | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 45eb31e03a3..ede5c685adb 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,10 @@ # Release Notes -## [Unreleased](https://github.com/laravel/laravel/compare/v10.2.1...10.x) +## [Unreleased](https://github.com/laravel/laravel/compare/v10.2.2...10.x) + +## [v10.2.2](https://github.com/laravel/laravel/compare/v10.2.1...v10.2.2) - 2023-05-23 + +- Add lock path by @taylorotwell in https://github.com/laravel/laravel/commit/a6bfbc7f90e33fd6cae3cb23f106c9689858c3b5 ## [v10.2.1](https://github.com/laravel/laravel/compare/v10.2.0...v10.2.1) - 2023-05-12 From 85203d687ebba72b2805b89bba7d18dfae8f95c8 Mon Sep 17 00:00:00 2001 From: Taylor Otwell Date: Thu, 1 Jun 2023 11:12:25 -0500 Subject: [PATCH 07/15] update description --- composer.json | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/composer.json b/composer.json index 0b45dd18835..e1fb4493dcb 100644 --- a/composer.json +++ b/composer.json @@ -1,8 +1,8 @@ { "name": "laravel/laravel", "type": "project", - "description": "The Laravel Framework.", - "keywords": ["framework", "laravel"], + "description": "The skeleton application for the Laravel framework.", + "keywords": ["laravel", "framework"], "license": "MIT", "require": { "php": "^8.1", From a410a5af42385470fe9c5eec098acee4fb4de7fa Mon Sep 17 00:00:00 2001 From: driesvints Date: Tue, 6 Jun 2023 14:54:05 +0000 Subject: [PATCH 08/15] Update CHANGELOG --- CHANGELOG.md | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index ede5c685adb..7c5dc6b64e0 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,10 @@ # Release Notes -## [Unreleased](https://github.com/laravel/laravel/compare/v10.2.2...10.x) +## [Unreleased](https://github.com/laravel/laravel/compare/v10.2.3...10.x) + +## [v10.2.3](https://github.com/laravel/laravel/compare/v10.2.2...v10.2.3) - 2023-06-01 + +- Update description by @taylorotwell in https://github.com/laravel/laravel/commit/85203d687ebba72b2805b89bba7d18dfae8f95c8 ## [v10.2.2](https://github.com/laravel/laravel/compare/v10.2.1...v10.2.2) - 2023-05-23 From 84991f23011dfde4bc3ae3db04343c3afb3bc122 Mon Sep 17 00:00:00 2001 From: Eliezer Margareten <46111162+emargareten@users.noreply.github.com> Date: Wed, 7 Jun 2023 16:20:56 +0300 Subject: [PATCH 09/15] Update Kernel.php (#6193) --- app/Http/Kernel.php | 1 + 1 file changed, 1 insertion(+) diff --git a/app/Http/Kernel.php b/app/Http/Kernel.php index 1fb53dceb9f..494c0501b13 100644 --- a/app/Http/Kernel.php +++ b/app/Http/Kernel.php @@ -60,6 +60,7 @@ class Kernel extends HttpKernel 'can' => \Illuminate\Auth\Middleware\Authorize::class, 'guest' => \App\Http\Middleware\RedirectIfAuthenticated::class, 'password.confirm' => \Illuminate\Auth\Middleware\RequirePassword::class, + 'precognitive' => \Illuminate\Foundation\Http\Middleware\HandlePrecognitiveRequests::class, 'signed' => \App\Http\Middleware\ValidateSignature::class, 'throttle' => \Illuminate\Routing\Middleware\ThrottleRequests::class, 'verified' => \Illuminate\Auth\Middleware\EnsureEmailIsVerified::class, From f31772234895a7e317be2a87edc9a453aff474d1 Mon Sep 17 00:00:00 2001 From: driesvints Date: Tue, 20 Jun 2023 15:53:51 +0000 Subject: [PATCH 10/15] Update CHANGELOG --- CHANGELOG.md | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 7c5dc6b64e0..918817ca25f 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,10 @@ # Release Notes -## [Unreleased](https://github.com/laravel/laravel/compare/v10.2.3...10.x) +## [Unreleased](https://github.com/laravel/laravel/compare/v10.2.4...10.x) + +## [v10.2.4](https://github.com/laravel/laravel/compare/v10.2.3...v10.2.4) - 2023-06-07 + +- Add `precognitive` key to $middlewareAliases by @emargareten in https://github.com/laravel/laravel/pull/6193 ## [v10.2.3](https://github.com/laravel/laravel/compare/v10.2.2...v10.2.3) - 2023-06-01 From 3ac233abb21e29c94727c56c027067f3da9cbe32 Mon Sep 17 00:00:00 2001 From: Domantas Petrauskas Date: Thu, 22 Jun 2023 02:07:13 +0300 Subject: [PATCH 11/15] Allow accessing APP_NAME in Vite (#6204) --- .env.example | 1 + 1 file changed, 1 insertion(+) diff --git a/.env.example b/.env.example index 478972c26c6..ea0665b0a60 100644 --- a/.env.example +++ b/.env.example @@ -51,6 +51,7 @@ PUSHER_PORT=443 PUSHER_SCHEME=https PUSHER_APP_CLUSTER=mt1 +VITE_APP_NAME="${APP_NAME}" VITE_PUSHER_APP_KEY="${PUSHER_APP_KEY}" VITE_PUSHER_HOST="${PUSHER_HOST}" VITE_PUSHER_PORT="${PUSHER_PORT}" From 6c1a39b5b38eebbb43f7a2ae28c73c155f506d21 Mon Sep 17 00:00:00 2001 From: Benedikt Franke Date: Fri, 30 Jun 2023 17:16:51 +0200 Subject: [PATCH 12/15] Omit default values for suffix in phpunit.xml (#6210) The values specified for `suffix` are their respective defaults and can be omitted. --- phpunit.xml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/phpunit.xml b/phpunit.xml index e9f533dab9f..048f8a748c1 100644 --- a/phpunit.xml +++ b/phpunit.xml @@ -6,15 +6,15 @@ > - ./tests/Unit + ./tests/Unit - ./tests/Feature + ./tests/Feature - ./app + ./app From f419821bd8cbc736ac6f9b2fce75a4e373a4b49f Mon Sep 17 00:00:00 2001 From: Taylor Otwell Date: Fri, 30 Jun 2023 10:18:14 -0500 Subject: [PATCH 13/15] shorten directories --- phpunit.xml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/phpunit.xml b/phpunit.xml index 048f8a748c1..f112c0c8286 100644 --- a/phpunit.xml +++ b/phpunit.xml @@ -1,20 +1,20 @@ - ./tests/Unit + tests/Unit - ./tests/Feature + tests/Feature - ./app + app From 04a8e8553e6bf0ed54f5136949d7152df025dd91 Mon Sep 17 00:00:00 2001 From: driesvints Date: Tue, 11 Jul 2023 14:38:41 +0000 Subject: [PATCH 14/15] Update CHANGELOG --- CHANGELOG.md | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 918817ca25f..d9eba7c42d0 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,11 @@ # Release Notes -## [Unreleased](https://github.com/laravel/laravel/compare/v10.2.4...10.x) +## [Unreleased](https://github.com/laravel/laravel/compare/v10.2.5...10.x) + +## [v10.2.5](https://github.com/laravel/laravel/compare/v10.2.4...v10.2.5) - 2023-06-30 + +- Allow accessing APP_NAME in Vite scope by [@domnantas](https://github.com/domnantas) in https://github.com/laravel/laravel/pull/6204 +- Omit default values for suffix in phpunit.xml by [@spawnia](https://github.com/spawnia) in https://github.com/laravel/laravel/pull/6210 ## [v10.2.4](https://github.com/laravel/laravel/compare/v10.2.3...v10.2.4) - 2023-06-07 From 36047268f130477fa17270e26b1bb5991d781265 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Andr=C3=A9as=20Lundgren?= <1066486+adevade@users.noreply.github.com> Date: Thu, 10 Aug 2023 09:19:31 +0200 Subject: [PATCH 15/15] Bump `laravel-vite-plugin` to latest version (#6224) --- package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package.json b/package.json index e543e0d18ad..0e6480f26a3 100644 --- a/package.json +++ b/package.json @@ -7,7 +7,7 @@ }, "devDependencies": { "axios": "^1.1.2", - "laravel-vite-plugin": "^0.7.5", + "laravel-vite-plugin": "^0.8.0", "vite": "^4.0.0" } }