Skip to content

Commit 46f9e71

Browse files
committed
Revert "Update Azure.Identity to 1.13.0 (#26447)"
This reverts commit 5f8a35f.
1 parent 86546c6 commit 46f9e71

File tree

6 files changed

+11
-8
lines changed

6 files changed

+11
-8
lines changed

src/Accounts/Accounts/ChangeLog.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222
* Fixed the issue that `Export-AzSshConfig` and `Enter-AzVM` from Az.Ssh are not able to use when WAM is enabled.
2323
* Added breaking change preannouncement for the removal of alias `Resolve-Error`. #26189
2424
* Integrated new detection library to expand the scope of secrets.
25-
* Upgraded Azure.Core to 1.44.1 and Azure.Identity to 1.13.0
25+
* Upgraded Azure.Core to 1.44.1.
2626

2727
## Version 3.0.4
2828
* Added customized UserAgent for ARM telemetry.
Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,10 @@
11
<Project>
22
<Import Project="$([MSBuild]::GetDirectoryNameOfFileAbove($(MSBuildThisFileDirectory).., Directory.Build.targets))\Directory.Build.targets" />
33
<!-- Skip in live unit testing https://docs.microsoft.com/en-us/visualstudio/test/live-unit-testing-faq?view=vs-2022#can-i-customize-my-live-unit-testing-builds- -->
4-
<Target Name="AddAccountsPsm1Dependency" AfterTargets="Build" Condition="'$(BuildingForLiveUnitTesting)' != 'true'">
4+
<Target Name ="BuildAssemblyLoadContextProject" AfterTargets="Build" Condition="'$(Configuration)' == 'Debug' And '$(BuildingForLiveUnitTesting)' != 'true'">
5+
<Exec Command="dotnet build ../AuthenticationAssemblyLoadContext/AuthenticationAssemblyLoadContext.csproj"/>
6+
</Target>
7+
<Target Name="AddAccountsPsm1Dependency" AfterTargets="Build" Condition="'$(Configuration)' == 'Debug' And '$(BuildingForLiveUnitTesting)' != 'true'">
58
<Exec Command="pwsh -NonInteractive -NoLogo -NoProfile -Command &quot;. '$(OutDir)../../../tools/AddModulePsm1Dependency.ps1' -ModuleFolder '$(OutDir)' -IgnorePwshVersion &quot;" />
69
</Target>
710
</Project>

src/Accounts/AssemblyLoading/ConditionalAssemblyProvider.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ public static void Initialize(string rootPath, IConditionalAssemblyContext conte
4343
// todo: consider moving the list to a standalone config file
4444
#region AssemblyList
4545
CreateAssembly("netstandard2.0", "Azure.Core", "1.44.1.0"),
46-
CreateAssembly("netstandard2.0", "Azure.Identity", "1.13.0.0"),
46+
CreateAssembly("netstandard2.0", "Azure.Identity", "1.12.0.0"),
4747
CreateAssembly("netstandard2.0", "Azure.Identity.Broker", "1.1.0.0"),
4848
CreateAssembly("netstandard2.0", "Microsoft.Bcl.AsyncInterfaces", "6.0.0.0"),
4949
CreateAssembly("netstandard2.0", "Microsoft.Identity.Client", "4.65.0.0"),
@@ -55,7 +55,7 @@ public static void Initialize(string rootPath, IConditionalAssemblyContext conte
5555
CreateAssembly("netstandard2.0", "System.Memory.Data", "6.0.0.0"),
5656
CreateAssembly("netstandard2.0", "System.Text.Json", "6.0.0.0"),
5757
CreateAssembly("netstandard2.0", "System.Buffers", "4.0.3.0").WithWindowsPowerShell(),
58-
CreateAssembly("netstandard2.0", "System.Memory", "4.0.1.2").WithWindowsPowerShell(),
58+
CreateAssembly("netstandard2.0", "System.Memory", "4.0.1.1").WithWindowsPowerShell(),
5959
CreateAssembly("netstandard2.0", "System.Net.Http.WinHttpHandler", "4.0.4.0").WithWindowsPowerShell(),
6060
CreateAssembly("netstandard2.0", "System.Private.ServiceModel", "4.7.0.0").WithWindowsPowerShell(),
6161
CreateAssembly("netstandard2.0", "System.Security.AccessControl", "4.1.3.0").WithWindowsPowerShell(),

src/Accounts/Authentication/Authentication.csproj

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -12,11 +12,11 @@
1212
</PropertyGroup>
1313

1414
<ItemGroup>
15-
<PackageReference Include="Azure.Identity" Version="1.13.0" />
15+
<PackageReference Include="Azure.Identity" Version="1.12.0" />
1616
<PackageReference Include="Azure.Identity.Broker" Version="1.1.0" />
17-
<PackageReference Include="Microsoft.Identity.Client" Version="4.65.0" />
18-
<PackageReference Include="Microsoft.Identity.Client.Extensions.Msal" Version="4.65.0" />
19-
<PackageReference Include="Microsoft.Identity.Client.Broker" Version="4.65.0" />
17+
<PackageReference Include="Microsoft.Identity.Client" Version="4.61.3" />
18+
<PackageReference Include="Microsoft.Identity.Client.Extensions.Msal" Version="4.61.3" />
19+
<PackageReference Include="Microsoft.Identity.Client.Broker" Version="4.61.3" />
2020
<PackageReference Include="Microsoft.Security.Utilities.Core" Version="1.8.0" />
2121
</ItemGroup>
2222

-13 KB
Binary file not shown.
0 Bytes
Binary file not shown.

0 commit comments

Comments
 (0)