-
Notifications
You must be signed in to change notification settings - Fork 780
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] Make client RFC compatible #1744
Merged
taylorotwell
merged 31 commits into
laravel:13.x
from
hafezdivandari:13.x-refactor-client
Aug 5, 2024
Merged
Changes from all commits
Commits
Show all changes
31 commits
Select commit
Hold shift + click to select a range
3563bc2
make client RFC compatible
hafezdivandari a521a78
formatting
hafezdivandari e906821
drop support for Laravel 9
hafezdivandari 7b33d5d
update upgrade guide
hafezdivandari 45c5143
Merge branch '13.x' into 13.x-refactor-client
hafezdivandari 5bca853
wip
hafezdivandari 7d7addc
Merge branch '13.x' into 13.x-refactor-client
hafezdivandari 38a36be
Merge branch '13.x' into 13.x-refactor-client
hafezdivandari aae97b1
Merge branch '13.x' into 13.x-refactor-client
hafezdivandari da3edf0
revert some changes
hafezdivandari 676b43c
Merge branch '13.x' into 13.x-refactor-client
hafezdivandari d8e89ca
fix tests
hafezdivandari 3c66423
wip
hafezdivandari e4931d5
fix tests
hafezdivandari 2784abf
wip
hafezdivandari 7edb0ef
wip
hafezdivandari 14df618
wip
hafezdivandari 82bc8da
wip
hafezdivandari baa6395
wip
hafezdivandari a579f4f
wip
hafezdivandari 5c7944a
wip
hafezdivandari 1149e9c
wip
hafezdivandari 405d559
formatting
hafezdivandari 1fc5d18
formatting
hafezdivandari 407082f
formatting
hafezdivandari dfdec66
wip
hafezdivandari 7235890
revert unrelated changes
hafezdivandari d3136c4
fix backward compatibility
hafezdivandari 6aeb388
formatting
hafezdivandari 86694ee
fix bc on update
hafezdivandari bf7ce0d
add tests for clients without grant_types
hafezdivandari File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
How about using a config option, instead of querying the column details?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Also thought about a new config option, but it seems to be redundant when we can easily check for existing columns?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
It would save one query. But I will leave that decision to you / the Laravel Team.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Yeah but client creation / updating doesn't happen frequently. Lets see what maintainers decide.