Skip to content

Commit

Permalink
update Azure.Identity (Azure#18083)
Browse files Browse the repository at this point in the history
  • Loading branch information
dingmeng-xue authored May 11, 2022
1 parent 3085904 commit 2c6bbff
Show file tree
Hide file tree
Showing 15 changed files with 12 additions and 10 deletions.
1 change: 1 addition & 0 deletions src/Accounts/Accounts/ChangeLog.md
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,7 @@

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

## Version 2.7.6
* Upgraded Microsoft.Rest.ClientRuntime to 2.3.24
Expand Down
2 changes: 1 addition & 1 deletion src/Accounts/Authentication/Authentication.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
</PropertyGroup>

<ItemGroup>
<PackageReference Include="Azure.Identity" Version="1.5.0" />
<PackageReference Include="Azure.Identity" Version="1.6.0" />
</ItemGroup>

<ItemGroup>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -24,10 +24,10 @@ public static class CustomAssemblyResolver
private static IDictionary<string, Version> NetFxPreloadAssemblies =
new Dictionary<string, Version>(StringComparer.InvariantCultureIgnoreCase)
{
{"Azure.Core", new Version("1.22.0.0")},
{"Azure.Core", new Version("1.24.0.0")},
{"Microsoft.Bcl.AsyncInterfaces", new Version("1.1.1.0")},
{"Microsoft.Identity.Client", new Version("4.30.1.0") },
{"Microsoft.Identity.Client.Extensions.Msal", new Version("2.18.4.0") },
{"Microsoft.Identity.Client", new Version("4.39.0.0") },
{"Microsoft.Identity.Client.Extensions.Msal", new Version("2.19.3.0") },
{"Microsoft.IdentityModel.Clients.ActiveDirectory", new Version("3.19.2.6005")},
{"Microsoft.IdentityModel.Clients.ActiveDirectory.Platform", new Version("3.19.2.6005")},
{"Newtonsoft.Json", new Version("10.0.0.0")},
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -31,11 +31,11 @@ static AzAssemblyLoadContextInitializer()
//TODO: Generate assembly version info into AzSharedAssemblies.json during build
var azSharedAssemblies = new Dictionary<string, Version>()
{
{"Azure.Core", new Version("1.22.0.0")},
{"Azure.Identity", new Version("1.5.0.0")},
{"Azure.Core", new Version("1.24.0.0")},
{"Azure.Identity", new Version("1.6.0.0")},
{"Microsoft.Bcl.AsyncInterfaces", new Version("1.1.1.0")},
{"Microsoft.Identity.Client", new Version("4.30.1.0") },
{"Microsoft.Identity.Client.Extensions.Msal", new Version("2.18.4.0") },
{"Microsoft.Identity.Client", new Version("4.39.0.0") },
{"Microsoft.Identity.Client.Extensions.Msal", new Version("2.19.3.0") },
{"System.Memory.Data", new Version("1.0.2.0")},
{"System.Text.Json", new Version("4.0.1.2")},
};
Expand Down
2 changes: 1 addition & 1 deletion src/Accounts/Authenticators/Authenticators.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@
</PropertyGroup>

<ItemGroup>
<PackageReference Include="Azure.Identity" Version="1.5.0" />
<PackageReference Include="Azure.Identity" Version="1.6.0" />
</ItemGroup>

<ItemGroup>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,7 @@
using Microsoft.WindowsAzure.Commands.Common;
using Microsoft.Identity.Client;
using Microsoft.Azure.PowerShell.Authenticators.Identity;
using ClientAssertionCredential = Microsoft.Azure.PowerShell.Authenticators.Identity.ClientAssertionCredential;

namespace Microsoft.Azure.PowerShell.Authenticators
{
Expand Down
Binary file modified src/lib/NetCorePreloadAssemblies/Azure.Core.dll
Binary file not shown.
Binary file modified src/lib/NetCorePreloadAssemblies/Azure.Identity.dll
Binary file not shown.
Binary file not shown.
Binary file modified src/lib/NetCorePreloadAssemblies/Microsoft.Identity.Client.dll
Binary file not shown.
Binary file modified src/lib/NetFxPreloadAssemblies/Azure.Core.dll
Binary file not shown.
Binary file modified src/lib/NetFxPreloadAssemblies/Azure.Identity.dll
Binary file not shown.
Binary file not shown.
Binary file modified src/lib/NetFxPreloadAssemblies/Microsoft.Identity.Client.dll
Binary file not shown.
2 changes: 1 addition & 1 deletion tools/Common.Netcore.Dependencies.targets
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
<PackageReference Include="Microsoft.Azure.PowerShell.Common.Share" Version="1.3.57-preview"/>
</ItemGroup>
<ItemGroup>
<PackageReference Include="Azure.Core" Version="1.22.0"/>
<PackageReference Include="Azure.Core" Version="1.24.0"/>
</ItemGroup>
<ItemGroup Condition="'$(IsTestProject)' != 'true'">
<PackageReference Include="Microsoft.ApplicationInsights" Version="2.12.0">
Expand Down

0 comments on commit 2c6bbff

Please sign in to comment.