Skip to content

Commit 2084199

Browse files
authored
Merge pull request #26728 from Azure/lnx/core
Upgraded Azure.Core to 1.44.1 and Azure.Identity to 1.13.0
2 parents 4113d77 + a91ae5f commit 2084199

File tree

25 files changed

+41
-23
lines changed

25 files changed

+41
-23
lines changed

src/Accounts/Accounts/ChangeLog.md

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

2121
## Upcoming Release
22+
* Upgraded Azure.Core to 1.44.1 and Azure.Identity to 1.13.0
2223

2324
## Version 4.0.0
2425
* [Breaking Change] Removed alias `Resolve-Error` for the cmdlet `Resolve-AzError`.
Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,7 @@
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 ="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'">
4+
<Target Name="AddAccountsPsm1Dependency" AfterTargets="Build" Condition="'$(BuildingForLiveUnitTesting)' != 'true'">
85
<Exec Command="pwsh -NonInteractive -NoLogo -NoProfile -Command &quot;. '$(OutDir)../../../tools/AddModulePsm1Dependency.ps1' -ModuleFolder '$(OutDir)' -IgnorePwshVersion &quot;" />
96
</Target>
107
</Project>

src/Accounts/AssemblyLoading/ConditionalAssemblyProvider.cs

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -42,20 +42,20 @@ public static void Initialize(string rootPath, IConditionalAssemblyContext conte
4242
// todo: add a tool to update assembly versions after replacing the assemblies. (Can it support newly introduced assemblies?)
4343
// todo: consider moving the list to a standalone config file
4444
#region AssemblyList
45-
CreateAssembly("netstandard2.0", "Azure.Core", "1.41.0.0"),
46-
CreateAssembly("netstandard2.0", "Azure.Identity", "1.12.0.0"),
45+
CreateAssembly("netstandard2.0", "Azure.Core", "1.44.1.0"),
46+
CreateAssembly("netstandard2.0", "Azure.Identity", "1.13.0.0"),
4747
CreateAssembly("netstandard2.0", "Azure.Identity.Broker", "1.1.0.0"),
48-
CreateAssembly("netstandard2.0", "Microsoft.Bcl.AsyncInterfaces", "1.0.0.0"),
48+
CreateAssembly("netstandard2.0", "Microsoft.Bcl.AsyncInterfaces", "6.0.0.0"),
4949
CreateAssembly("netstandard2.0", "Microsoft.Identity.Client", "4.65.0.0"),
5050
CreateAssembly("netstandard2.0", "Microsoft.Identity.Client.Extensions.Msal", "4.65.0.0"),
5151
CreateAssembly("netstandard2.0", "Microsoft.Identity.Client.Broker", "4.65.0.0"),
5252
CreateAssembly("netstandard2.0", "Microsoft.Identity.Client.NativeInterop", "0.16.2.0"),
5353
CreateAssembly("netstandard2.0", "Microsoft.IdentityModel.Abstractions", "6.35.0.0"),
54-
CreateAssembly("netstandard2.0", "System.ClientModel", "1.0.0.0"),
55-
CreateAssembly("netstandard2.0", "System.Memory.Data", "1.0.2.0"),
56-
CreateAssembly("netstandard2.0", "System.Text.Json", "4.0.1.2"),
54+
CreateAssembly("netstandard2.0", "System.ClientModel", "1.1.0.0"),
55+
CreateAssembly("netstandard2.0", "System.Memory.Data", "6.0.0.0"),
56+
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.1").WithWindowsPowerShell(),
58+
CreateAssembly("netstandard2.0", "System.Memory", "4.0.1.2").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(),
@@ -70,8 +70,8 @@ public static void Initialize(string rootPath, IConditionalAssemblyContext conte
7070
CreateAssembly("netfx", "System.Reflection.DispatchProxy", "4.0.4.0").WithWindowsPowerShell(),
7171
CreateAssembly("netfx", "System.Runtime.CompilerServices.Unsafe", "6.0.0.0").WithWindowsPowerShell(),
7272
CreateAssembly("netfx", "System.Security.Cryptography.Cng", "4.3.0.0").WithWindowsPowerShell(),
73-
CreateAssembly("netfx", "System.Security.Cryptography.ProtectedData", "4.5.0.0").WithWindowsPowerShell(),
74-
CreateAssembly("netfx", "System.Text.Encodings.Web", "4.0.5.1").WithWindowsPowerShell(),
73+
CreateAssembly("netfx", "System.Security.Cryptography.ProtectedData", "4.0.3.0").WithWindowsPowerShell(),
74+
CreateAssembly("netfx", "System.Text.Encodings.Web", "6.0.0.0").WithWindowsPowerShell(),
7575
CreateAssembly("netfx", "System.Xml.ReaderWriter", "4.1.0.0").WithWindowsPowerShell(),
7676
#endregion
7777
};

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.12.0" />
15+
<PackageReference Include="Azure.Identity" Version="1.13.0" />
1616
<PackageReference Include="Azure.Identity.Broker" Version="1.1.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" />
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" />
2020
<PackageReference Include="Microsoft.Security.Utilities.Core" Version="1.8.0" />
2121
</ItemGroup>
2222

src/Accounts/Authentication/Utilities/CustomAssemblyResolver.cs

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,11 @@ public static class CustomAssemblyResolver
2929
{
3030
"System.Diagnostics.DiagnosticSource",
3131
"System.Runtime.CompilerServices.Unsafe",
32-
"Newtonsoft.Json"
32+
"Newtonsoft.Json",
33+
"System.Memory.Data",
34+
"System.Text.Json",
35+
"Microsoft.Bcl.AsyncInterfaces",
36+
"System.Text.Encodings.Web"
3337
};
3438

3539
public static void Initialize()

src/CodeSigning/CodeSigning/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+
* Upgraded Azure.Core to 1.44.1.
2122

2223
## Version 0.2.0
2324
* Added `Get-AzCodeSigningCertChain` cmdlet to retrieve the certificate chain for a certificate profile.

src/Compute/Compute/ChangeLog.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,7 @@
2020
2121
-->
2222
## Upcoming Release
23+
* Upgraded Azure.Core to 1.44.1.
2324

2425
## Version 9.0.0
2526
* Made `-PublicIpSku` parameter Standard by default in `New-AzVM`

src/ContainerRegistry/ContainerRegistry/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+
* Upgraded Azure.Core to 1.44.1.
2122

2223
## Version 4.2.1
2324
* Introduced secrets detection feature to safeguard sensitive data.

src/CosmosDB/CosmosDB/ChangeLog.md

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

2121
## Upcoming Release
22+
* Upgraded Azure.Core to 1.44.1.
2223

2324
## Version 1.15.0
2425
* Added new parameter `DisableTtl` to `Restore-AzCosmosDBAccount`.

src/KeyVault/KeyVault/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+
* Upgraded Azure.Core to 1.44.1.
2122

2223
## Version 6.3.0
2324
* Added Secret URI Parameter to Key Vault Secret Cmdlets [#23053]

0 commit comments

Comments
 (0)