-
Notifications
You must be signed in to change notification settings - Fork 141
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
CVE-2020-15250 fix #1095
CVE-2020-15250 fix #1095
Conversation
Signed-off-by: vamsi-amazon <reddyvam@amazon.com>
Codecov Report
@@ Coverage Diff @@
## 2.x #1095 +/- ##
=========================================
Coverage 98.28% 98.28%
Complexity 3454 3454
=========================================
Files 345 345
Lines 8588 8588
Branches 547 547
=========================================
Hits 8441 8441
Misses 142 142
Partials 5 5
Flags with carried forward coverage won't be shown. Click here to find out more. Help us with your feedback. Take ten seconds to tell us how you rate us. Have a feature suggestion? Share it here. |
@@ -42,7 +42,7 @@ test { | |||
configurations.all { | |||
resolutionStrategy.force "org.jetbrains.kotlin:kotlin-stdlib:1.6.0" | |||
resolutionStrategy.force "org.jetbrains.kotlin:kotlin-stdlib-common:1.6.0" | |||
resolutionStrategy.force "org.junit.jupiter:junit-jupiter:5.6.2" | |||
resolutionStrategy.force 'junit:junit:4.13.2' |
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.
why is this downgrading?
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.
https://mvnrepository.com/artifact/junit/junit
Its the latest one.
In the earlier PR, by mistake we forced junit-jupiter version, in this I have removed and forced junit version which actually fixes the CVE
Description
CVE-2020-15250 fix
Issues Resolved
Related PR: https://github.com/opensearch-project/sql/pull/1079/files
Check List
By submitting this pull request, I confirm that my contribution is made under the terms of the Apache 2.0 license.
For more information on following Developer Certificate of Origin and signing off your commits, please check here.