Skip to content

Commit 6c731eb

Browse files
committed
Merge branch '8.x'
2 parents bad28d2 + da53713 commit 6c731eb

File tree

1 file changed

+10
-0
lines changed

1 file changed

+10
-0
lines changed

UPGRADE.md

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,16 @@ Commit: https://github.com/laravel/passport/commit/97e3026790d953d7a67fe487e3077
88

99
The minimum Laravel version is now v6.0 and the minimum PHP version is now 7.2. The underlying `league/oauth2-server` has also been updated to v8.
1010

11+
### Public Clients
12+
13+
PR: https://github.com/laravel/passport/pull/1065
14+
15+
Passport now supports public clients and PCKE. To leverage this feature, you should update the the `secret` column of the `oauth_clients` table to be `nullable`. If you use Passport migrations this will be done automatically for you upon the next migration. Otherwise, you'll need to create the following migration and migrate manually:
16+
17+
Schema::table('oauth_clients', function (Blueprint $table) {
18+
$table->string('secret', 100)->nullable()->change();
19+
});
20+
1121
### Renderable Exceptions For OAuth Errors
1222

1323
PR: https://github.com/laravel/passport/pull/1066

0 commit comments

Comments
 (0)