Skip to content

MSAL Python 1.13.0

Compare
Choose a tag to compare
@rayluo rayluo released this 20 Jul 22:15
· 364 commits to main since this release
b82f0c0
  • New feature: MSAL supports a confidential client being authenticated by a pre-signed assertion. Usage:

    cca = ConfidentialClientApplication(
        ...,
        client_credential={"client_assertion": "...a JWT with claims aud, exp, iss, jti, nbf, and sub..."},
        ...)

    This can be useful for where the signing takes place externally for example using Azure Key Vault (AKV).
    AKV sample included (#161, #271).

  • Improvement: Skip unnecessary and repetitive region detection. (#372, #373)