-
Notifications
You must be signed in to change notification settings - Fork 96
Fix: Cleanup jackson version overrides #1334
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
Changes from 2 commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
type: fix | ||
fix: | ||
description: Consistnetly specify jackson version as 2.10.1 | ||
links: | ||
- https://github.com/palantir/conjure-java-runtime/pull/1334 |
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,17 +1,6 @@ | ||
ch.qos.logback:logback-classic = 1.1.7 | ||
# catch-all jackson version | ||
com.fasterxml.jackson.*:jackson-* = 2.10.1 | ||
# individual components are sometimes updated out of band to fix vulnerabilities | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. For future reference, a star constraint like the above will handle these hotfix releases just fine as well. In fact jackson itself features in gradle's integration tests for this feature: |
||
# https://github.com/FasterXML/jackson-databind/issues/2387 | ||
# https://github.com/FasterXML/jackson-databind/issues/2389 | ||
com.fasterxml.jackson.core:jackson-databind = 2.10.1 | ||
com.fasterxml.jackson.datatype:jackson-datatype-guava = 2.10.1 | ||
com.fasterxml.jackson.module:jackson-module-afterburner = 2.10.1 | ||
com.fasterxml.jackson.datatype:jackson-datatype-jdk8 = 2.9.9 | ||
com.fasterxml.jackson.datatype:jackson-datatype-jsr310 = 2.9.9 | ||
com.fasterxml.jackson.dataformat:jackson-dataformat-yaml = 2.10.1 | ||
com.fasterxml.jackson.dataformat:jackson-dataformat-cbor = 2.9.9 | ||
com.fasterxml.jackson.module:jackson-module-scala_2.11 = 2.10.1 | ||
com.github.ben-manes.caffeine:caffeine = 2.8.0 | ||
com.google.code.findbugs:jsr305 = 3.0.2 | ||
com.google.guava:guava = 23.6.1-jre | ||
|
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.
heh