Skip to content

Commit 784f4d4

Browse files
devPalacioJay Palaciojoshafeinberg
authored
Update jackson-core to 2.15.0 (#492)
* bump jackson to 2.15.0 --------- Co-authored-by: Jay Palacio <[email protected]> Co-authored-by: Josh Feinberg <[email protected]>
1 parent e8b39d1 commit 784f4d4

File tree

8 files changed

+19
-8
lines changed

8 files changed

+19
-8
lines changed

CHANGELOG.md

+3
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1+
## 5.4.5 (TBD - Unreleased)
2+
- Update jackson-core to 2.15.0 [#492](https://github.com/dropbox/dropbox-sdk-java/issues/476)
3+
14
## 5.4.4 (2022-10-17)
25
---------------------------------------------
36
- [Downgrade target back down to Java 1.8 as requested by a user. #476](https://github.com/dropbox/dropbox-sdk-java/issues/476)
Original file line numberDiff line numberDiff line change
@@ -1 +1,3 @@
1-
com.fasterxml.jackson.core:jackson-core:2.7.9
1+
ch.randelshofer:fastdoubleparser:0.8.0
2+
com.fasterxml.jackson.core:jackson-core:2.15.0
3+
com.fasterxml.jackson:jackson-bom:2.15.0

examples/android/dependencies/releaseRuntimeClasspath.txt

+3-1
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,9 @@ androidx.vectordrawable:vectordrawable:1.1.0
4646
androidx.versionedparcelable:versionedparcelable:1.1.1
4747
androidx.viewpager2:viewpager2:1.0.0
4848
androidx.viewpager:viewpager:1.0.0
49-
com.fasterxml.jackson.core:jackson-core:2.7.9
49+
ch.randelshofer:fastdoubleparser:0.8.0
50+
com.fasterxml.jackson.core:jackson-core:2.15.0
51+
com.fasterxml.jackson:jackson-bom:2.15.0
5052
com.github.bumptech.glide:annotations:4.12.0
5153
com.github.bumptech.glide:disklrucache:4.12.0
5254
com.github.bumptech.glide:gifdecoder:4.12.0

examples/examples/build.gradle

+2-2
Original file line numberDiff line numberDiff line change
@@ -15,8 +15,8 @@ dependencies {
1515
implementation("org.eclipse.jetty.aggregate:jetty-server:8.1.18.v20150929")
1616
implementation("javax.servlet:javax.servlet-api:3.1.0")
1717
implementation("org.apache.commons:commons-lang3:3.4")
18-
implementation("com.fasterxml.jackson.core:jackson-core:2.7.9")
19-
implementation("com.fasterxml.jackson.core:jackson-databind:2.7.4")
18+
implementation(dropboxJavaSdkLibs.jackson.core)
19+
implementation("com.fasterxml.jackson.core:jackson-databind:2.15.0")
2020
implementation(dropboxJavaSdkLibs.okhttp3)
2121
implementation("org.json:json:20220320")
2222

Original file line numberDiff line numberDiff line change
@@ -1 +1,3 @@
1-
com.fasterxml.jackson.core:jackson-core:2.7.9
1+
ch.randelshofer:fastdoubleparser:0.8.0
2+
com.fasterxml.jackson.core:jackson-core:2.15.0
3+
com.fasterxml.jackson:jackson-bom:2.15.0
Original file line numberDiff line numberDiff line change
@@ -1 +1,3 @@
1-
com.fasterxml.jackson.core:jackson-core:2.7.9
1+
ch.randelshofer:fastdoubleparser:0.8.0
2+
com.fasterxml.jackson.core:jackson-core:2.15.0
3+
com.fasterxml.jackson:jackson-bom:2.15.0

gradle.properties

+1-1
Original file line numberDiff line numberDiff line change
@@ -25,4 +25,4 @@ org.gradle.unsafe.configuration-cache=false
2525
# Use AndroidX
2626
android.useAndroidX=true
2727

28-
org.gradle.jvmargs=-Xmx2048m -XX:MaxPermSize=512m -Dfile.encoding=UTF-8
28+
org.gradle.jvmargs=-Xmx2048m -Dfile.encoding=UTF-8

gradle/dropboxJavaSdkLibs.versions.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ androidx-lifecycle-runtime-ktx = "androidx.lifecycle:lifecycle-runtime-ktx:2.5.1
2121
androidx-recyclerview = 'androidx.recyclerview:recyclerview:1.2.1'
2222
appengine-api = 'com.google.appengine:appengine-api-1.0-sdk:1.9.38'
2323
glide = 'com.github.bumptech.glide:glide:4.12.0'
24-
jackson-core = 'com.fasterxml.jackson.core:jackson-core:2.7.9'
24+
jackson-core = 'com.fasterxml.jackson.core:jackson-core:2.15.0'
2525
kotlin-gradle-plugin = { module = "org.jetbrains.kotlin:kotlin-gradle-plugin", version.ref = "kotlin" }
2626
kotlin-stdlib = { module = "org.jetbrains.kotlin:kotlin-stdlib", version.ref = "kotlin" }
2727
kotlin-test = { module = "org.jetbrains.kotlin:kotlin-test", version.ref = "kotlin" }

0 commit comments

Comments
 (0)