Skip to content

Commit 35310b5

Browse files
committed
Prepare 1.26 release
1 parent 607e702 commit 35310b5

File tree

1 file changed

+2
-3
lines changed

1 file changed

+2
-3
lines changed

msal/application.py

+2-3
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@
2525

2626

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

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

0 commit comments

Comments
 (0)