From 1262fb99787d1adcddce91ef4b7753c335278913 Mon Sep 17 00:00:00 2001 From: Dries Vints Date: Tue, 8 Sep 2020 16:39:41 +0200 Subject: [PATCH 1/2] Update README.md --- UPGRADE.md | 22 ++++++++++++++++++++-- 1 file changed, 20 insertions(+), 2 deletions(-) diff --git a/UPGRADE.md b/UPGRADE.md index d352d8363..9e9867b6c 100644 --- a/UPGRADE.md +++ b/UPGRADE.md @@ -6,7 +6,25 @@ After updating Passport, you should always re-publish and re-compile the Vue "qu php artisan vendor:publish --tag=passport-views --force -## Upgrading To 9.0 From 8.0 +## Upgrading To 10.0 From 9.x + +### Minimum PHP Version + +PHP 7.3 is now the minimum required version. + +### Minimum Laravel Version + +Laravel 8.0 is now the minimum required version. + +### Old Static Personal Client Methods Removed + +PR: https://github.com/laravel/passport/pull/1325 + +The old static personal client methods have been removed since they were redundant. Remove these from your `AuthServiceProvider`. + + + +## Upgrading To 9.0 From 8.x ### Support For Multiple Guards @@ -67,7 +85,7 @@ PR: https://github.com/laravel/passport/pull/1235 The deprecated `revokeOtherTokens` and `pruneRevokedTokens` methods and the `revokeOtherTokens` and `pruneRevokedTokens` properties were removed from the `Passport` object. -## Upgrading To 8.0 From 7.0 +## Upgrading To 8.0 From 7.x ### Minimum & Upgraded Versions From 8f9699228a8fac71004eba1846416a7a88e391fb Mon Sep 17 00:00:00 2001 From: Taylor Otwell Date: Tue, 8 Sep 2020 09:43:42 -0500 Subject: [PATCH 2/2] Update UPGRADE.md --- UPGRADE.md | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/UPGRADE.md b/UPGRADE.md index 9e9867b6c..e9e179b91 100644 --- a/UPGRADE.md +++ b/UPGRADE.md @@ -20,9 +20,7 @@ Laravel 8.0 is now the minimum required version. PR: https://github.com/laravel/passport/pull/1325 -The old static personal client methods have been removed since they were redundant. Remove these from your `AuthServiceProvider`. - - +The personal client configuration methods have been removed from the `Passport` class since they are no longer necessary. You should remove calls to these methods from your `AuthServiceProvider`. ## Upgrading To 9.0 From 8.x