Skip to content

Commit

Permalink
Prepare 1.26 release
Browse files Browse the repository at this point in the history
  • Loading branch information
rayluo committed Dec 5, 2023
1 parent 607e702 commit 35310b5
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions msal/application.py
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@


# The __init__.py will import this. Not the other way around.
__version__ = "1.25.0" # When releasing, also check and bump our dependencies's versions if needed
__version__ = "1.26.0" # When releasing, also check and bump our dependencies's versions if needed

logger = logging.getLogger(__name__)
_AUTHORITY_TYPE_CLOUDSHELL = "CLOUDSHELL"
Expand Down Expand Up @@ -2201,8 +2201,7 @@ def acquire_token_on_behalf_of(self, user_assertion, scopes, claims_challenge=No
"""
telemetry_context = self._build_telemetry_context(
self.ACQUIRE_TOKEN_ON_BEHALF_OF_ID)
# The implementation is NOT based on Token Exchange
# https://tools.ietf.org/html/draft-ietf-oauth-token-exchange-16
# The implementation is NOT based on Token Exchange (RFC 8693)
response = _clean_up(self.client.obtain_token_by_assertion( # bases on assertion RFC 7521
user_assertion,
self.client.GRANT_TYPE_JWT, # IDTs and AAD ATs are all JWTs
Expand Down

0 comments on commit 35310b5

Please sign in to comment.