-
Notifications
You must be signed in to change notification settings - Fork 48
Add auth extension handling #586
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
Merged
Changes from 7 commits
Commits
Show all changes
23 commits
Select commit
Hold shift + click to select a range
cb7f9b3
Add auth extension handling
scotttrinh 2267ade
Make verifier/challenge private
fantix 263cf26
black
fantix de7e0f1
Support Python 3.9
fantix 7e4853f
Fix logging
fantix a4b2d16
Extract client.check_connection()
fantix 1379d1b
refactor: drop pydantic and support blocking
fantix 2e353e0
Provide verify/reset URLs dynamically
fantix 4a80fdf
Fix bug in ensure_connected()
fantix 0deafbb
Fix urljoin bug
fantix 7cd2634
Fix pkce TokenData bug
fantix 9c007be
Fix SSLContext bug
fantix c39e92d
Merge branch 'master' into auth
fantix c5446e4
Merge branch 'master' into auth
scotttrinh 96f55bd
Merge remote-tracking branch 'origin/master' into auth
fantix b055185
Merge remote-tracking branch 'origin/master' into auth
fantix 2732159
Add BuiltinUI class (#626)
scotttrinh b46e023
Merge remote-tracking branch 'origin/master' into auth
fantix 2c4b589
Fix cqa
fantix 80895ee
Fix merge issue
fantix c3c31ef
Make it internal
fantix 24385e5
Fix cqa
fantix 743ae10
Use new-style license header for newly-added files
fantix 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 hidden or 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 hidden or 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 hidden or 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 hidden or 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,30 @@ | ||
# | ||
# This source file is part of the EdgeDB open source project. | ||
# | ||
# Copyright 2025-present MagicStack Inc. and the EdgeDB authors. | ||
# | ||
# Licensed under the Apache License, Version 2.0 (the "License"); | ||
# you may not use this file except in compliance with the License. | ||
# You may obtain a copy of the License at | ||
# | ||
# http://www.apache.org/licenses/LICENSE-2.0 | ||
# | ||
# Unless required by applicable law or agreed to in writing, software | ||
# distributed under the License is distributed on an "AS IS" BASIS, | ||
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
# See the License for the specific language governing permissions and | ||
# limitations under the License. | ||
# | ||
|
||
from . import email_password | ||
from .token_data import TokenData | ||
from .pkce import PKCE, generate_pkce, AsyncPKCE, generate_async_pkce | ||
|
||
__all__ = [ | ||
"email_password", | ||
"TokenData", | ||
"PKCE", | ||
"generate_pkce", | ||
"AsyncPKCE", | ||
"generate_async_pkce", | ||
] |
Oops, something went wrong.
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.
Uh oh!
There was an error while loading. Please reload this page.