|
| 1 | +diff --git a/.gitignore b/.gitignore |
| 2 | +index e6bbd7ae..3cb7c776 100644 |
| 3 | +--- a/.gitignore |
| 4 | ++++ b/.gitignore |
| 5 | +@@ -13,6 +13,7 @@ Homestead.yaml |
| 6 | + auth.json |
| 7 | + npm-debug.log |
| 8 | + yarn-error.log |
| 9 | ++.phpunit.result.cache |
| 10 | + /.fleet |
| 11 | + /.idea |
| 12 | + /.vscode |
| 13 | +diff --git a/CHANGELOG.md b/CHANGELOG.md |
| 14 | +index a08dfc8a..8c536600 100644 |
| 15 | +--- a/CHANGELOG.md |
| 16 | ++++ b/CHANGELOG.md |
| 17 | +@@ -1,7 +1,12 @@ |
| 18 | + # Release Notes |
| 19 | + |
| 20 | +-## [Unreleased](https://github.com/laravel/laravel/compare/v9.5.1...10.x) |
| 21 | ++## [Unreleased](https://github.com/laravel/laravel/compare/v10.0.1...10.x) |
| 22 | + |
| 23 | +-## [v10.0.0 (2022-02-07)](https://github.com/laravel/laravel/compare/v9.5.1...10.x) |
| 24 | ++## [v10.0.1](https://github.com/laravel/laravel/compare/v10.0.0...v10.0.1) - 2023-02-15 |
| 25 | ++ |
| 26 | ++- Add PHPUnit result cache to gitignore by @itxshakil in https://github.com/laravel/laravel/pull/6105 |
| 27 | ++- Allow php-http/discovery as a composer plugin by @nicolas-grekas in https://github.com/laravel/laravel/pull/6106 |
| 28 | ++ |
| 29 | ++## [v10.0.0 (2022-02-14)](https://github.com/laravel/laravel/compare/v9.5.2...v10.0.0) |
| 30 | + |
| 31 | + Laravel 10 includes a variety of changes to the application skeleton. Please consult the diff to see what's new. |
| 32 | +diff --git a/app/Providers/AuthServiceProvider.php b/app/Providers/AuthServiceProvider.php |
| 33 | +index 5522aa2f..dafcbee7 100644 |
| 34 | +--- a/app/Providers/AuthServiceProvider.php |
| 35 | ++++ b/app/Providers/AuthServiceProvider.php |
| 36 | +@@ -21,8 +21,6 @@ class AuthServiceProvider extends ServiceProvider |
| 37 | + */ |
| 38 | + public function boot(): void |
| 39 | + { |
| 40 | +- $this->registerPolicies(); |
| 41 | +- |
| 42 | + // |
| 43 | + } |
| 44 | + } |
| 45 | +diff --git a/composer.json b/composer.json |
| 46 | +index 5b40f87c..4958668f 100644 |
| 47 | +--- a/composer.json |
| 48 | ++++ b/composer.json |
| 49 | +@@ -48,9 +48,6 @@ |
| 50 | + ] |
| 51 | + }, |
| 52 | + "extra": { |
| 53 | +- "branch-alias": { |
| 54 | +- "dev-master": "10.x-dev" |
| 55 | +- }, |
| 56 | + "laravel": { |
| 57 | + "dont-discover": [] |
| 58 | + } |
| 59 | +@@ -60,7 +57,8 @@ |
| 60 | + "preferred-install": "dist", |
| 61 | + "sort-packages": true, |
| 62 | + "allow-plugins": { |
| 63 | +- "pestphp/pest-plugin": true |
| 64 | ++ "pestphp/pest-plugin": true, |
| 65 | ++ "php-http/discovery": true |
| 66 | + } |
| 67 | + }, |
| 68 | + "minimum-stability": "stable", |
| 69 | +diff --git a/config/mail.php b/config/mail.php |
| 70 | +index 049052ff..275a3c64 100644 |
| 71 | +--- a/config/mail.php |
| 72 | ++++ b/config/mail.php |
| 73 | +@@ -28,7 +28,7 @@ return [ |
| 74 | + | sending an e-mail. You will specify which one you are using for your |
| 75 | + | mailers below. You are free to add additional mailers as required. |
| 76 | + | |
| 77 | +- | Supported: "smtp", "sendmail", "mailgun", "ses", |
| 78 | ++ | Supported: "smtp", "sendmail", "mailgun", "ses", "ses-v2" |
| 79 | + | "postmark", "log", "array", "failover" |
| 80 | + | |
| 81 | + */ |
0 commit comments