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 29 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
29 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
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;
hafezdivandari marked this conversation as resolved.
Show resolved Hide resolved
}

/**
Expand Down