-
Notifications
You must be signed in to change notification settings - Fork 297
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Rev deps Microsoft.Extensions and System deps to 6.x #1143
Conversation
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Will also need to upgrade test projects for Core and AzureStorage - they have Logging 2.2.0 in them.
@@ -47,7 +47,7 @@ | |||
<PackageReference Include="Azure.Storage.Queues" Version="12.18.0" /> | |||
<PackageReference Include="Microsoft.Bcl.AsyncInterfaces" Version="6.0.0" /> | |||
<PackageReference Include="System.Linq.Async" Version="6.0.1" /> | |||
<PackageReference Include="Microsoft.Extensions.Logging.Abstractions" Version="2.2.0" /> | |||
<PackageReference Include="Microsoft.Extensions.Logging.Abstractions" Version="6.0.1" /> |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This could even be outright removed and inherit the version from DurableTask.Core
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
removed: 09d6a08
(looking into the test proj upgrade)
@@ -11,16 +11,21 @@ | |||
</ItemGroup> | |||
|
|||
<ItemGroup Condition="'$(TargetFramework)' != 'net462'"> | |||
<PackageReference Include="Azure.Monitor.OpenTelemetry.Exporter" Version="1.0.0-beta.3" /> | |||
<!-- Increasing Azure.Monitor.OpenTelemetry.Exporter to 1.0.0-beta.5 or beyond brings Systems.DiagnosticSource 7.x, which is uncompatible with netcoreapp3.1. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I recommend updating test projects to net6.0
anyways (separate PR?). netcoreapp3.1
is out of support
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Yeah that would be good. I would like to wait until bundles V4 is on net6.0
, then perform the change. Currently this matches the bundles v4 TFM, which seems reasonable to me.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@davidmrdavid bundles TFM only impacts nuget resolution. It has no impact on runtime. Runtime will be net6.0
not netcoreapp3.1
- so waiting for bundles to update to net6.0 is not relevant to this testing scenario.
There's a proposal to upgrade this deps as part of the DTFx.ASv2 / DTFx.Core v3 release. Just putting this out there to run the CI in advance. Let's not merge until we've had time to do an internal discussion