From bdd61ef5eb38fe90914315a28d0c412a4347ebd8 Mon Sep 17 00:00:00 2001 From: driesvints Date: Thu, 16 Feb 2023 10:04:00 +0000 Subject: [PATCH 1/6] Update CHANGELOG --- CHANGELOG.md | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 6810ce1b..8c536600 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,11 @@ # Release Notes -## [Unreleased](https://github.com/laravel/laravel/compare/v10.0.0...10.x) +## [Unreleased](https://github.com/laravel/laravel/compare/v10.0.1...10.x) + +## [v10.0.1](https://github.com/laravel/laravel/compare/v10.0.0...v10.0.1) - 2023-02-15 + +- Add PHPUnit result cache to gitignore by @itxshakil in https://github.com/laravel/laravel/pull/6105 +- Allow php-http/discovery as a composer plugin by @nicolas-grekas in https://github.com/laravel/laravel/pull/6106 ## [v10.0.0 (2022-02-14)](https://github.com/laravel/laravel/compare/v9.5.2...v10.0.0) From 3986d4c54041fd27af36f96cf11bd79ce7b1ee4e Mon Sep 17 00:00:00 2001 From: Taylor Otwell Date: Thu, 16 Feb 2023 13:38:09 -0600 Subject: [PATCH 2/6] remove unneeded call --- app/Providers/AuthServiceProvider.php | 2 -- 1 file changed, 2 deletions(-) diff --git a/app/Providers/AuthServiceProvider.php b/app/Providers/AuthServiceProvider.php index 5522aa2f..dafcbee7 100644 --- a/app/Providers/AuthServiceProvider.php +++ b/app/Providers/AuthServiceProvider.php @@ -21,8 +21,6 @@ class AuthServiceProvider extends ServiceProvider */ public function boot(): void { - $this->registerPolicies(); - // } } From 4ca1a394f48ab695bedeb49ead619172a64cd281 Mon Sep 17 00:00:00 2001 From: taylorotwell Date: Thu, 16 Feb 2023 19:40:10 +0000 Subject: [PATCH 3/6] Update CHANGELOG --- CHANGELOG.md | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 8c536600..d9b409b9 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,8 @@ # Release Notes -## [Unreleased](https://github.com/laravel/laravel/compare/v10.0.1...10.x) +## [Unreleased](https://github.com/laravel/laravel/compare/v10.0.2...10.x) + +## [v10.0.2](https://github.com/laravel/laravel/compare/v10.0.1...v10.0.2) - 2023-02-16 ## [v10.0.1](https://github.com/laravel/laravel/compare/v10.0.0...v10.0.1) - 2023-02-15 From c909b037ae296a77d935005c554ffa145646eea7 Mon Sep 17 00:00:00 2001 From: Jonathan Goode Date: Fri, 17 Feb 2023 07:47:16 +0000 Subject: [PATCH 4/6] Missing comma (#6111) --- config/mail.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/config/mail.php b/config/mail.php index 275a3c64..542d98c3 100644 --- a/config/mail.php +++ b/config/mail.php @@ -28,7 +28,7 @@ | sending an e-mail. You will specify which one you are using for your | mailers below. You are free to add additional mailers as required. | - | Supported: "smtp", "sendmail", "mailgun", "ses", "ses-v2" + | Supported: "smtp", "sendmail", "mailgun", "ses", "ses-v2", | "postmark", "log", "array", "failover" | */ From a1ef009415003fe981fc0f4a60ce9c4faf35f9f1 Mon Sep 17 00:00:00 2001 From: Ankur Kumar Date: Fri, 17 Feb 2023 20:08:29 +0530 Subject: [PATCH 5/6] add ses-v2 mailer in config (#6112) --- config/mail.php | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/config/mail.php b/config/mail.php index 542d98c3..b794f76c 100644 --- a/config/mail.php +++ b/config/mail.php @@ -49,6 +49,10 @@ 'transport' => 'ses', ], + 'ses-v2' => [ + 'transport' => 'ses-v2', + ], + 'mailgun' => [ 'transport' => 'mailgun', // 'client' => [ From 1bb530c6090fdc58aace03cf8eb382574bec8b2f Mon Sep 17 00:00:00 2001 From: Taylor Otwell Date: Fri, 17 Feb 2023 08:38:44 -0600 Subject: [PATCH 6/6] Revert "add ses-v2 mailer in config (#6112)" (#6115) This reverts commit a1ef009415003fe981fc0f4a60ce9c4faf35f9f1. --- config/mail.php | 4 ---- 1 file changed, 4 deletions(-) diff --git a/config/mail.php b/config/mail.php index b794f76c..542d98c3 100644 --- a/config/mail.php +++ b/config/mail.php @@ -49,10 +49,6 @@ 'transport' => 'ses', ], - 'ses-v2' => [ - 'transport' => 'ses-v2', - ], - 'mailgun' => [ 'transport' => 'mailgun', // 'client' => [