You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: UPGRADE.md
+19Lines changed: 19 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -103,6 +103,25 @@ The JSON API provided by Passport has been deprecated. If you need to continue u
103
103
Passport::$registersJsonApiRoutes = true;
104
104
}
105
105
106
+
### Key Files Permissions Validation
107
+
108
+
PR: https://github.com/laravel/passport/pull/1789
109
+
110
+
Passport now validates the permissions of key files on supported operating systems. If you encounter an exception indicating incorrect permissions, you can fix it by running the following code once:
Alternatively, you may disable this validation entirely (not recommended) by setting `Passport::$validateKeyPermissions` to `false` within the `boot` method of your application’s `App\Providers\AppServiceProvider` class:
0 commit comments