Open cristipufu opened 4 years ago
I have a similar requirement, but the latest version of a package is different for different frameworks.
<ItemGroup Condition=" '$(TargetFramework)' == 'netcoreapp3.1' ">
<PackageReference Include="Microsoft.AspNetCore.TestHost" Version="3.1.15" />
</ItemGroup>
<ItemGroup Condition=" '$(TargetFramework)' == 'net5.0' ">
<PackageReference Include="Microsoft.AspNetCore.TestHost" Version="5.0.6" />
</ItemGroup>
The output of dotnet outdated
is as follows:
[.NETCoreApp,Version=v5.0]
Microsoft.AspNetCore.TestHost 5.0.6 -> 5.0.9
[.NETCoreApp,Version=v3.1]
Microsoft.AspNetCore.TestHost 3.1.15 -> 3.1.18
Dependabot is incorrectly trying to upgrade both of these references to 5.0.9
rather than as above.
Dependabot does not actually run the Nuget commandline but parses the csproj/etc files directly. The overhead of parsing the "freetext" Condition
for all possible permutations of TargetFramework, Environment, etc is currently beyond the scope of dependabot.
Shame :( Are there any workarounds?
I know that dependabot does not inspect imported targets, so you might have some success pulling the portion you want ignored out into a separate .targets
file and importing it into your .csproj
file instead of including it directly.
Dependabot's nuget support is (currently) written entirely in ruby, so I while think it could add limited support for parsing target frameworks (like the very straightforward example you gave), there's a lot of complexity in msbuild conditions that would require integrating a separate dotnet-specific helper tool (like https://github.com/dotnet-outdated/dotnet-outdated) to provide more complete support. While I think that is entirely possible, it is a very big change and would require integration with the maintainers of that tool in order to add additional flexibility.
The biggest reason that OSS maintainers like us want multi-targeting support. If we want to support both newer framework releases, like .NET 6, but continue to support older versions of the framework, we need to multi-target.
We now have to mostly treat dependabot as a notification that something has changed for libraries that have a .NET 6.0 version, and then edit the .csproj by hand to update the dependencies for the different targets.
Arguably, this is quite a significant cost to .NET devs, as it removes the automation of the change
Dependabot is great, but this feature is very much needed when it comes to the dotnet eco system, since we'd like to provide support for LTS and STS versions. If I build for net7 I'd like to use net7 dependencies and when using net6 or net8 we need to use net6/8 dependencies so we can guarantee LTS.
I think dependabot should use dotnet outdated that can understand conditions and target frameworks rather than implementing this logic itself. Without that, if you're not on the latest target supported framework, most of the PR generated by dependabot are noise.
One example where this is really noisy is if you have an asp.net project that targets net6.0 (the current LTS release). Since net7.0 has been released already, dependabot creates PR for each and every asp.net dependency trying to bump it to version 7. Version 7 of asp.net runs on net7.0 so accepting the PR will actually be a mistake. On top of that, since every month there's a new patch version being release, we get these PRs every month for the wrong version and we don't get the one that bumps the correct version of the dependencies.
To summarize this causes a lot of noise with little value missing out the important part of keeping the right dependencies updated.
Hopefully this can get on the roadmap soon. Supporting multitargeting without using netstandard is critical for dependabot.
Would also like this feature.
Please use reactions to show support for a feature, without adding anything else to the discussion. Thank you!
Would it be a feasable solution to control the target framework additionally in the dependabot.yml
? I am thinking of following solution design:
Problem today: Even if you just target net7.0 dependabot proposes .net packages to be upgraded to 8.0 which fails then on dotnet restore
. This topic was not yet touched in the discussion but is a problem we just encountered.
Solution: In dependabot you would specify your maximum target framework (e.g. net7.0
) explicitly and dependabot will respect it when selecting available frameworks. There is a bit of complexity with checking the compatibility of packages (e.g. target-framework: net7.0
in the dependabot.yml would also allow netstandard2.0
or netstandard2.1
packages. But it should be achievable.
It is a bit of additional effort to keep the dependabot.yml in sync with your project but it is a step forward.
Problem today: if you target multiple runtimes also the available package versions might differ. dependabot ignores those constraints and changes all versions.
Solution: This could be solved with a setup which combines a dependabot setting and splitting out the dependency versions via central package management like this (example from OP):
Pros:
Cons:
Unclarity:
@brettfo I have noticed in recent PRs that you have been working on many changes to the nuget side of dependabot. Is the resolution of this issue one of your goals?
@JamesMcConaghie I have been doing a lot of updates to the NuGet stuff, but if I'm understanding your request correctly, that might be something that's out-of-scope for the updater. Eventually we plan to support the Condition
attributes (e.g., to only include a package for nestandard2.0
but not for net8.0
) but to only run updates for a single TFM isn't something we can support. When the NuGet updater runs it tries to take the whole project into consideration which includes the <TargetFrameworks>
element (e.g., netstandard2.0;net8.0
).
@brettfo,
Supporting Condition
attributes in general would greatly help my processes. I don't intend to leave one targeted framework stagnant and would want all <TargetFrameworks>
values to be evaluated and updated if needed.
I'm glad that it is planned to eventually get tackled. Do you have a rough idea of the timeline (weeks, months, years)? Thank you for all your hard work so far, I am glad to see that nuget is getting more support in dependabot with native tooling.
@JamesMcConaghie I don't have an estimate at this time, but we are slowly migrating more of our logic to using real MSBuild (instead of manual XML crawling) which is what will eventually enable this.
Having this
.csproj
in my .NET library will try to update the dependencies that targetnetstandard2.0
, which I don't want to do because then the library would lose back-compat with older versions of AspNetCore.It would be really helpful if there was a way to tell dependabot to only look for and update the dependencies in the
netcoreapp3.1
target framework. Is there a way to achieve this?