-
Notifications
You must be signed in to change notification settings - Fork 16
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Update Authlib and pass verify flag downstream (#46)
- Loading branch information
Adrian Gonzalez-Martin
committed
Nov 1, 2022
1 parent
c54dec9
commit f3d59d2
Showing
9 changed files
with
43 additions
and
35 deletions.
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
Authlib | ||
0.15.5 | ||
1.0.1 | ||
BSD License | ||
BSD 3-Clause License | ||
|
||
|
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,10 +1,10 @@ | ||
"Name","Version","License" | ||
"Authlib","0.15.5","BSD License" | ||
"certifi","2022.6.15","Mozilla Public License 2.0 (MPL 2.0)" | ||
"Authlib","1.0.1","BSD License" | ||
"certifi","2022.9.24","Mozilla Public License 2.0 (MPL 2.0)" | ||
"cffi","1.15.1","MIT License" | ||
"cryptography","37.0.4","Apache Software License; BSD License" | ||
"cryptography","38.0.1","Apache Software License; BSD License" | ||
"pycparser","2.21","BSD License" | ||
"python-dateutil","2.8.2","Apache Software License; BSD License" | ||
"seldon-deploy-sdk","1.6.0","UNKNOWN" | ||
"seldon-deploy-sdk","2.0.0.dev0","UNKNOWN" | ||
"six","1.16.0","MIT License" | ||
"urllib3","1.26.12","MIT License" |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,5 @@ | ||
from .base import AuthMethod | ||
from .session import SessionAuthenticator | ||
from .openid import OIDCAuthenticator | ||
|
||
__all__ = ["SessionAuthenticator", "OIDCAuthenticator"] | ||
__all__ = ["AuthMethod", "SessionAuthenticator", "OIDCAuthenticator"] |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,5 @@ | ||
from .base import AuthMethod | ||
from .session import SessionAuthenticator | ||
from .openid import OIDCAuthenticator | ||
|
||
__all__ = ["SessionAuthenticator", "OIDCAuthenticator"] | ||
__all__ = ["AuthMethod", "SessionAuthenticator", "OIDCAuthenticator"] |
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