Skip to content

Commit 26adf68

Browse files
authored
[Identity] Prepare 1.14.2 patch (Azure#51194)
1 parent 6b874cd commit 26adf68

File tree

4 files changed

+7
-4
lines changed

4 files changed

+7
-4
lines changed

sdk/identity/Azure.Identity/CHANGELOG.md

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# Release History
22

3-
## 1.15.0-beta.1 (Unreleased)
3+
## 1.15.0-beta.1
44

55
### Features Added
66
- Expanded the set of acceptable values for environment variable `AZURE_TOKEN_CREDENTIALS` to allow for selection of a specific credential in the `DefaultAzureCredential` chain. The valid values now include any of the credential names available in the default chain (`VisualStudioCredential`, `VisualStudioCodeCredential`, `AzureCliCredential`, `AzurePowerShellCredential`, `AzureDeveloperCliCredential`, `EnvironmentCredential`, `WorkloadIdentityCredential`, `ManagedIdentityCredential`, `InteractiveBrowserCredential`, or `BrokerAuthenticationCredential`.) **Note:** `BrokerAuthenticationCredential` requires that the project include a reference to package Azure.Identity.Broker.
@@ -17,6 +17,11 @@
1717
- `VisualStudioCredential` throws `CredentialUnavailableException` for all failures except for OperationCancelledException due to cancellation being requested for a `CancellationToken`. This ensures that it falls through for most failures when part of a chained credential.
1818
- Removed `AzureApplicationCredential`. For context, see issue [49781](https://github.com/Azure/azure-sdk-for-net/issues/49781).
1919

20+
## 1.14.2 (2025-07-10)
21+
22+
### Other changes
23+
- Updated `Microsoft.Identity.Client` dependency to version 4.73.1
24+
2025
## 1.14.1 (2025-06-24)
2126

2227
### Bugs Fixed

sdk/identity/Azure.Identity/api/Azure.Identity.net8.0.cs

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -201,7 +201,6 @@ public DefaultAzureCredentialOptions() { }
201201
public bool ExcludeAzureCliCredential { get { throw null; } set { } }
202202
public bool ExcludeAzureDeveloperCliCredential { get { throw null; } set { } }
203203
public bool ExcludeAzurePowerShellCredential { get { throw null; } set { } }
204-
public bool ExcludeBrokerCredential { get { throw null; } set { } }
205204
public bool ExcludeEnvironmentCredential { get { throw null; } set { } }
206205
public bool ExcludeInteractiveBrowserCredential { get { throw null; } set { } }
207206
public bool ExcludeManagedIdentityCredential { get { throw null; } set { } }

sdk/identity/Azure.Identity/api/Azure.Identity.netstandard2.0.cs

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -198,7 +198,6 @@ public DefaultAzureCredentialOptions() { }
198198
public bool ExcludeAzureCliCredential { get { throw null; } set { } }
199199
public bool ExcludeAzureDeveloperCliCredential { get { throw null; } set { } }
200200
public bool ExcludeAzurePowerShellCredential { get { throw null; } set { } }
201-
public bool ExcludeBrokerCredential { get { throw null; } set { } }
202201
public bool ExcludeEnvironmentCredential { get { throw null; } set { } }
203202
public bool ExcludeInteractiveBrowserCredential { get { throw null; } set { } }
204203
public bool ExcludeManagedIdentityCredential { get { throw null; } set { } }

sdk/identity/Azure.Identity/src/Azure.Identity.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
<PropertyGroup>
33
<Description>Provides APIs for authenticating to Microsoft Entra ID</Description>
44
<AssemblyTitle>Microsoft Azure.Identity Component</AssemblyTitle>
5-
<Version>1.15.0-beta.1</Version>
5+
<Version>1.14.2</Version>
66
<!--The ApiCompatVersion is managed automatically and should not generally be modified manually.-->
77
<ApiCompatVersion>1.14.1</ApiCompatVersion>
88
<PackageTags>Microsoft Azure Identity;$(PackageCommonTags)</PackageTags>

0 commit comments

Comments
 (0)