From 07614796a332bcfeed35dddee9dbfc2f5487a39f Mon Sep 17 00:00:00 2001 From: Azure SDK Bot <53356347+azure-sdk@users.noreply.github.com> Date: Tue, 6 Apr 2021 14:31:48 -0700 Subject: [PATCH] Increment package version after release of azure-identity (#17844) --- sdk/identity/azure-identity/CHANGELOG.md | 29 ++++++++++--------- .../azure-identity/azure/identity/_version.py | 2 +- 2 files changed, 17 insertions(+), 14 deletions(-) diff --git a/sdk/identity/azure-identity/CHANGELOG.md b/sdk/identity/azure-identity/CHANGELOG.md index 8fd075192874..bdae0da3bbae 100644 --- a/sdk/identity/azure-identity/CHANGELOG.md +++ b/sdk/identity/azure-identity/CHANGELOG.md @@ -1,5 +1,8 @@ # Release History +## 1.6.0b4 (Unreleased) + + ## 1.6.0b3 (2021-04-06) ### Breaking Changes > These changes do not impact the API of stable versions such as 1.5.0. @@ -121,6 +124,12 @@ - Adopted msal-extensions 0.3.0 ([#13107](https://github.com/Azure/azure-sdk-for-python/issues/13107)) +## 1.4.1 (2020-10-07) +### Fixed +- `AzureCliCredential.get_token` correctly sets token expiration time, + preventing clients from using expired tokens + ([#14345](https://github.com/Azure/azure-sdk-for-python/issues/14345)) + ## 1.5.0b1 (2020-09-08) ### Added - Application authentication APIs from 1.4.0b7 @@ -150,12 +159,6 @@ - Removed `authentication_record` keyword argument from the async `SharedTokenCacheCredential`, i.e. `azure.identity.aio.SharedTokenCacheCredential` -## 1.4.1 (2020-10-07) -### Fixed -- `AzureCliCredential.get_token` correctly sets token expiration time, - preventing clients from using expired tokens - ([#14345](https://github.com/Azure/azure-sdk-for-python/issues/14345)) - ## 1.4.0 (2020-08-10) ### Added - `DefaultAzureCredential` uses the value of environment variable @@ -304,13 +307,6 @@ in the environment variable `AZURE_AUTHORITY_HOST`. See ([#8094](https://github.com/Azure/azure-sdk-for-python/issues/8094)) -## 1.4.0b1 (2020-03-10) -- `DefaultAzureCredential` can now authenticate using the identity logged in to -the Azure CLI, unless explicitly disabled with a keyword argument: -`DefaultAzureCredential(exclude_cli_credential=True)` -([#10092](https://github.com/Azure/azure-sdk-for-python/pull/10092)) - - ## 1.3.1 (2020-03-30) - `ManagedIdentityCredential` raises `CredentialUnavailableError` when no @@ -319,6 +315,13 @@ identity is configured for an IMDS endpoint. This causes ([#10488](https://github.com/Azure/azure-sdk-for-python/issues/10488)) +## 1.4.0b1 (2020-03-10) +- `DefaultAzureCredential` can now authenticate using the identity logged in to +the Azure CLI, unless explicitly disabled with a keyword argument: +`DefaultAzureCredential(exclude_cli_credential=True)` +([#10092](https://github.com/Azure/azure-sdk-for-python/pull/10092)) + + ## 1.3.0 (2020-02-11) - Correctly parse token expiration time on Windows App Service diff --git a/sdk/identity/azure-identity/azure/identity/_version.py b/sdk/identity/azure-identity/azure/identity/_version.py index 2bfba3b08e31..92ad66ed1b77 100644 --- a/sdk/identity/azure-identity/azure/identity/_version.py +++ b/sdk/identity/azure-identity/azure/identity/_version.py @@ -2,4 +2,4 @@ # Copyright (c) Microsoft Corporation. # Licensed under the MIT License. # ------------------------------------ -VERSION = "1.6.0b3" +VERSION = "1.6.0b4"