-
Notifications
You must be signed in to change notification settings - Fork 281
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
Keep jackson-databind in alignment with OpenSearch #1817
Conversation
While addressing CVE-2020-36518 the security team updated to the latest minor version of jackson-databind, whereas the OpenSearch team took the CVE specific update. Aligning with OpenSearch's version. Signed-off-by: Peter Nied <[email protected]>
Codecov Report
@@ Coverage Diff @@
## 1.3 #1817 +/- ##
============================================
+ Coverage 64.64% 64.67% +0.03%
- Complexity 3219 3221 +2
============================================
Files 247 247
Lines 17363 17363
Branches 3086 3086
============================================
+ Hits 11224 11230 +6
+ Misses 4590 4587 -3
+ Partials 1549 1546 -3
Continue to review full report at Codecov.
|
@@ -81,7 +81,7 @@ dependencies { | |||
implementation 'org.greenrobot:eventbus:3.2.0' | |||
implementation 'commons-cli:commons-cli:1.3.1' | |||
implementation 'org.bouncycastle:bcprov-jdk15on:1.67' | |||
implementation 'com.fasterxml.jackson.core:jackson-databind:2.13.2.1' | |||
implementation 'com.fasterxml.jackson.core:jackson-databind:2.12.6.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.
Can jackson dependency be removed from security plugin given that it's been added in OpenSearch 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.
I've created #1816 for follow up so we can avoid these kinds of problems in the future
Description
While addressing CVE-2020-36518 the security team updated to the latest
minor version of jackson-databind, whereas the OpenSearch team took the
CVE specific update. Aligning with OpenSearch's version.
Issues Resolved
Check List
New functionality includes testingNew functionality has been documentedBy 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.