mirror of
https://github.com/microsoft/onefuzz.git
synced 2025-06-23 14:57:06 +00:00
update azure-cli to 2.26.0 (#1045)
This commit is contained in:
@ -49,7 +49,7 @@ def parse_jwt_token(request: func.HttpRequest) -> Result[UserInfo]:
|
||||
)
|
||||
|
||||
# This token has already been verified by the azure authentication layer
|
||||
token = jwt.decode(token_str, verify=False)
|
||||
token = jwt.decode(token_str, options={"verify_signature": False})
|
||||
|
||||
application_id = UUID(token["appid"]) if "appid" in token else None
|
||||
object_id = UUID(token["oid"]) if "oid" in token else None
|
||||
|
@ -22,7 +22,7 @@ jinja2~=2.11.3
|
||||
msrestazure~=0.6.3
|
||||
opencensus-ext-azure~=1.0.2
|
||||
pydantic==1.8.2 --no-binary=pydantic
|
||||
PyJWT~=1.7.1
|
||||
PyJWT>=2.1.0
|
||||
requests~=2.25.1
|
||||
memoization~=0.3.1
|
||||
github3.py~=1.3.0
|
||||
|
@ -11,7 +11,7 @@ azure-storage-blob~=12.8
|
||||
azure-applicationinsights==0.1.0
|
||||
tenacity==6.3.1
|
||||
docstring_parser==0.7.3
|
||||
azure-cli-core==2.25.0
|
||||
azure-cli-core==2.26.0
|
||||
# urllib3[secure] needs to be specifically stated for azure-cli-core
|
||||
urllib3[secure]>=1.26.5
|
||||
# iDNA needs to be specifically stated for azure-cli-core
|
||||
@ -19,6 +19,6 @@ idna<3,>=2.5
|
||||
# cryptography needs to be pinned to the version used by azure-cli-core
|
||||
cryptography<3.4,>=3.2
|
||||
# PyJWT needs to be pinned to the version used by azure-cli-core
|
||||
pyjwt==1.7.1
|
||||
PyJWT>=2.1.0
|
||||
# onefuzztypes version is set during build
|
||||
onefuzztypes==0.0.0
|
||||
|
@ -1,13 +1,12 @@
|
||||
azure-cli-core==2.25.0
|
||||
azure-cli==2.25.0
|
||||
azure-cli-core==2.26.0
|
||||
azure-cli==2.26.0
|
||||
azure-cosmosdb-table==1.0.6
|
||||
azure-graphrbac==0.60.0
|
||||
azure-mgmt-eventgrid==9.0.0
|
||||
azure-mgmt-resource==18.0.0
|
||||
azure-mgmt-storage==18.0.0
|
||||
azure-storage-blob==12.5.0
|
||||
azure-storage-queue==12.1.3
|
||||
pyfunctional==1.4.2
|
||||
azure-storage-blob==12.8.1
|
||||
azure-storage-queue==12.1.6
|
||||
pyfunctional==1.4.3
|
||||
pyopenssl==19.1.0
|
||||
adal~=1.2.5
|
||||
idna==2.10
|
||||
idna<3,>=2.5
|
||||
|
Reference in New Issue
Block a user