Skip to content

Commit 93f959e

Browse files
authored
Upgrade Azure.Identity to fix ADFS auth issue (#14228)
1 parent 7c4918b commit 93f959e

15 files changed

+7
-6
lines changed

src/Accounts/Accounts/ChangeLog.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,7 @@
1818
- Additional information about change #1
1919
-->
2020
## Upcoming Release
21+
* Upgrade Azure.Identity to fix the issue that Connect-AzAccount fails when explict ADFS credential is used [#13560]
2122

2223
## Version 2.2.5
2324
* Tracked CloudError code in exception

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.4.0-beta.1" />
15+
<PackageReference Include="Azure.Identity" Version="1.4.0-beta.3" />
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.8.1.0")},
27+
{"Azure.Core", new Version("1.9.0.0")},
2828
{"Microsoft.Bcl.AsyncInterfaces", new Version("1.0.0.0")},
29-
{"Microsoft.Identity.Client", new Version("4.21.0.0") },
30-
{"Microsoft.Identity.Client.Extensions.Msal", new Version("2.16.2.0") },
29+
{"Microsoft.Identity.Client", new Version("4.23.0.0") },
30+
{"Microsoft.Identity.Client.Extensions.Msal", new Version("2.16.6.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/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.4.0-beta.1" />
26+
<PackageReference Include="Azure.Identity" Version="1.4.0-beta.3" />
2727
</ItemGroup>
2828

2929
<ItemGroup>
1.49 KB
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
2.02 KB
Binary file not shown.

0 commit comments

Comments
 (0)