Skip to content

Commit bb73175

Browse files
authored
Prepare for October GA release (#46600)
1 parent e499bcc commit bb73175

File tree

2 files changed

+7
-7
lines changed

2 files changed

+7
-7
lines changed

sdk/identity/Azure.Identity/CHANGELOG.md

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,18 +1,20 @@
11
# Release History
22

3-
## 1.13.0-beta.3 (Unreleased)
3+
## 1.13.0 (2024-10-14)
44

55
### Features Added
6-
7-
### Breaking Changes
6+
- `ManagedIdentityCredential` now supports specifying a user-assigned managed identity by object ID.
87

98
### Bugs Fixed
109

10+
- If `DefaultAzureCredential` attempts to authenticate with the `MangagedIdentityCredential` and it receives either a failed response that is not json, it will now fall through to the next credential in the chain. [#45184](https://github.com/Azure/azure-sdk-for-net/issues/45184)
1111
- Fixed the request sent in `AzurePipelinesCredential` so it doesn't result in a redirect response when an invalid system access token is provided.
1212
- Updated to version 4.65.0 of Microsoft.Identity.Client to address a bug preventing the use of alternate authority types such as dStS ([4927](https://github.com/AzureAD/microsoft-authentication-library-for-dotnet/issues/4927)) .
1313

1414
### Other Changes
1515

16+
- The logging level passed to MSAL now correlates to the log level configured on your configured `AzureEventSourceListener`. Previously, the log level was always set to `Microsoft.Identity.Client.LogLevel.Info`.
17+
- `AzurePowerShellCredential` now utilizes the AsSecureString parameter to Get-AzAccessToken for version 2.17.0 and greater of the Az.Accounts module.
1618
- Improved error logging for `AzurePipelinesCredential`.
1719

1820
## 1.13.0-beta.2 (2024-09-17)

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

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
<PropertyGroup>
33
<Description>This is the implementation of the Azure SDK Client Library for Azure Identity</Description>
44
<AssemblyTitle>Microsoft Azure.Identity Component</AssemblyTitle>
5-
<Version>1.13.0-beta.3</Version>
5+
<Version>1.13.0</Version>
66
<!--The ApiCompatVersion is managed automatically and should not generally be modified manually.-->
77
<ApiCompatVersion>1.12.0</ApiCompatVersion>
88
<PackageTags>Microsoft Azure Identity;$(PackageCommonTags)</PackageTags>
@@ -19,9 +19,7 @@
1919
</When>
2020
</Choose>
2121
<ItemGroup>
22-
<!-- TODO: Revert after Azure.Core ships
23-
<PackageReference Include="Azure.Core" /> -->
24-
<ProjectReference Include="..\..\..\core\Azure.Core\src\Azure.Core.csproj" />
22+
<PackageReference Include="Azure.Core" />
2523
<PackageReference Include="System.Memory" />
2624
<PackageReference Include="System.Text.Json" />
2725
<PackageReference Include="System.Threading.Tasks.Extensions" />

0 commit comments

Comments
 (0)