Skip to content

Commit b3659f7

Browse files
authored
Update (#19726)
1 parent ad93fce commit b3659f7

File tree

9 files changed

+12
-9
lines changed

9 files changed

+12
-9
lines changed

src/Accounts/Accounts/ChangeLog.md

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -19,12 +19,13 @@
1919
-->
2020

2121
## Upcoming Release
22-
* Supported tenant domain as input while using `Connect-AzAccount` with parameter `Tenant`. [#19471]
2322
* Upgraded Azure.Core to 1.25.0 and Azure.Identity to 1.6.1
23+
* Upgraded Microsoft.Identity.Client to 4.46.2 and Microsoft.Identity.Client.Extensions.Msal to 2.23.0
2424
* Upgraded Microsoft.ApplicationInsights to 2.13.1
25-
* Changed target framework of AuthenticationAssemblyLoadContext to netcoreapp3.1.
25+
* [Breaking Change] Changed target framework of AuthenticationAssemblyLoadContext to netcoreapp3.1.
26+
* [Breaking Change] Removed built-in environment of Azure Germany
27+
* Supported tenant domain as input while using `Connect-AzAccount` with parameter `Tenant`. [#19471]
2628
* Used the ArgumentCompleter attribute to replace the dynamic parameters of `Get-AzContext`. [#18041]
27-
* Removed built-in environment of Azure Germany
2829
* Fixed issue that module cannot be imported when required file is locked [#19624]
2930

3031
## Version 2.10.1

src/Accounts/Authentication/Authentication.csproj

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,8 @@
1313

1414
<ItemGroup>
1515
<PackageReference Include="Azure.Identity" Version="1.6.1" />
16+
<PackageReference Include="Microsoft.Identity.Client" Version="4.46.2" />
17+
<PackageReference Include="Microsoft.Identity.Client.Extensions.Msal" Version="2.23.0" />
1618
</ItemGroup>
1719

1820
<ItemGroup>

src/Accounts/Authentication/Utilities/CustomAssemblyResolver.cs

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -27,10 +27,10 @@ public static class CustomAssemblyResolver
2727
{"Azure.Core", new Version("1.25.0.0")},
2828
{"Azure.Identity", new Version("1.6.1.0")},
2929
{"Microsoft.Bcl.AsyncInterfaces", new Version("1.1.1.0")},
30-
{"Microsoft.Identity.Client", new Version("4.39.0.0") },
31-
{"Microsoft.Identity.Client.Extensions.Msal", new Version("2.19.3.0") },
32-
{"Microsoft.IdentityModel.Clients.ActiveDirectory", new Version("3.19.2.6005")},
33-
{"Microsoft.IdentityModel.Clients.ActiveDirectory.Platform", new Version("3.19.2.6005")},
30+
{"Microsoft.Identity.Client", new Version("4.46.2.0") },
31+
{"Microsoft.Identity.Client.Extensions.Msal", new Version("2.23.0.0") },
32+
{"Microsoft.IdentityModel.Abstractions", new Version("6.22.1.0") },
33+
3434
{"Newtonsoft.Json", new Version("10.0.0.0")},
3535
{"System.Buffers", new Version("4.0.3.0")},
3636
{"System.Diagnostics.DiagnosticSource", new Version("4.0.4.0")},

src/Accounts/AuthenticationAssemblyLoadContext/AzAssemblyLoadContextInitializer.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -34,8 +34,8 @@ static AzAssemblyLoadContextInitializer()
3434
{"Azure.Core", new Version("1.25.0.0")},
3535
{"Azure.Identity", new Version("1.6.1.0")},
3636
{"Microsoft.Bcl.AsyncInterfaces", new Version("1.1.1.0")},
37-
{"Microsoft.Identity.Client", new Version("4.39.0.0") },
38-
{"Microsoft.Identity.Client.Extensions.Msal", new Version("2.19.3.0") },
37+
{"Microsoft.Identity.Client", new Version("4.46.2.0") },
38+
{"Microsoft.Identity.Client.Extensions.Msal", new Version("2.23.0.0") },
3939
{"System.Memory.Data", new Version("1.0.2.0")},
4040
{"System.Text.Json", new Version("4.0.1.2")},
4141
};
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.

0 commit comments

Comments
 (0)