You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
First thanks for you work on the F# track, it's a pleasure to learn the language on Exercism !
When building the exercise space-age, I have the following warnings:
Restore succeeded with 1 warning(s) in 0.6s
/exercism_workspace/fsharp/space-age/SpaceAge.fsproj : warning NU1903: Package 'Newtonsoft.Json' 9.0.1 has a known high severity vulnerability, https://github.com/advisories/GHSA-5crp-9r3c-p9vr
SpaceAge succeeded with 1 warning(s) (2.3s) → bin/Debug/net8.0/SpaceAge.dll
/exercism_workspace/fsharp/space-age/SpaceAge.fsproj : warning NU1903: Package 'Newtonsoft.Json' 9.0.1 has a known high severity vulnerability, https://github.com/advisories/GHSA-5crp-9r3c-p9vr
It appears that Newtonsoft.Json is a dependency of Microsoft.TestPlatform.TestHost/16.8.3 which in turn is a dependency of Microsoft.NET.Test.Sdk/16.8.3.
dotnet-outdated output that some packages could benefit from being bumped, and bumping Microsoft.NET.Test.Sdk to the latest version would remove the previous warning because Newtonsoft.Json is no longer a dependency.
At Exercism we use our Community Forum, not GitHub issues, as the primary place for discussion. That allows maintainers and contributors from across Exercism's ecosystem to discuss your problems/ideas/suggestions without them having to subscribe to hundreds of repositories.
This issue will be automatically closed. Please use this link&category=fsharp ) to copy your GitHub Issue into a new topic on the forum, where we look forward to chatting with you!
If you're interested in learning more about this auto-responder, please read this blog post.
We can't just update the dependencies unfortunately because the test runner (which runs the tests when submitting solutions) has to be updated too. We'll get to it though.
Hi !
First thanks for you work on the F# track, it's a pleasure to learn the language on Exercism !
When building the exercise space-age, I have the following warnings:
It appears that Newtonsoft.Json is a dependency of
Microsoft.TestPlatform.TestHost/16.8.3
which in turn is a dependency ofMicrosoft.NET.Test.Sdk/16.8.3
.dotnet-outdated output that some packages could benefit from being bumped, and bumping
Microsoft.NET.Test.Sdk
to the latest version would remove the previous warning becauseNewtonsoft.Json
is no longer a dependency.What do you think about it ?
I can make a PR to bump these packages if you agree.
Have a nice day :)
The text was updated successfully, but these errors were encountered: