Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[13.x] Release Passport 13.x #1797

Draft
wants to merge 55 commits into
base: 13.x
Choose a base branch
from
Draft
Show file tree
Hide file tree
Changes from 1 commit
Commits
Show all changes
55 commits
Select commit Hold shift + click to select a range
b63a429
fix some types
hafezdivandari Oct 13, 2024
6067321
switch to uuid v7
hafezdivandari Oct 13, 2024
9ed8646
fix types
hafezdivandari Oct 13, 2024
e254441
improve tests
hafezdivandari Oct 13, 2024
1d12f5f
formatting
hafezdivandari Oct 15, 2024
6c0837c
add more tests
hafezdivandari Oct 15, 2024
32b8e8f
add more tests
hafezdivandari Oct 15, 2024
91cc26a
formatting
hafezdivandari Oct 17, 2024
2567f7b
formatting
hafezdivandari Oct 17, 2024
a9a3916
fix some types
hafezdivandari Oct 17, 2024
dfbdaa0
require Laravel 11.7 for uuid v7
hafezdivandari Oct 17, 2024
74b48a2
add more tests
hafezdivandari Oct 19, 2024
b8bfc87
enhance issuing PATs
hafezdivandari Oct 26, 2024
0c79897
add support for PHP 8.4
hafezdivandari Oct 28, 2024
6e0686e
formatting
hafezdivandari Oct 29, 2024
72451d2
remove unused trait
hafezdivandari Oct 30, 2024
b4c1bba
formatting
hafezdivandari Oct 31, 2024
fece76e
add guard name to authentication exception
hafezdivandari Nov 6, 2024
c059b92
formatting
hafezdivandari Nov 17, 2024
1e99e8e
add client grant_types attribute
hafezdivandari Nov 19, 2024
7b597d4
remove lcobucci/jwt
hafezdivandari Nov 22, 2024
ca016b9
fix cookie jwt
hafezdivandari Nov 23, 2024
d7f42dd
fix tests with notices
hafezdivandari Nov 23, 2024
8131d9e
make tests more strict
hafezdivandari Nov 24, 2024
67fde5f
bump dependencies
hafezdivandari Nov 24, 2024
1e79f26
wip
hafezdivandari Dec 10, 2024
46e0591
better naming
hafezdivandari Dec 11, 2024
ebf4318
formatting
hafezdivandari Dec 11, 2024
cc4c874
enable psr auto-discovery
hafezdivandari Dec 12, 2024
342134b
use uuid7 trait on client model
hafezdivandari Dec 14, 2024
8ac48d1
better naming
hafezdivandari Dec 14, 2024
3c2f61c
formatting
hafezdivandari Dec 17, 2024
78615c9
formatting
hafezdivandari Jan 6, 2025
3e75d11
support Laravel 12.x
hafezdivandari Jan 30, 2025
06d02f0
formatting
hafezdivandari Feb 8, 2025
2e93968
add more tests
hafezdivandari Feb 8, 2025
5151fbc
formatting
hafezdivandari Feb 15, 2025
2349573
formatting
hafezdivandari Feb 15, 2025
2fbd5a4
formatting
hafezdivandari Feb 15, 2025
118cae2
formatting
hafezdivandari Feb 18, 2025
89b005a
Merge branch '13.x' into 13.x-pre-release
hafezdivandari Feb 19, 2025
cb58c94
Merge branch '13.x' into 13.x-pre-release
hafezdivandari Feb 20, 2025
0878844
bump phpunit
hafezdivandari Feb 20, 2025
989b29f
formatting
hafezdivandari Feb 22, 2025
1718047
formatting
hafezdivandari Feb 22, 2025
7d5987f
revert renaming csrf claim into jti
hafezdivandari Feb 24, 2025
a2c304c
add 2 interfaces
hafezdivandari Feb 25, 2025
68881bb
fix HasUuid trait
hafezdivandari Feb 25, 2025
b40461a
formatting
hafezdivandari Feb 25, 2025
1254b84
fix tests
hafezdivandari Feb 26, 2025
3e87639
revert irrelevant style fix
hafezdivandari Feb 26, 2025
5fa36a5
deprecate `HasApiTokens::clients()` method
hafezdivandari Feb 27, 2025
327c596
rename interface to `OAuthenticatable`
hafezdivandari Feb 27, 2025
6ce668c
formatting
hafezdivandari Feb 28, 2025
4e55ae6
rename interface to `ScopeAuthorizable`
hafezdivandari Mar 1, 2025
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
18 changes: 9 additions & 9 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -18,15 +18,15 @@
"ext-json": "*",
"ext-openssl": "*",
"firebase/php-jwt": "^6.4",
"illuminate/auth": "^11.14",
"illuminate/console": "^11.14",
"illuminate/container": "^11.14",
"illuminate/contracts": "^11.14",
"illuminate/cookie": "^11.14",
"illuminate/database": "^11.14",
"illuminate/encryption": "^11.14",
"illuminate/http": "^11.14",
"illuminate/support": "^11.14",
"illuminate/auth": "^11.17",
"illuminate/console": "^11.17",
"illuminate/container": "^11.17",
"illuminate/contracts": "^11.17",
"illuminate/cookie": "^11.17",
"illuminate/database": "^11.17",
"illuminate/encryption": "^11.17",
"illuminate/http": "^11.17",
"illuminate/support": "^11.17",
"lcobucci/jwt": "^5.0",
"league/oauth2-server": "^9.0",
"nyholm/psr7": "^1.5",
Expand Down
2 changes: 1 addition & 1 deletion src/Client.php
Original file line number Diff line number Diff line change
Expand Up @@ -214,7 +214,7 @@ public function uniqueIds(): array
*/
public function newUniqueId(): ?string
{
return $this->usesUniqueIds ? (string) Str::orderedUuid() : null;
return $this->usesUniqueIds ? (string) Str::uuid7() : null;
}

/**
Expand Down