Azure.Identity_1.10.0-beta.1
Pre-release
Pre-release
1.10.0-beta.1 (2023-07-17)
Features Added
- Continuous Access Evaluation (CAE) is now configurable per-request by setting the
IsCaeEnabled
property ofTokenRequestContext
via its constructor. - Added
IsSupportLoggingEnabled
property toTokenCredentialOptions
which equates to passing 'true' for theenablePiiLogging
parameter to the 'WithLogging' method on the MSAL client builder.
Bugs Fixed
- Fixed an issue with
TokenCachePersistenceOptions
where credentials in the same process would share the same cache, even if they had different configured names. - ManagedIdentityCredential now ignores empty ClientId values. #37100
- ManagedIdentityCredential will no longer attempt to parse invalid json payloads on responses from the managed identity endpoint.
- When utilizing
EnvironmentCredential
fromDefaultAzureCredential
the credential will now override theTENANT_ID
environment value if the TenantId value is set inDefaultAzureCredentialOptions
.
Other Changes
- All developer credentials in the
DefaultAzureCredential
credential chain will fall through to the next credential in the chain on any failure. Previously, some exceptions would throwAuthenticationFailedException
, which stops further progress in the chain.