Skip to content

Commit 2c6bbff

Browse files
authored
update Azure.Identity (#18083)
1 parent 3085904 commit 2c6bbff

15 files changed

+12
-10
lines changed

src/Accounts/Accounts/ChangeLog.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,7 @@
2020

2121
## Upcoming Release
2222
* Upgraded System.Reflection.DispatchProxy on Windows PowerShell [#17856]
23+
* Upgraded Azure.Identity to 1.6.0 and Azure.Core to 1.24.0
2324

2425
## Version 2.7.6
2526
* Upgraded Microsoft.Rest.ClientRuntime to 2.3.24

src/Accounts/Authentication/Authentication.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
</PropertyGroup>
1313

1414
<ItemGroup>
15-
<PackageReference Include="Azure.Identity" Version="1.5.0" />
15+
<PackageReference Include="Azure.Identity" Version="1.6.0" />
1616
</ItemGroup>
1717

1818
<ItemGroup>

src/Accounts/Authentication/Utilities/CustomAssemblyResolver.cs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -24,10 +24,10 @@ public static class CustomAssemblyResolver
2424
private static IDictionary<string, Version> NetFxPreloadAssemblies =
2525
new Dictionary<string, Version>(StringComparer.InvariantCultureIgnoreCase)
2626
{
27-
{"Azure.Core", new Version("1.22.0.0")},
27+
{"Azure.Core", new Version("1.24.0.0")},
2828
{"Microsoft.Bcl.AsyncInterfaces", new Version("1.1.1.0")},
29-
{"Microsoft.Identity.Client", new Version("4.30.1.0") },
30-
{"Microsoft.Identity.Client.Extensions.Msal", new Version("2.18.4.0") },
29+
{"Microsoft.Identity.Client", new Version("4.39.0.0") },
30+
{"Microsoft.Identity.Client.Extensions.Msal", new Version("2.19.3.0") },
3131
{"Microsoft.IdentityModel.Clients.ActiveDirectory", new Version("3.19.2.6005")},
3232
{"Microsoft.IdentityModel.Clients.ActiveDirectory.Platform", new Version("3.19.2.6005")},
3333
{"Newtonsoft.Json", new Version("10.0.0.0")},

src/Accounts/AuthenticationAssemblyLoadContext/AzAssemblyLoadContextInitializer.cs

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -31,11 +31,11 @@ static AzAssemblyLoadContextInitializer()
3131
//TODO: Generate assembly version info into AzSharedAssemblies.json during build
3232
var azSharedAssemblies = new Dictionary<string, Version>()
3333
{
34-
{"Azure.Core", new Version("1.22.0.0")},
35-
{"Azure.Identity", new Version("1.5.0.0")},
34+
{"Azure.Core", new Version("1.24.0.0")},
35+
{"Azure.Identity", new Version("1.6.0.0")},
3636
{"Microsoft.Bcl.AsyncInterfaces", new Version("1.1.1.0")},
37-
{"Microsoft.Identity.Client", new Version("4.30.1.0") },
38-
{"Microsoft.Identity.Client.Extensions.Msal", new Version("2.18.4.0") },
37+
{"Microsoft.Identity.Client", new Version("4.39.0.0") },
38+
{"Microsoft.Identity.Client.Extensions.Msal", new Version("2.19.3.0") },
3939
{"System.Memory.Data", new Version("1.0.2.0")},
4040
{"System.Text.Json", new Version("4.0.1.2")},
4141
};

src/Accounts/Authenticators/Authenticators.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@
2323
</PropertyGroup>
2424

2525
<ItemGroup>
26-
<PackageReference Include="Azure.Identity" Version="1.5.0" />
26+
<PackageReference Include="Azure.Identity" Version="1.6.0" />
2727
</ItemGroup>
2828

2929
<ItemGroup>

src/Accounts/Authenticators/ClientAssertionAuthenticator.cs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -25,6 +25,7 @@
2525
using Microsoft.WindowsAzure.Commands.Common;
2626
using Microsoft.Identity.Client;
2727
using Microsoft.Azure.PowerShell.Authenticators.Identity;
28+
using ClientAssertionCredential = Microsoft.Azure.PowerShell.Authenticators.Identity.ClientAssertionCredential;
2829

2930
namespace Microsoft.Azure.PowerShell.Authenticators
3031
{
14.5 KB
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
15.5 KB
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.

tools/Common.Netcore.Dependencies.targets

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121
<PackageReference Include="Microsoft.Azure.PowerShell.Common.Share" Version="1.3.57-preview"/>
2222
</ItemGroup>
2323
<ItemGroup>
24-
<PackageReference Include="Azure.Core" Version="1.22.0"/>
24+
<PackageReference Include="Azure.Core" Version="1.24.0"/>
2525
</ItemGroup>
2626
<ItemGroup Condition="'$(IsTestProject)' != 'true'">
2727
<PackageReference Include="Microsoft.ApplicationInsights" Version="2.12.0">

0 commit comments

Comments
 (0)