From a6ce688ad1a95e541e094571f363259e206d276b Mon Sep 17 00:00:00 2001 From: driesvints Date: Thu, 14 Mar 2024 13:52:07 +0000 Subject: [PATCH 01/60] Update CHANGELOG --- CHANGELOG.md | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 78e0e75e..df80d88c 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,10 @@ # Release Notes -## [Unreleased](https://github.com/laravel/laravel/compare/v11.0.2...11.x) +## [Unreleased](https://github.com/laravel/laravel/compare/v11.0.3...11.x) + +## [v11.0.3](https://github.com/laravel/laravel/compare/v11.0.2...v11.0.3) - 2024-03-14 + +* [11.x] Revert collation change by [@driesvints](https://github.com/driesvints) in https://github.com/laravel/laravel/pull/6372 ## [v11.0.2](https://github.com/laravel/laravel/compare/v11.0.1...v11.0.2) - 2024-03-13 From 51c4166bfbf0556e808f8f583fb7d91ce0fe6efe Mon Sep 17 00:00:00 2001 From: Sergey Pashkevich Date: Fri, 15 Mar 2024 13:18:22 +0300 Subject: [PATCH 02/60] [11.x] Removed useless null parameter for env helper (cache.php) (#6374) --- config/cache.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/config/cache.php b/config/cache.php index 3eb95d10..38680919 100644 --- a/config/cache.php +++ b/config/cache.php @@ -41,8 +41,8 @@ return [ 'database' => [ 'driver' => 'database', 'table' => env('DB_CACHE_TABLE', 'cache'), - 'connection' => env('DB_CACHE_CONNECTION', null), - 'lock_connection' => env('DB_CACHE_LOCK_CONNECTION', null), + 'connection' => env('DB_CACHE_CONNECTION'), + 'lock_connection' => env('DB_CACHE_LOCK_CONNECTION'), ], 'file' => [ From eb8f9dc2d661796a141b104c7f04dbde8d20ce7a Mon Sep 17 00:00:00 2001 From: Sergey Pashkevich Date: Fri, 15 Mar 2024 13:19:40 +0300 Subject: [PATCH 03/60] [11.x] Removed useless null parameter for env helper (#6373) --- config/queue.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/config/queue.php b/config/queue.php index 4f689e9c..714d91ee 100644 --- a/config/queue.php +++ b/config/queue.php @@ -36,7 +36,7 @@ return [ 'database' => [ 'driver' => 'database', - 'connection' => env('DB_QUEUE_CONNECTION', null), + 'connection' => env('DB_QUEUE_CONNECTION'), 'table' => env('DB_QUEUE_TABLE', 'jobs'), 'queue' => env('DB_QUEUE', 'default'), 'retry_after' => env('DB_QUEUE_RETRY_AFTER', 90), From 6f5d9b8888e9919ab966fae69a790a252c0c56f8 Mon Sep 17 00:00:00 2001 From: Dries Vints Date: Fri, 15 Mar 2024 15:02:06 +0100 Subject: [PATCH 04/60] Fix retry_after to be an integer (#6377) --- config/queue.php | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/config/queue.php b/config/queue.php index 714d91ee..116bd8d0 100644 --- a/config/queue.php +++ b/config/queue.php @@ -39,7 +39,7 @@ return [ 'connection' => env('DB_QUEUE_CONNECTION'), 'table' => env('DB_QUEUE_TABLE', 'jobs'), 'queue' => env('DB_QUEUE', 'default'), - 'retry_after' => env('DB_QUEUE_RETRY_AFTER', 90), + 'retry_after' => (int) env('DB_QUEUE_RETRY_AFTER', 90), 'after_commit' => false, ], @@ -47,7 +47,7 @@ return [ 'driver' => 'beanstalkd', 'host' => env('BEANSTALKD_QUEUE_HOST', 'localhost'), 'queue' => env('BEANSTALKD_QUEUE', 'default'), - 'retry_after' => env('BEANSTALKD_QUEUE_RETRY_AFTER', 90), + 'retry_after' => (int) env('BEANSTALKD_QUEUE_RETRY_AFTER', 90), 'block_for' => 0, 'after_commit' => false, ], @@ -67,7 +67,7 @@ return [ 'driver' => 'redis', 'connection' => env('REDIS_QUEUE_CONNECTION', 'default'), 'queue' => env('REDIS_QUEUE', 'default'), - 'retry_after' => env('REDIS_QUEUE_RETRY_AFTER', 90), + 'retry_after' => (int) env('REDIS_QUEUE_RETRY_AFTER', 90), 'block_for' => null, 'after_commit' => false, ], From 441845d88dfc2a4fbf59f1e57d48889c8de664bb Mon Sep 17 00:00:00 2001 From: Michael Nabil <46572405+michaelnabil230@users.noreply.github.com> Date: Fri, 15 Mar 2024 16:03:35 +0200 Subject: [PATCH 05/60] [11.x] Fix on hover animation and ring (#6376) Fix the card of the Vibrant Ecosystem when the mouse hovers over the card --- 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 abe98dc3..a9898e33 100644 --- a/resources/views/welcome.blade.php +++ b/resources/views/welcome.blade.php @@ -140,7 +140,7 @@ -
+
From 93f660c173d94aac52d84a28bdc778e83343e53f Mon Sep 17 00:00:00 2001 From: driesvints Date: Tue, 26 Mar 2024 16:48:14 +0000 Subject: [PATCH 06/60] Update CHANGELOG --- CHANGELOG.md | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index df80d88c..b1908a1b 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,13 @@ # Release Notes -## [Unreleased](https://github.com/laravel/laravel/compare/v11.0.3...11.x) +## [Unreleased](https://github.com/laravel/laravel/compare/v11.0.4...11.x) + +## [v11.0.4](https://github.com/laravel/laravel/compare/v11.0.3...v11.0.4) - 2024-03-15 + +* [11.x] Removed useless null parameter for env helper (cache.php) by [@siarheipashkevich](https://github.com/siarheipashkevich) in https://github.com/laravel/laravel/pull/6374 +* [11.x] Removed useless null parameter for env helper (queue.php) by [@siarheipashkevich](https://github.com/siarheipashkevich) in https://github.com/laravel/laravel/pull/6373 +* [11.x] Fix retry_after to be an integer by [@driesvints](https://github.com/driesvints) in https://github.com/laravel/laravel/pull/6377 +* [11.x] Fix on hover animation and ring by [@michaelnabil230](https://github.com/michaelnabil230) in https://github.com/laravel/laravel/pull/6376 ## [v11.0.3](https://github.com/laravel/laravel/compare/v11.0.2...v11.0.3) - 2024-03-14 From 58baff2c70144c7cd4c04eecb51fee5a24e873a8 Mon Sep 17 00:00:00 2001 From: Phil Bates Date: Tue, 26 Mar 2024 17:50:37 +0000 Subject: [PATCH 07/60] [11.x] Use PHPUnit v11 (#6385) Everythings works with no changes needed. See: * https://phpunit.de/announcements/phpunit-11.html * https://github.com/sebastianbergmann/phpunit/blob/11.0.0/ChangeLog-11.0.md --- composer.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/composer.json b/composer.json index 8728b94b..52c9f418 100644 --- a/composer.json +++ b/composer.json @@ -15,7 +15,7 @@ "laravel/sail": "^1.26", "mockery/mockery": "^1.6", "nunomaduro/collision": "^8.0", - "phpunit/phpunit": "^10.5", + "phpunit/phpunit": "^11.0", "spatie/laravel-ignition": "^2.4" }, "autoload": { From 9e2d6f6498fcaab4dcd44b101f22f9e366c3275b Mon Sep 17 00:00:00 2001 From: driesvints Date: Tue, 2 Apr 2024 14:38:02 +0000 Subject: [PATCH 08/60] Update CHANGELOG --- CHANGELOG.md | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index b1908a1b..10640c37 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,10 @@ # Release Notes -## [Unreleased](https://github.com/laravel/laravel/compare/v11.0.4...11.x) +## [Unreleased](https://github.com/laravel/laravel/compare/v11.0.5...11.x) + +## [v11.0.5](https://github.com/laravel/laravel/compare/v11.0.4...v11.0.5) - 2024-03-26 + +* [11.x] Use PHPUnit v11 by [@philbates35](https://github.com/philbates35) in https://github.com/laravel/laravel/pull/6385 ## [v11.0.4](https://github.com/laravel/laravel/compare/v11.0.3...v11.0.4) - 2024-03-15 From 708fdb1a36fd4567a2b7fd7557436536005fe4d2 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Viktor=20Sz=C3=A9pe?= Date: Wed, 3 Apr 2024 09:28:26 +0200 Subject: [PATCH 09/60] Fix PHPUnit constraint (#6389) there was a BC break in PHPUnit https://github.com/sebastianbergmann/phpunit/issues/5690 --- composer.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/composer.json b/composer.json index 52c9f418..15cebc15 100644 --- a/composer.json +++ b/composer.json @@ -15,7 +15,7 @@ "laravel/sail": "^1.26", "mockery/mockery": "^1.6", "nunomaduro/collision": "^8.0", - "phpunit/phpunit": "^11.0", + "phpunit/phpunit": "^11.0.1", "spatie/laravel-ignition": "^2.4" }, "autoload": { From 3cb22426e1d78c69b7b6630b88a02d9934cac29d Mon Sep 17 00:00:00 2001 From: Jonathan Goode Date: Tue, 9 Apr 2024 15:13:45 +0100 Subject: [PATCH 10/60] Add missing roundrobin transport driver config (#6392) --- config/mail.php | 8 ++++++++ config/session.php | 1 - 2 files changed, 8 insertions(+), 1 deletion(-) diff --git a/config/mail.php b/config/mail.php index a4a02fe4..86666599 100644 --- a/config/mail.php +++ b/config/mail.php @@ -82,6 +82,14 @@ return [ ], ], + 'roundrobin' => [ + 'transport' => 'roundrobin', + 'mailers' => [ + 'ses', + 'postmark', + ], + ], + ], /* diff --git a/config/session.php b/config/session.php index 0e22ee41..f0b6541e 100644 --- a/config/session.php +++ b/config/session.php @@ -125,7 +125,6 @@ return [ | the framework. Typically, you should not need to change this value | since doing so does not grant a meaningful security improvement. | - | */ 'cookie' => env( From 0259455a1201b9019615f8bd1b1af6470747a4d5 Mon Sep 17 00:00:00 2001 From: driesvints Date: Tue, 9 Apr 2024 15:50:21 +0000 Subject: [PATCH 11/60] Update CHANGELOG --- CHANGELOG.md | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 10640c37..559d656f 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,11 @@ # Release Notes -## [Unreleased](https://github.com/laravel/laravel/compare/v11.0.5...11.x) +## [Unreleased](https://github.com/laravel/laravel/compare/v11.0.6...11.x) + +## [v11.0.6](https://github.com/laravel/laravel/compare/v11.0.5...v11.0.6) - 2024-04-09 + +* Fix PHPUnit constraint by [@szepeviktor](https://github.com/szepeviktor) in https://github.com/laravel/laravel/pull/6389 +* [11.x] Add missing roundrobin transport driver config by [@u01jmg3](https://github.com/u01jmg3) in https://github.com/laravel/laravel/pull/6392 ## [v11.0.5](https://github.com/laravel/laravel/compare/v11.0.4...v11.0.5) - 2024-03-26 From cf0b40b878b5068ed710ee39a0e1d090a1f06d60 Mon Sep 17 00:00:00 2001 From: Jonathan Goode Date: Fri, 19 Apr 2024 16:12:29 +0100 Subject: [PATCH 12/60] Remove obsolete driver option (#6395) --- config/cache.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/config/cache.php b/config/cache.php index 38680919..6b57b183 100644 --- a/config/cache.php +++ b/config/cache.php @@ -26,7 +26,7 @@ return [ | well as their drivers. You may even define multiple stores for the | same cache driver to group types of items stored in your caches. | - | Supported drivers: "apc", "array", "database", "file", "memcached", + | Supported drivers: "array", "database", "file", "memcached", | "redis", "dynamodb", "octane", "null" | */ From e7cc5778a0547886a498c2cacdfe2b909675730d Mon Sep 17 00:00:00 2001 From: Taylor Otwell Date: Fri, 3 May 2024 12:14:37 -0500 Subject: [PATCH 13/60] resend --- config/mail.php | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/config/mail.php b/config/mail.php index 86666599..07342fc4 100644 --- a/config/mail.php +++ b/config/mail.php @@ -30,7 +30,8 @@ return [ | your mailers below. You may also add additional mailers if needed. | | Supported: "smtp", "sendmail", "mailgun", "ses", "ses-v2", - | "postmark", "log", "array", "failover", "roundrobin" + | "postmark", "resend", "log", "array", + | "failover", "roundrobin" | */ @@ -60,6 +61,10 @@ return [ // ], ], + 'resend' => [ + 'transport' => 'resend', + ], + 'sendmail' => [ 'transport' => 'sendmail', 'path' => env('MAIL_SENDMAIL_PATH', '/usr/sbin/sendmail -bs -i'), From 4b1588713d05830f7cdf88159fa3739831d167cb Mon Sep 17 00:00:00 2001 From: Taylor Otwell Date: Fri, 3 May 2024 12:16:26 -0500 Subject: [PATCH 14/60] add resend --- config/services.php | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/config/services.php b/config/services.php index 6bb68f6a..27a36175 100644 --- a/config/services.php +++ b/config/services.php @@ -24,6 +24,10 @@ return [ 'region' => env('AWS_DEFAULT_REGION', 'us-east-1'), ], + 'resend' => [ + 'key' => env('RESEND_KEY'), + ], + 'slack' => [ 'notifications' => [ 'bot_user_oauth_token' => env('SLACK_BOT_USER_OAUTH_TOKEN'), From b3df041d860233e3d1cd325fea41abe6564e894c Mon Sep 17 00:00:00 2001 From: driesvints Date: Tue, 7 May 2024 14:18:25 +0000 Subject: [PATCH 15/60] Update CHANGELOG --- CHANGELOG.md | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 559d656f..4baed491 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,10 @@ # Release Notes -## [Unreleased](https://github.com/laravel/laravel/compare/v11.0.6...11.x) +## [Unreleased](https://github.com/laravel/laravel/compare/v11.0.7...11.x) + +## [v11.0.7](https://github.com/laravel/laravel/compare/v11.0.6...v11.0.7) - 2024-05-03 + +* Remove obsolete driver option by [@u01jmg3](https://github.com/u01jmg3) in https://github.com/laravel/laravel/pull/6395 ## [v11.0.6](https://github.com/laravel/laravel/compare/v11.0.5...v11.0.6) - 2024-04-09 From 043a454ab85e3bbfde1069da55a59d4acde68080 Mon Sep 17 00:00:00 2001 From: Prince John Santillan <60916966+princejohnsantillan@users.noreply.github.com> Date: Tue, 14 May 2024 01:07:32 +0800 Subject: [PATCH 16/60] Add .phpactor.json to .gitignore (#6400) Laravel Herd adds this file when opening up Tinkerwell from Herd --- .gitignore | 1 + 1 file changed, 1 insertion(+) diff --git a/.gitignore b/.gitignore index 7fe978f8..46340a60 100644 --- a/.gitignore +++ b/.gitignore @@ -8,6 +8,7 @@ .env .env.backup .env.production +.phpactor.json .phpunit.result.cache Homestead.json Homestead.yaml From 564e04381f0c6d4dacf7e5d3e2c51f4ddb224c66 Mon Sep 17 00:00:00 2001 From: driesvints Date: Tue, 14 May 2024 15:40:18 +0000 Subject: [PATCH 17/60] Update CHANGELOG --- CHANGELOG.md | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 4baed491..f855d33f 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,10 @@ # Release Notes -## [Unreleased](https://github.com/laravel/laravel/compare/v11.0.7...11.x) +## [Unreleased](https://github.com/laravel/laravel/compare/v11.0.8...11.x) + +## [v11.0.8](https://github.com/laravel/laravel/compare/v11.0.7...v11.0.8) - 2024-05-13 + +* Add .phpactor.json to .gitignore by [@princejohnsantillan](https://github.com/princejohnsantillan) in https://github.com/laravel/laravel/pull/6400 ## [v11.0.7](https://github.com/laravel/laravel/compare/v11.0.6...v11.0.7) - 2024-05-03 From b651fb109c3e3a58e695cc0c0f332f370e648306 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ricardo=20=C4=8Cerljenko?= Date: Thu, 16 May 2024 23:36:21 +0200 Subject: [PATCH 18/60] updated mail config (#6402) --- config/mail.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/config/mail.php b/config/mail.php index 07342fc4..df13d3df 100644 --- a/config/mail.php +++ b/config/mail.php @@ -46,7 +46,7 @@ return [ 'username' => env('MAIL_USERNAME'), 'password' => env('MAIL_PASSWORD'), 'timeout' => null, - 'local_domain' => env('MAIL_EHLO_DOMAIN'), + 'local_domain' => env('MAIL_EHLO_DOMAIN', parse_url(env('APP_URL', 'http://localhost'), PHP_URL_HOST)), ], 'ses' => [ From 76510a70c5b13b3facb2300ea7b1787342a7e0b0 Mon Sep 17 00:00:00 2001 From: driesvints Date: Tue, 21 May 2024 18:12:17 +0000 Subject: [PATCH 19/60] Update CHANGELOG --- CHANGELOG.md | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index f855d33f..38e574cd 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,10 @@ # Release Notes -## [Unreleased](https://github.com/laravel/laravel/compare/v11.0.8...11.x) +## [Unreleased](https://github.com/laravel/laravel/compare/v11.0.9...11.x) + +## [v11.0.9](https://github.com/laravel/laravel/compare/v11.0.8...v11.0.9) - 2024-05-16 + +* Updated SMTP mail config to use a valid EHLO domain by [@rcerljenko](https://github.com/rcerljenko) in https://github.com/laravel/laravel/pull/6402 ## [v11.0.8](https://github.com/laravel/laravel/compare/v11.0.7...v11.0.8) - 2024-05-13 From 5d86ab4b729e23dcdaa3be2c2121c06d0677be61 Mon Sep 17 00:00:00 2001 From: Nuno Maduro Date: Tue, 28 May 2024 17:01:13 +0100 Subject: [PATCH 20/60] Removes `spatie/laravel-ignition` (#6406) --- composer.json | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/composer.json b/composer.json index 15cebc15..4b7e1832 100644 --- a/composer.json +++ b/composer.json @@ -6,7 +6,7 @@ "license": "MIT", "require": { "php": "^8.2", - "laravel/framework": "^11.0", + "laravel/framework": "^11.9", "laravel/tinker": "^2.9" }, "require-dev": { @@ -15,8 +15,7 @@ "laravel/sail": "^1.26", "mockery/mockery": "^1.6", "nunomaduro/collision": "^8.0", - "phpunit/phpunit": "^11.0.1", - "spatie/laravel-ignition": "^2.4" + "phpunit/phpunit": "^11.0.1" }, "autoload": { "psr-4": { From b6d55576d1c9fcf15adebc76bcb6d8cb476a4418 Mon Sep 17 00:00:00 2001 From: driesvints Date: Tue, 28 May 2024 16:01:52 +0000 Subject: [PATCH 21/60] Update CHANGELOG --- CHANGELOG.md | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 38e574cd..6d646438 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,10 @@ # Release Notes -## [Unreleased](https://github.com/laravel/laravel/compare/v11.0.9...11.x) +## [Unreleased](https://github.com/laravel/laravel/compare/v11.1.0...11.x) + +## [v11.1.0](https://github.com/laravel/laravel/compare/v11.0.9...v11.1.0) - 2024-05-28 + +* [11.x] Removes `--dev` dependencies by [@nunomaduro](https://github.com/nunomaduro) in https://github.com/laravel/laravel/pull/6406 ## [v11.0.9](https://github.com/laravel/laravel/compare/v11.0.8...v11.0.9) - 2024-05-16 From ad38e564ac871505e2fa829004cc45848b8b85e5 Mon Sep 17 00:00:00 2001 From: maru0914 <56859729+maru0914@users.noreply.github.com> Date: Tue, 4 Jun 2024 22:28:32 +0900 Subject: [PATCH 22/60] Format the first letter of `drivers` to lowercase (#6413) --- config/filesystems.php | 2 +- config/logging.php | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/config/filesystems.php b/config/filesystems.php index 44fe9c82..c5f244d7 100644 --- a/config/filesystems.php +++ b/config/filesystems.php @@ -24,7 +24,7 @@ return [ | may even configure multiple disks for the same driver. Examples for | most supported storage drivers are configured here for reference. | - | Supported Drivers: "local", "ftp", "sftp", "s3" + | Supported drivers: "local", "ftp", "sftp", "s3" | */ diff --git a/config/logging.php b/config/logging.php index d526b64d..8d94292b 100644 --- a/config/logging.php +++ b/config/logging.php @@ -45,7 +45,7 @@ return [ | utilizes the Monolog PHP logging library, which includes a variety | of powerful log handlers and formatters that you're free to use. | - | Available Drivers: "single", "daily", "slack", "syslog", + | Available drivers: "single", "daily", "slack", "syslog", | "errorlog", "monolog", "custom", "stack" | */ From 3b3f9f13faab1753e7b7cad6a0e7098e54c8199f Mon Sep 17 00:00:00 2001 From: taylorotwell Date: Tue, 4 Jun 2024 13:56:47 +0000 Subject: [PATCH 23/60] Update CHANGELOG --- CHANGELOG.md | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 6d646438..508f3acd 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,10 @@ # Release Notes -## [Unreleased](https://github.com/laravel/laravel/compare/v11.1.0...11.x) +## [Unreleased](https://github.com/laravel/laravel/compare/v11.1.1...11.x) + +## [v11.1.1](https://github.com/laravel/laravel/compare/v11.1.0...v11.1.1) - 2024-06-04 + +* Format the first letter of `drivers` to lowercase by [@maru0914](https://github.com/maru0914) in https://github.com/laravel/laravel/pull/6413 ## [v11.1.0](https://github.com/laravel/laravel/compare/v11.0.9...v11.1.0) - 2024-05-28 From 3fd8dd85397a6c1e91c541ad08164309569ab0b3 Mon Sep 17 00:00:00 2001 From: Nicolas Hedger <649677+nhedger@users.noreply.github.com> Date: Thu, 20 Jun 2024 16:41:28 +0200 Subject: [PATCH 24/60] Expose lock table name (#6423) * Expose lock table name * Update cache.php --------- Co-authored-by: Taylor Otwell --- config/cache.php | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/config/cache.php b/config/cache.php index 6b57b183..5d386489 100644 --- a/config/cache.php +++ b/config/cache.php @@ -40,9 +40,10 @@ return [ 'database' => [ 'driver' => 'database', - 'table' => env('DB_CACHE_TABLE', 'cache'), 'connection' => env('DB_CACHE_CONNECTION'), - 'lock_connection' => env('DB_CACHE_LOCK_CONNECTION'), + 'table' => env('DB_CACHE_TABLE', 'cache'), + 'lock_connection' => env('DB_CACHE_LOCK_CONNECTION'), + 'lock_table' => env('DB_CACHE_LOCK_TABLE'), ], 'file' => [ From 47fb90a8caebb370fb6394cbedaeea5f15fdd0e3 Mon Sep 17 00:00:00 2001 From: StyleCI Bot Date: Thu, 20 Jun 2024 14:41:46 +0000 Subject: [PATCH 25/60] Apply fixes from StyleCI --- config/cache.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/config/cache.php b/config/cache.php index 5d386489..925f7d2e 100644 --- a/config/cache.php +++ b/config/cache.php @@ -42,7 +42,7 @@ return [ 'driver' => 'database', 'connection' => env('DB_CACHE_CONNECTION'), 'table' => env('DB_CACHE_TABLE', 'cache'), - 'lock_connection' => env('DB_CACHE_LOCK_CONNECTION'), + 'lock_connection' => env('DB_CACHE_LOCK_CONNECTION'), 'lock_table' => env('DB_CACHE_LOCK_TABLE'), ], From 3b239422d8657df11fe0c0092525efe9ecd3ec45 Mon Sep 17 00:00:00 2001 From: driesvints Date: Tue, 2 Jul 2024 18:12:20 +0000 Subject: [PATCH 26/60] Update CHANGELOG --- CHANGELOG.md | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 508f3acd..1cbdbeac 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,10 @@ # Release Notes -## [Unreleased](https://github.com/laravel/laravel/compare/v11.1.1...11.x) +## [Unreleased](https://github.com/laravel/laravel/compare/v11.1.2...11.x) + +## [v11.1.2](https://github.com/laravel/laravel/compare/v11.1.1...v11.1.2) - 2024-06-20 + +* Expose lock table name by [@nhedger](https://github.com/nhedger) in https://github.com/laravel/laravel/pull/6423 ## [v11.1.1](https://github.com/laravel/laravel/compare/v11.1.0...v11.1.1) - 2024-06-04 From 69917ece2c1ad709b9dafb0ee7b4ee85b0432530 Mon Sep 17 00:00:00 2001 From: Tim MacDonald Date: Thu, 4 Jul 2024 07:03:03 +1000 Subject: [PATCH 27/60] [11.x] Comment maintenance store (#6429) --- .env.example | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.env.example b/.env.example index 7b49625a..2a4a8b78 100644 --- a/.env.example +++ b/.env.example @@ -10,7 +10,7 @@ APP_FALLBACK_LOCALE=en APP_FAKER_LOCALE=en_US APP_MAINTENANCE_DRIVER=file -APP_MAINTENANCE_STORE=database +# APP_MAINTENANCE_STORE=database BCRYPT_ROUNDS=12 From 4ef5e2f89e987f84b33b62f79e96485dcaa8f209 Mon Sep 17 00:00:00 2001 From: driesvints Date: Tue, 9 Jul 2024 16:01:01 +0000 Subject: [PATCH 28/60] Update CHANGELOG --- CHANGELOG.md | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 1cbdbeac..3995a5b9 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,10 @@ # Release Notes -## [Unreleased](https://github.com/laravel/laravel/compare/v11.1.2...11.x) +## [Unreleased](https://github.com/laravel/laravel/compare/v11.1.3...11.x) + +## [v11.1.3](https://github.com/laravel/laravel/compare/v11.1.2...v11.1.3) - 2024-07-03 + +* [11.x] Comment maintenance store by [@timacdonald](https://github.com/timacdonald) in https://github.com/laravel/laravel/pull/6429 ## [v11.1.2](https://github.com/laravel/laravel/compare/v11.1.1...v11.1.2) - 2024-06-20 From 2897a49c65a37e385d25d6606d8258e1afb39774 Mon Sep 17 00:00:00 2001 From: Taylor Otwell Date: Tue, 16 Jul 2024 09:39:18 -0500 Subject: [PATCH 29/60] add sqlite options --- config/database.php | 3 +++ 1 file changed, 3 insertions(+) diff --git a/config/database.php b/config/database.php index f8e8dcb8..125949ed 100644 --- a/config/database.php +++ b/config/database.php @@ -37,6 +37,9 @@ return [ 'database' => env('DB_DATABASE', database_path('database.sqlite')), 'prefix' => '', 'foreign_key_constraints' => env('DB_FOREIGN_KEYS', true), + 'busy_timeout' => null, + 'journal_mode' => null, + 'synchronous' => null, ], 'mysql' => [ From 6ebd9fed8a1724464e9c1138d94c882d12dfd61b Mon Sep 17 00:00:00 2001 From: taylorotwell Date: Tue, 16 Jul 2024 14:40:46 +0000 Subject: [PATCH 30/60] Update CHANGELOG --- CHANGELOG.md | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 3995a5b9..2732f5b0 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,10 @@ # Release Notes -## [Unreleased](https://github.com/laravel/laravel/compare/v11.1.3...11.x) +## [Unreleased](https://github.com/laravel/laravel/compare/v11.1.4...11.x) + +## [v11.1.4](https://github.com/laravel/laravel/compare/v11.1.3...v11.1.4) - 2024-07-16 + +**Full Changelog**: https://github.com/laravel/laravel/compare/v11.1.3...v11.1.4 ## [v11.1.3](https://github.com/laravel/laravel/compare/v11.1.2...v11.1.3) - 2024-07-03 From c12fd185e64b6fd652243e06f290f438164ddde5 Mon Sep 17 00:00:00 2001 From: laserhybiz <100562257+laserhybiz@users.noreply.github.com> Date: Wed, 14 Aug 2024 17:36:13 +0300 Subject: [PATCH 31/60] Update package.json (#6440) --- package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package.json b/package.json index 4e934caa..5d678002 100644 --- a/package.json +++ b/package.json @@ -6,7 +6,7 @@ "build": "vite build" }, "devDependencies": { - "axios": "^1.6.4", + "axios": "^1.7.4", "laravel-vite-plugin": "^1.0", "vite": "^5.0" } From f0a12c6600d5c16a73e2bd5ce474ee1400af480b Mon Sep 17 00:00:00 2001 From: driesvints Date: Tue, 3 Sep 2024 15:32:25 +0000 Subject: [PATCH 32/60] Update CHANGELOG --- CHANGELOG.md | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 2732f5b0..b5a318e5 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,10 @@ # Release Notes -## [Unreleased](https://github.com/laravel/laravel/compare/v11.1.4...11.x) +## [Unreleased](https://github.com/laravel/laravel/compare/v11.1.5...11.x) + +## [v11.1.5](https://github.com/laravel/laravel/compare/v11.1.4...v11.1.5) - 2024-08-14 + +* Update axios by [@laserhybiz](https://github.com/laserhybiz) in https://github.com/laravel/laravel/pull/6440 ## [v11.1.4](https://github.com/laravel/laravel/compare/v11.1.3...v11.1.4) - 2024-07-16 From 168e685936c3a78cccddae45c14a5103b9876901 Mon Sep 17 00:00:00 2001 From: Fahad Khan Date: Fri, 6 Sep 2024 00:04:18 +0400 Subject: [PATCH 33/60] Update .gitignore with Zed Editor (#6449) --- .gitignore | 1 + 1 file changed, 1 insertion(+) diff --git a/.gitignore b/.gitignore index 46340a60..afa306bd 100644 --- a/.gitignore +++ b/.gitignore @@ -18,3 +18,4 @@ yarn-error.log /.fleet /.idea /.vscode +/.zed From bab16982dd64e3f58bf2242d5ad0585f9a331e01 Mon Sep 17 00:00:00 2001 From: Taylor Otwell Date: Wed, 11 Sep 2024 15:12:40 -0500 Subject: [PATCH 34/60] private files (#6450) --- config/filesystems.php | 3 ++- storage/app/.gitignore | 1 + storage/app/private/.gitignore | 2 ++ 3 files changed, 5 insertions(+), 1 deletion(-) create mode 100644 storage/app/private/.gitignore diff --git a/config/filesystems.php b/config/filesystems.php index c5f244d7..b564035a 100644 --- a/config/filesystems.php +++ b/config/filesystems.php @@ -32,7 +32,8 @@ return [ 'local' => [ 'driver' => 'local', - 'root' => storage_path('app'), + 'root' => storage_path('app/private'), + 'serve' => true, 'throw' => false, ], diff --git a/storage/app/.gitignore b/storage/app/.gitignore index 8f4803c0..fedb287f 100644 --- a/storage/app/.gitignore +++ b/storage/app/.gitignore @@ -1,3 +1,4 @@ * +!private/ !public/ !.gitignore diff --git a/storage/app/private/.gitignore b/storage/app/private/.gitignore new file mode 100644 index 00000000..d6b7ef32 --- /dev/null +++ b/storage/app/private/.gitignore @@ -0,0 +1,2 @@ +* +!.gitignore From e0421a4ec94be0044217e83b9c839676337139ae Mon Sep 17 00:00:00 2001 From: taylorotwell Date: Wed, 11 Sep 2024 21:34:45 +0000 Subject: [PATCH 35/60] Update CHANGELOG --- CHANGELOG.md | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index b5a318e5..bb491647 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,11 @@ # Release Notes -## [Unreleased](https://github.com/laravel/laravel/compare/v11.1.5...11.x) +## [Unreleased](https://github.com/laravel/laravel/compare/v11.2.0...11.x) + +## [v11.2.0](https://github.com/laravel/laravel/compare/v11.1.5...v11.2.0) - 2024-09-11 + +* Update .gitignore with Zed Editor by [@fahadkhan1740](https://github.com/fahadkhan1740) in https://github.com/laravel/laravel/pull/6449 +* Laracon 2024 feature update by [@taylorotwell](https://github.com/taylorotwell) in https://github.com/laravel/laravel/pull/6450 ## [v11.1.5](https://github.com/laravel/laravel/compare/v11.1.4...v11.1.5) - 2024-08-14 From 6e71b994e7a249c5f932b342c2d69c4e3591696f Mon Sep 17 00:00:00 2001 From: Amdadul Haq Date: Wed, 18 Sep 2024 22:21:54 +0600 Subject: [PATCH 36/60] Update composer.json (#6454) --- composer.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/composer.json b/composer.json index 4b7e1832..5605c28e 100644 --- a/composer.json +++ b/composer.json @@ -14,7 +14,7 @@ "laravel/pint": "^1.13", "laravel/sail": "^1.26", "mockery/mockery": "^1.6", - "nunomaduro/collision": "^8.0", + "nunomaduro/collision": "^8.1", "phpunit/phpunit": "^11.0.1" }, "autoload": { From c9c8fb9ee73266b2bb4183603b553b2ee9030252 Mon Sep 17 00:00:00 2001 From: Punyapal Shah <53343069+MrPunyapal@users.noreply.github.com> Date: Thu, 19 Sep 2024 16:52:19 +0530 Subject: [PATCH 37/60] Refactor User model to use HasFactory trait and add type hint for UserFactory (#6453) --- app/Models/User.php | 1 + 1 file changed, 1 insertion(+) diff --git a/app/Models/User.php b/app/Models/User.php index def621f4..3dfbd80e 100644 --- a/app/Models/User.php +++ b/app/Models/User.php @@ -9,6 +9,7 @@ use Illuminate\Notifications\Notifiable; class User extends Authenticatable { + /** @use HasFactory<\Database\Factories\UserFactory> */ use HasFactory, Notifiable; /** From 49bceac41ff34dd6df12760041ead73f8888dc6c Mon Sep 17 00:00:00 2001 From: Dominik Koch Date: Tue, 8 Oct 2024 15:34:41 +0200 Subject: [PATCH 38/60] Update welcome.blade.php to add missing alt tag (#6462) Every image should have an alt tag for accessibility reasons, but this one did not, so this commit aims to add the missing one. --- 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 a9898e33..54c3c382 100644 --- a/resources/views/welcome.blade.php +++ b/resources/views/welcome.blade.php @@ -17,7 +17,7 @@
- + Laravel background
From a61a6361ed7028c21a4a6b2bf4ce41f5b08e4499 Mon Sep 17 00:00:00 2001 From: taylorotwell Date: Tue, 8 Oct 2024 16:08:41 +0000 Subject: [PATCH 39/60] Update CHANGELOG --- CHANGELOG.md | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index bb491647..b9f4e8a7 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,12 @@ # Release Notes -## [Unreleased](https://github.com/laravel/laravel/compare/v11.2.0...11.x) +## [Unreleased](https://github.com/laravel/laravel/compare/v11.2.1...11.x) + +## [v11.2.1](https://github.com/laravel/laravel/compare/v11.2.0...v11.2.1) - 2024-10-08 + +* [11.x] Collision Version Upgrade by [@amdad121](https://github.com/amdad121) in https://github.com/laravel/laravel/pull/6454 +* [11.x] factory-generics-in-user-model by [@MrPunyapal](https://github.com/MrPunyapal) in https://github.com/laravel/laravel/pull/6453 +* Update welcome.blade.php to add missing alt tag by [@mezotv](https://github.com/mezotv) in https://github.com/laravel/laravel/pull/6462 ## [v11.2.0](https://github.com/laravel/laravel/compare/v11.1.5...v11.2.0) - 2024-09-11 From b378ce946a05b5ab80776c3b5e40fa84751084bd Mon Sep 17 00:00:00 2001 From: Taylor Otwell Date: Thu, 10 Oct 2024 14:21:56 -0500 Subject: [PATCH 40/60] Add Tailwind, "composer run dev" (#6463) This PR does two things... First, it adds a basic Tailwind configuration out of the box. This lets you start using Tailwind immediately without installing any starter kit. Useful if you just want to mess around or build things from scratch. Second, it adds a composer run dev script, which starts php artisan serve, php artisan queue:listen --tries=1, php artisan pail (now a dev dependency by default), and npm run dev all in one command, with color coded output in the terminal using concurrently. --- .env.example | 2 ++ .gitignore | 1 + composer.json | 5 +++++ package.json | 8 ++++++-- postcss.config.js | 6 ++++++ resources/css/app.css | 3 +++ resources/views/welcome.blade.php | 14 +++++++++----- tailwind.config.js | 20 ++++++++++++++++++++ 8 files changed, 52 insertions(+), 7 deletions(-) create mode 100644 postcss.config.js create mode 100644 tailwind.config.js diff --git a/.env.example b/.env.example index 2a4a8b78..a1b3de4c 100644 --- a/.env.example +++ b/.env.example @@ -12,6 +12,8 @@ APP_FAKER_LOCALE=en_US APP_MAINTENANCE_DRIVER=file # APP_MAINTENANCE_STORE=database +PHP_CLI_SERVER_WORKERS=4 + BCRYPT_ROUNDS=12 LOG_CHANNEL=stack diff --git a/.gitignore b/.gitignore index afa306bd..c3ea31b2 100644 --- a/.gitignore +++ b/.gitignore @@ -4,6 +4,7 @@ /public/hot /public/storage /storage/*.key +/storage/pail /vendor .env .env.backup diff --git a/composer.json b/composer.json index 5605c28e..7e897140 100644 --- a/composer.json +++ b/composer.json @@ -11,6 +11,7 @@ }, "require-dev": { "fakerphp/faker": "^1.23", + "laravel/pail": "^1.1", "laravel/pint": "^1.13", "laravel/sail": "^1.26", "mockery/mockery": "^1.6", @@ -44,6 +45,10 @@ "@php artisan key:generate --ansi", "@php -r \"file_exists('database/database.sqlite') || touch('database/database.sqlite');\"", "@php artisan migrate --graceful --ansi" + ], + "dev": [ + "Composer\\Config::disableProcessTimeout", + "npx concurrently -k -c \"#93c5fd,#c4b5fd,#d4d4d8,#fdba74\" \"php artisan serve\" \"php artisan queue:listen --tries=1\" \"php artisan pail\" \"npm run dev\" --names=server,queue,logs,vite" ] }, "extra": { diff --git a/package.json b/package.json index 5d678002..c38623a9 100644 --- a/package.json +++ b/package.json @@ -2,12 +2,16 @@ "private": true, "type": "module", "scripts": { - "dev": "vite", - "build": "vite build" + "build": "vite build", + "dev": "vite" }, "devDependencies": { + "autoprefixer": "^10.4.20", "axios": "^1.7.4", + "concurrently": "^9.0.1", "laravel-vite-plugin": "^1.0", + "postcss": "^8.4.47", + "tailwindcss": "^3.4.13", "vite": "^5.0" } } diff --git a/postcss.config.js b/postcss.config.js new file mode 100644 index 00000000..49c0612d --- /dev/null +++ b/postcss.config.js @@ -0,0 +1,6 @@ +export default { + plugins: { + tailwindcss: {}, + autoprefixer: {}, + }, +}; diff --git a/resources/css/app.css b/resources/css/app.css index e69de29b..b5c61c95 100644 --- a/resources/css/app.css +++ b/resources/css/app.css @@ -0,0 +1,3 @@ +@tailwind base; +@tailwind components; +@tailwind utilities; diff --git a/resources/views/welcome.blade.php b/resources/views/welcome.blade.php index 54c3c382..979e82a6 100644 --- a/resources/views/welcome.blade.php +++ b/resources/views/welcome.blade.php @@ -8,12 +8,16 @@ - + - - + + @if (file_exists(public_path('build/manifest.json')) || file_exists(public_path('hot'))) + @vite(['resources/css/app.css', 'resources/js/app.js']) + @else + + @endif
diff --git a/tailwind.config.js b/tailwind.config.js new file mode 100644 index 00000000..ce0c57fc --- /dev/null +++ b/tailwind.config.js @@ -0,0 +1,20 @@ +import defaultTheme from 'tailwindcss/defaultTheme'; + +/** @type {import('tailwindcss').Config} */ +export default { + content: [ + './vendor/laravel/framework/src/Illuminate/Pagination/resources/views/*.blade.php', + './storage/framework/views/*.php', + './resources/**/*.blade.php', + './resources/**/*.js', + './resources/**/*.vue', + ], + theme: { + extend: { + fontFamily: { + sans: ['Figtree', ...defaultTheme.fontFamily.sans], + }, + }, + }, + plugins: [], +}; From 0973f0a3365bb4a4611cbe1a14a0eaffc2a9dced Mon Sep 17 00:00:00 2001 From: Taylor Otwell Date: Fri, 11 Oct 2024 16:57:35 -0500 Subject: [PATCH 41/60] add restart tries --- composer.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/composer.json b/composer.json index 7e897140..5eb3e27d 100644 --- a/composer.json +++ b/composer.json @@ -48,7 +48,7 @@ ], "dev": [ "Composer\\Config::disableProcessTimeout", - "npx concurrently -k -c \"#93c5fd,#c4b5fd,#d4d4d8,#fdba74\" \"php artisan serve\" \"php artisan queue:listen --tries=1\" \"php artisan pail\" \"npm run dev\" --names=server,queue,logs,vite" + "npx concurrently -k -c \"#93c5fd,#c4b5fd,#d4d4d8,#fdba74\" \"php artisan serve\" \"php artisan queue:listen --tries=1\" \"php artisan pail\" \"npm run dev\" --names=server,queue,logs,vite --restart-tries=3" ] }, "extra": { From 2f17c9764108cac1c1799c21ac7ecb3fa8a21c4e Mon Sep 17 00:00:00 2001 From: Taylor Otwell Date: Mon, 14 Oct 2024 09:22:52 -0500 Subject: [PATCH 42/60] remove retries --- composer.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/composer.json b/composer.json index 5eb3e27d..7e897140 100644 --- a/composer.json +++ b/composer.json @@ -48,7 +48,7 @@ ], "dev": [ "Composer\\Config::disableProcessTimeout", - "npx concurrently -k -c \"#93c5fd,#c4b5fd,#d4d4d8,#fdba74\" \"php artisan serve\" \"php artisan queue:listen --tries=1\" \"php artisan pail\" \"npm run dev\" --names=server,queue,logs,vite --restart-tries=3" + "npx concurrently -k -c \"#93c5fd,#c4b5fd,#d4d4d8,#fdba74\" \"php artisan serve\" \"php artisan queue:listen --tries=1\" \"php artisan pail\" \"npm run dev\" --names=server,queue,logs,vite" ] }, "extra": { From 6c3d2fb4a0182355abc90972315a8caaab5aa435 Mon Sep 17 00:00:00 2001 From: Taylor Otwell Date: Mon, 14 Oct 2024 09:25:43 -0500 Subject: [PATCH 43/60] adjust colors --- composer.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/composer.json b/composer.json index 7e897140..f11346e3 100644 --- a/composer.json +++ b/composer.json @@ -48,7 +48,7 @@ ], "dev": [ "Composer\\Config::disableProcessTimeout", - "npx concurrently -k -c \"#93c5fd,#c4b5fd,#d4d4d8,#fdba74\" \"php artisan serve\" \"php artisan queue:listen --tries=1\" \"php artisan pail\" \"npm run dev\" --names=server,queue,logs,vite" + "npx concurrently -k -c \"#93c5fd,#c4b5fd,#fb7185,#fdba74\" \"php artisan serve\" \"php artisan queue:listen --tries=1\" \"php artisan pail\" \"npm run dev\" --names=server,queue,logs,vite" ] }, "extra": { From ea60b55f9c157fc5717efedc8269868033d5bb8e Mon Sep 17 00:00:00 2001 From: taylorotwell Date: Tue, 15 Oct 2024 14:29:07 +0000 Subject: [PATCH 44/60] Update CHANGELOG --- CHANGELOG.md | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index b9f4e8a7..07fa74ce 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,10 @@ # Release Notes -## [Unreleased](https://github.com/laravel/laravel/compare/v11.2.1...11.x) +## [Unreleased](https://github.com/laravel/laravel/compare/v11.3.0...11.x) + +## [v11.3.0](https://github.com/laravel/laravel/compare/v11.2.1...v11.3.0) - 2024-10-14 + +* Add Tailwind, "composer run dev" by [@taylorotwell](https://github.com/taylorotwell) in https://github.com/laravel/laravel/pull/6463 ## [v11.2.1](https://github.com/laravel/laravel/compare/v11.2.0...v11.2.1) - 2024-10-08 From f9f5e3c3ae0b9e536ddc690aae14032557956449 Mon Sep 17 00:00:00 2001 From: Taylor Otwell Date: Tue, 15 Oct 2024 15:03:43 -0500 Subject: [PATCH 45/60] wip --- composer.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/composer.json b/composer.json index f11346e3..143084f5 100644 --- a/composer.json +++ b/composer.json @@ -48,7 +48,7 @@ ], "dev": [ "Composer\\Config::disableProcessTimeout", - "npx concurrently -k -c \"#93c5fd,#c4b5fd,#fb7185,#fdba74\" \"php artisan serve\" \"php artisan queue:listen --tries=1\" \"php artisan pail\" \"npm run dev\" --names=server,queue,logs,vite" + "npx concurrently -c \"#93c5fd,#c4b5fd,#fb7185,#fdba74\" \"php artisan serve\" \"php artisan queue:listen --tries=1\" \"php artisan pail\" \"npm run dev\" --names=server,queue,logs,vite" ] }, "extra": { From 1c880c36e2fbb697a6892a469aebbea37fe096dc Mon Sep 17 00:00:00 2001 From: taylorotwell Date: Tue, 15 Oct 2024 20:04:27 +0000 Subject: [PATCH 46/60] Update CHANGELOG --- CHANGELOG.md | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 07fa74ce..201a0d38 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,10 @@ # Release Notes -## [Unreleased](https://github.com/laravel/laravel/compare/v11.3.0...11.x) +## [Unreleased](https://github.com/laravel/laravel/compare/v11.3.1...11.x) + +## [v11.3.1](https://github.com/laravel/laravel/compare/v11.3.0...v11.3.1) - 2024-10-15 + +**Full Changelog**: https://github.com/laravel/laravel/compare/v11.3.0...v11.3.1 ## [v11.3.0](https://github.com/laravel/laravel/compare/v11.2.1...v11.3.0) - 2024-10-14 From 82a83a698134278da35d67b102f3e985b2d2502b Mon Sep 17 00:00:00 2001 From: Nuno Maduro Date: Mon, 21 Oct 2024 14:59:43 +0100 Subject: [PATCH 47/60] Fixes pail timing out after an hour (#6473) --- composer.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/composer.json b/composer.json index 143084f5..c6288cf4 100644 --- a/composer.json +++ b/composer.json @@ -48,7 +48,7 @@ ], "dev": [ "Composer\\Config::disableProcessTimeout", - "npx concurrently -c \"#93c5fd,#c4b5fd,#fb7185,#fdba74\" \"php artisan serve\" \"php artisan queue:listen --tries=1\" \"php artisan pail\" \"npm run dev\" --names=server,queue,logs,vite" + "npx concurrently -c \"#93c5fd,#c4b5fd,#fb7185,#fdba74\" \"php artisan serve\" \"php artisan queue:listen --tries=1\" \"php artisan pail --timeout=0\" \"npm run dev\" --names=server,queue,logs,vite" ] }, "extra": { From 61fec7b8981c8d4dec3351574a902701f2489d3c Mon Sep 17 00:00:00 2001 From: taylorotwell Date: Tue, 22 Oct 2024 14:23:02 +0000 Subject: [PATCH 48/60] Update CHANGELOG --- CHANGELOG.md | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 201a0d38..8741855e 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,10 @@ # Release Notes -## [Unreleased](https://github.com/laravel/laravel/compare/v11.3.1...11.x) +## [Unreleased](https://github.com/laravel/laravel/compare/v11.3.2...11.x) + +## [v11.3.2](https://github.com/laravel/laravel/compare/v11.3.1...v11.3.2) - 2024-10-21 + +* Fixes pail timing out after an hour by [@nunomaduro](https://github.com/nunomaduro) in https://github.com/laravel/laravel/pull/6473 ## [v11.3.1](https://github.com/laravel/laravel/compare/v11.3.0...v11.3.1) - 2024-10-15 From 2e6ac2c9d2e29d1631ad0c44d25ef2b1b5663211 Mon Sep 17 00:00:00 2001 From: Amir Mohammad Babaei Date: Wed, 23 Oct 2024 16:32:59 +0330 Subject: [PATCH 49/60] Inconsistency in Github action names (#6478) * Update pull-requests.yml * Update issues.yml * Update update-changelog.yml --- .github/workflows/issues.yml | 2 +- .github/workflows/pull-requests.yml | 2 +- .github/workflows/update-changelog.yml | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/issues.yml b/.github/workflows/issues.yml index 9634a0ed..230257c2 100644 --- a/.github/workflows/issues.yml +++ b/.github/workflows/issues.yml @@ -1,4 +1,4 @@ -name: issues +name: Issues on: issues: diff --git a/.github/workflows/pull-requests.yml b/.github/workflows/pull-requests.yml index 18b32b32..6f9f97ea 100644 --- a/.github/workflows/pull-requests.yml +++ b/.github/workflows/pull-requests.yml @@ -1,4 +1,4 @@ -name: pull requests +name: Pull Requests on: pull_request_target: diff --git a/.github/workflows/update-changelog.yml b/.github/workflows/update-changelog.yml index ebda6206..70352331 100644 --- a/.github/workflows/update-changelog.yml +++ b/.github/workflows/update-changelog.yml @@ -1,4 +1,4 @@ -name: update changelog +name: Update Changelog on: release: From 70f437b6fc7801ef11d6627d9ab48d698ffe5f26 Mon Sep 17 00:00:00 2001 From: Vaggelis Yfantis Date: Sun, 3 Nov 2024 23:04:06 +0200 Subject: [PATCH 50/60] Add $schema property to composer.json (#6484) --- composer.json | 1 + 1 file changed, 1 insertion(+) diff --git a/composer.json b/composer.json index c6288cf4..308c2aec 100644 --- a/composer.json +++ b/composer.json @@ -1,4 +1,5 @@ { + "$schema": "https://getcomposer.org/schema.json", "name": "laravel/laravel", "type": "project", "description": "The skeleton application for the Laravel framework.", From bc03c8d748da8a49e10d0ea405c438497fa8cfce Mon Sep 17 00:00:00 2001 From: Emran Ramezan Date: Thu, 7 Nov 2024 21:55:36 +0000 Subject: [PATCH 51/60] Update .gitignore (#6486) * Update .gitignore Added Panic's Nova Code Editor `dot` files * Update .gitignore --------- Co-authored-by: Taylor Otwell --- .gitignore | 1 + 1 file changed, 1 insertion(+) diff --git a/.gitignore b/.gitignore index c3ea31b2..bec2973a 100644 --- a/.gitignore +++ b/.gitignore @@ -18,5 +18,6 @@ npm-debug.log yarn-error.log /.fleet /.idea +/.nova /.vscode /.zed From 3622d746fde67ebaff3dd3fdde3676599434692f Mon Sep 17 00:00:00 2001 From: Perry van der Meer <11609290+PerryvanderMeer@users.noreply.github.com> Date: Thu, 14 Nov 2024 16:30:38 +0100 Subject: [PATCH 52/60] Update composer.json (#6490) --- composer.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/composer.json b/composer.json index 308c2aec..60681e63 100644 --- a/composer.json +++ b/composer.json @@ -7,7 +7,7 @@ "license": "MIT", "require": { "php": "^8.2", - "laravel/framework": "^11.9", + "laravel/framework": "^11.31", "laravel/tinker": "^2.9" }, "require-dev": { From 3b146114e2c5a494f1f0a74aaeedf97511ac1964 Mon Sep 17 00:00:00 2001 From: Andrew Brown Date: Mon, 18 Nov 2024 08:18:13 -0600 Subject: [PATCH 53/60] match `HidesAttributes` docblocks (#6495) the docblock in `HidesAttributes` was updated in #42512, so this child class should be using the same. otherwise PHPStan throws a "PHPDoc type array of property App\Models\User::$hidden is not covariant with PHPDoc type list of property Illuminate\Database\Eloquent\Model::$hidden" error --- app/Models/User.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/Models/User.php b/app/Models/User.php index 3dfbd80e..b003abde 100644 --- a/app/Models/User.php +++ b/app/Models/User.php @@ -26,7 +26,7 @@ class User extends Authenticatable /** * The attributes that should be hidden for serialization. * - * @var array + * @var array */ protected $hidden = [ 'password', From 2eacb3d0f08a401ff70107c7a617e27478fb576d Mon Sep 17 00:00:00 2001 From: Taylor Otwell Date: Mon, 18 Nov 2024 08:18:44 -0600 Subject: [PATCH 54/60] wip --- app/Models/User.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/Models/User.php b/app/Models/User.php index b003abde..3dfbd80e 100644 --- a/app/Models/User.php +++ b/app/Models/User.php @@ -26,7 +26,7 @@ class User extends Authenticatable /** * The attributes that should be hidden for serialization. * - * @var array + * @var array */ protected $hidden = [ 'password', From 980ef58fdda4db1fca4b1c8f36cf404f69d8ab2f Mon Sep 17 00:00:00 2001 From: taylorotwell Date: Tue, 19 Nov 2024 20:51:59 +0000 Subject: [PATCH 55/60] Update CHANGELOG --- CHANGELOG.md | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 8741855e..9506da79 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,14 @@ # Release Notes -## [Unreleased](https://github.com/laravel/laravel/compare/v11.3.2...11.x) +## [Unreleased](https://github.com/laravel/laravel/compare/v11.3.3...11.x) + +## [v11.3.3](https://github.com/laravel/laravel/compare/v11.3.2...v11.3.3) - 2024-11-18 + +* Inconsistency in Github action names by [@amirbabaeii](https://github.com/amirbabaeii) in https://github.com/laravel/laravel/pull/6478 +* Add schema property to enhance autocompletion for composer.json by [@octoper](https://github.com/octoper) in https://github.com/laravel/laravel/pull/6484 +* Update .gitignore by [@EmranMR](https://github.com/EmranMR) in https://github.com/laravel/laravel/pull/6486 +* [11.x] Bump framework version by [@PerryvanderMeer](https://github.com/PerryvanderMeer) in https://github.com/laravel/laravel/pull/6490 +* [11.x] match `HidesAttributes` docblocks by [@browner12](https://github.com/browner12) in https://github.com/laravel/laravel/pull/6495 ## [v11.3.2](https://github.com/laravel/laravel/compare/v11.3.1...v11.3.2) - 2024-10-21 From 8b67958f49054f3e6c9b61d2e0b0a1e5323f30f4 Mon Sep 17 00:00:00 2001 From: Pavel Date: Thu, 21 Nov 2024 16:54:46 +0200 Subject: [PATCH 56/60] Narrow down array types (#6497) --- app/Models/User.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/app/Models/User.php b/app/Models/User.php index 3dfbd80e..749c7b77 100644 --- a/app/Models/User.php +++ b/app/Models/User.php @@ -15,7 +15,7 @@ class User extends Authenticatable /** * The attributes that are mass assignable. * - * @var array + * @var list */ protected $fillable = [ 'name', @@ -26,7 +26,7 @@ class User extends Authenticatable /** * The attributes that should be hidden for serialization. * - * @var array + * @var list */ protected $hidden = [ 'password', From 0993d09dc8206d0933628074036427344be16fc5 Mon Sep 17 00:00:00 2001 From: Tim MacDonald Date: Tue, 3 Dec 2024 09:11:41 +1100 Subject: [PATCH 57/60] Upgrade to Vite 6 (#6498) --- package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package.json b/package.json index c38623a9..0d104724 100644 --- a/package.json +++ b/package.json @@ -12,6 +12,6 @@ "laravel-vite-plugin": "^1.0", "postcss": "^8.4.47", "tailwindcss": "^3.4.13", - "vite": "^5.0" + "vite": "^6.0" } } From a39cb7cf585798485e3876acf3c6e84ab3f64f1e Mon Sep 17 00:00:00 2001 From: taylorotwell Date: Tue, 10 Dec 2024 16:20:39 +0000 Subject: [PATCH 58/60] Update CHANGELOG --- CHANGELOG.md | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 9506da79..c084c0e7 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,11 @@ # Release Notes -## [Unreleased](https://github.com/laravel/laravel/compare/v11.3.3...11.x) +## [Unreleased](https://github.com/laravel/laravel/compare/v11.4.0...11.x) + +## [v11.4.0](https://github.com/laravel/laravel/compare/v11.3.3...v11.4.0) - 2024-12-02 + +* [11.x] Narrow down array types to lists by [@DvDty](https://github.com/DvDty) in https://github.com/laravel/laravel/pull/6497 +* Upgrade to Vite 6 by [@timacdonald](https://github.com/timacdonald) in https://github.com/laravel/laravel/pull/6498 ## [v11.3.3](https://github.com/laravel/laravel/compare/v11.3.2...v11.3.3) - 2024-11-18 From eb8085cf77bc5165d1af0b90bd9cdfb406d65299 Mon Sep 17 00:00:00 2001 From: Mior Muhammad Zaki Date: Fri, 13 Dec 2024 21:57:40 +0800 Subject: [PATCH 59/60] [11.x] Update `config/mail.php` with supported configuration (#6506) Signed-off-by: Mior Muhammad Zaki --- .env.example | 2 +- config/mail.php | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.env.example b/.env.example index a1b3de4c..6fb3de65 100644 --- a/.env.example +++ b/.env.example @@ -49,11 +49,11 @@ REDIS_PASSWORD=null REDIS_PORT=6379 MAIL_MAILER=log +MAIL_SCHEME=null MAIL_HOST=127.0.0.1 MAIL_PORT=2525 MAIL_USERNAME=null MAIL_PASSWORD=null -MAIL_ENCRYPTION=null MAIL_FROM_ADDRESS="hello@example.com" MAIL_FROM_NAME="${APP_NAME}" diff --git a/config/mail.php b/config/mail.php index df13d3df..756305b3 100644 --- a/config/mail.php +++ b/config/mail.php @@ -39,10 +39,10 @@ return [ 'smtp' => [ 'transport' => 'smtp', + 'scheme' => env('MAIL_SCHEME'), 'url' => env('MAIL_URL'), 'host' => env('MAIL_HOST', '127.0.0.1'), 'port' => env('MAIL_PORT', 2525), - 'encryption' => env('MAIL_ENCRYPTION', 'tls'), 'username' => env('MAIL_USERNAME'), 'password' => env('MAIL_PASSWORD'), 'timeout' => null, From 657070ea8a95ec269d0ed4c801cead04976a871a Mon Sep 17 00:00:00 2001 From: taylorotwell Date: Tue, 17 Dec 2024 18:27:38 +0000 Subject: [PATCH 60/60] Update CHANGELOG --- CHANGELOG.md | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index c084c0e7..88e0c187 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,10 @@ # Release Notes -## [Unreleased](https://github.com/laravel/laravel/compare/v11.4.0...11.x) +## [Unreleased](https://github.com/laravel/laravel/compare/v11.5.0...11.x) + +## [v11.5.0](https://github.com/laravel/laravel/compare/v11.4.0...v11.5.0) - 2024-12-13 + +* [11.x] Update `config/mail.php` with supported configuration by [@crynobone](https://github.com/crynobone) in https://github.com/laravel/laravel/pull/6506 ## [v11.4.0](https://github.com/laravel/laravel/compare/v11.3.3...v11.4.0) - 2024-12-02