github Azure/azure-sdk-for-python azure-identity_1.0.0b4

latest releases: azure-monitor-opentelemetry-exporter_1.0.0b25, azure-eventgrid_4.20.0b2, azure-mgmt-compute_31.0.0...
pre-release4 years ago

1.0.0b4 (2019-10-07)

New features:

  • AuthorizationCodeCredential authenticates with a previously obtained
    authorization code. See Azure Active Directory's
    authorization code documentation
    for more information about this authentication flow.
  • Multi-cloud support: client credentials accept the authority of an Azure Active
    Directory authentication endpoint as an authority keyword argument. Known
    authorities are defined in azure.identity.KnownAuthorities. The default
    authority is for Azure Public Cloud, login.microsoftonline.com
    (KnownAuthorities.AZURE_PUBLIC_CLOUD). An application running in Azure
    Government would use KnownAuthorities.AZURE_GOVERNMENT instead:
from azure.identity import DefaultAzureCredential, KnownAuthorities
credential = DefaultAzureCredential(authority=KnownAuthorities.AZURE_GOVERNMENT)

Breaking changes:

  • Removed client_secret parameter from InteractiveBrowserCredential

Fixes and improvements:

  • UsernamePasswordCredential correctly handles environment configuration with
    no tenant information (#7260)
  • user realm discovery requests are sent through credential pipelines
    (#7260)

Don't miss a new azure-sdk-for-python release

NewReleases is sending notifications on new releases.