Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prepare for October GA release
  • Loading branch information
christothes committed Oct 14, 2024
commit 9a0d9b0bf427beeaf6b1656ac6101d5f53701efc
8 changes: 5 additions & 3 deletions sdk/identity/Azure.Identity/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,18 +1,20 @@
# Release History

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

### Features Added

### Breaking Changes
- `ManagedIdentityCredential` now supports specifying a user-assigned managed identity by object ID.

### Bugs Fixed

- 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)
- Fixed the request sent in `AzurePipelinesCredential` so it doesn't result in a redirect response when an invalid system access token is provided.
- 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)) .

### Other Changes

- 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`.
- `AzurePowerShellCredential` now utilizes the AsSecureString parameter to Get-AzAccessToken for version 2.17.0 and greater of the Az.Accounts module.
- Improved error logging for `AzurePipelinesCredential`.

## 1.13.0-beta.2 (2024-09-17)
Expand Down
6 changes: 2 additions & 4 deletions sdk/identity/Azure.Identity/src/Azure.Identity.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
<PropertyGroup>
<Description>This is the implementation of the Azure SDK Client Library for Azure Identity</Description>
<AssemblyTitle>Microsoft Azure.Identity Component</AssemblyTitle>
<Version>1.13.0-beta.3</Version>
<Version>1.13.0</Version>
<!--The ApiCompatVersion is managed automatically and should not generally be modified manually.-->
<ApiCompatVersion>1.12.0</ApiCompatVersion>
<PackageTags>Microsoft Azure Identity;$(PackageCommonTags)</PackageTags>
Expand All @@ -19,9 +19,7 @@
</When>
</Choose>
<ItemGroup>
<!-- TODO: Revert after Azure.Core ships
<PackageReference Include="Azure.Core" /> -->
<ProjectReference Include="..\..\..\core\Azure.Core\src\Azure.Core.csproj" />
<PackageReference Include="Azure.Core" />
<PackageReference Include="System.Memory" />
<PackageReference Include="System.Text.Json" />
<PackageReference Include="System.Threading.Tasks.Extensions" />
Expand Down