-
Notifications
You must be signed in to change notification settings - Fork 14
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
Update dependencies for security fixes #50
Comments
Hi @victor-priceputu-tb ,
|
Hello, thank you for the quick reply. We are using the library to output the test results in TeamCity, so we just execute For the scanning we check our project for packages that have security issues or dependencies that have security issues, nothing fancy. Besides the automates scanning that happens, we just run Snyk via Rider (the IDE) that just does a quick package scanning. |
Could you please clarify, are you using command line runner? If so, please note that you could use the TeamCity .NET runner with And if you don't use .NET runner, may I ask you why? That would be very helpful to us.
Could you please share the CVEs, links on Snyk or any other details that you found in connection with |
Hey, apologies for the late response. We are using the command line runner, yes. I am not sure why it is set up like this, the infrastructure department sets these up. We have multiple projects in multiple languages so I guess it is to help have multiple agents that can run every project and minimise time where a pipeline is waiting for an agent. |
Another idea would be to add an explicit net8.0 TFM, so this NETStandard.Library dependency is not needed when using that TFM |
FWIW - you can't use the .NET runner when you build docker containers and perform tests as part of the image build. You then have to use the adapter package to output console logs from the container build process in a way TeamCity can pick up to assemble test result logs. |
I've encountered the same issue. We don't use the .NET runner in Teamcity because we use PowerShell scripts with the InvokeBuild module to script our builds so that they can execute exactly the same way on developers laptops and in Teamcity. |
Currently the package is dependent on
NETStandard.Library@1.6.1
which by it's own dependencies generates security warnings (6 in total). Updating it to the current latest version v2.0.3 solves the security issues. A quick scan with Snyk can show this.Can we get an update to resolve these issues?
The text was updated successfully, but these errors were encountered: