Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions src/Accounts/Accounts/ChangeLog.md
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,8 @@
-->

## Upcoming Release
* Upgraded `Azure.Core` dependency from 1.56.0 to 1.57.0.
* Upgraded `System.ClientModel` dependency from 1.12.0 to 1.13.0.
Comment on lines +22 to +23

Copy link
Copy Markdown
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Do not merge the PR before the release branch is merged back to main because there will be conflicts in change log and we want the release PR to merge first and adrees the conflicts in this PR.

* Upgraded `Azure.Core` dependency from 1.50.0 to 1.56.0.
Comment on lines +22 to 24
* Upgraded `Azure.Identity` dependency to 1.21.0.
* Upgraded `Azure.Identity.Broker` dependency from 1.1.0 to 1.6.0.
Expand Down
4 changes: 2 additions & 2 deletions src/Accounts/AssemblyLoading/ConditionalAssemblyProvider.cs
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ public static void Initialize(string rootPath, IConditionalAssemblyContext conte
CreateAssembly("net462", "System.Runtime.CompilerServices.Unsafe", "6.0.3.0").WithWindowsPowerShell(),
CreateAssembly("net47", "System.Security.Cryptography.Cng", "5.0.0.0").WithWindowsPowerShell(),
CreateAssembly("net47", "System.ValueTuple", "4.0.3.0").WithWindowsPowerShell(),
CreateAssembly("netstandard2.0", "Azure.Core", "1.56.0.0"),
CreateAssembly("netstandard2.0", "Azure.Core", "1.57.0.0"),
CreateAssembly("netstandard2.0", "Azure.Identity.Broker", "1.6.0.0"),
CreateAssembly("netstandard2.0", "Azure.Identity", "1.21.0.0"),
CreateAssembly("netstandard2.0", "Microsoft.Bcl.AsyncInterfaces", "10.0.0.3"),
Expand All @@ -68,7 +68,7 @@ public static void Initialize(string rootPath, IConditionalAssemblyContext conte
CreateAssembly("netstandard2.0", "Microsoft.Identity.Client.NativeInterop", "0.20.4.0"),
CreateAssembly("netstandard2.0", "Microsoft.IdentityModel.Abstractions", "8.14.0.0"),
CreateAssembly("netstandard2.0", "System.Buffers", "4.0.2.0").WithWindowsPowerShell(),
CreateAssembly("netstandard2.0", "System.ClientModel", "1.12.0.0"),
CreateAssembly("netstandard2.0", "System.ClientModel", "1.13.0.0"),
CreateAssembly("netstandard2.0", "System.Diagnostics.DiagnosticSource", "10.0.0.0"),
CreateAssembly("netstandard2.0", "System.Formats.Asn1", "8.0.0.0").WithWindowsPowerShell(),
CreateAssembly("netstandard2.0", "System.IO.Pipelines", "10.0.0.0"),
Expand Down
4 changes: 2 additions & 2 deletions src/lib/cgmanifest.json
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,7 @@
"type": "nuget",
"nuget": {
"name": "Azure.Core",
"version": "1.56.0"
"version": "1.57.0"
}
}
},
Expand Down Expand Up @@ -241,7 +241,7 @@
"type": "nuget",
"nuget": {
"name": "System.ClientModel",
"version": "1.12.0"
"version": "1.13.0"
}
}
},
Expand Down
4 changes: 2 additions & 2 deletions src/lib/manifest.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[
{
"PackageName": "Azure.Core",
"PackageVersion": "1.56.0",
"PackageVersion": "1.57.0",
"TargetFramework": "netstandard2.0",
"WindowsPowerShell": true,
Comment on lines 2 to 6
"PowerShell7Plus": true
Expand Down Expand Up @@ -135,7 +135,7 @@
},
{
"PackageName": "System.ClientModel",
"PackageVersion": "1.12.0",
"PackageVersion": "1.13.0",
"TargetFramework": "netstandard2.0",
"WindowsPowerShell": true,
"PowerShell7Plus": true
Expand Down
Binary file modified src/lib/netstandard2.0/Azure.Core.dll
Binary file not shown.
Binary file modified src/lib/netstandard2.0/System.ClientModel.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 @@ -22,7 +22,7 @@
<PackageReference Include="Microsoft.CSharp" Version="4.7.0" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="Azure.Core" Version="1.56.0"/>
<PackageReference Include="Azure.Core" Version="1.57.0"/>
</ItemGroup>
<ItemGroup Condition="'$(IsTestProject)' != 'true'">
<PackageReference Include="Microsoft.ApplicationInsights" Version="2.18.0">
Expand Down
Loading