Skip to content
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

Upgrade Apache Commons Compress to 1.26.1 #8

Merged
merged 1 commit into from
Apr 27, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 10 additions & 0 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,17 @@ dependencies {

implementation libs.embulk.util.file

// Apache Commons Compress (commons-compress) has been depending on commons-codec, commons-io, and commons-lang3 since 1.26.0.
//
// It had had some internal utility classes, like Charsets and IOUtils, until 1.25.0, which were duplicated
// with commons-codec and commons-io. Apache Commons Compress started to reuse the original ones from 1.26.0.
//
// See: https://commons.apache.org/proper/commons-compress/changes-report.html#a1.26.0
implementation libs.commons.compress

implementation libs.commons.codec
implementation libs.commons.io
implementation libs.commons.lang3
}

embulkPlugin {
Expand Down
5 changes: 4 additions & 1 deletion gradle.lockfile
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,11 @@ com.fasterxml.jackson.core:jackson-core:2.16.2=compileClasspath,runtimeClasspath
com.fasterxml.jackson.core:jackson-databind:2.16.2=compileClasspath,runtimeClasspath
com.fasterxml.jackson.datatype:jackson-datatype-jdk8:2.16.2=compileClasspath,runtimeClasspath
com.fasterxml.jackson:jackson-bom:2.16.2=compileClasspath,runtimeClasspath
commons-codec:commons-codec:1.16.1=compileClasspath,runtimeClasspath
commons-io:commons-io:2.16.1=compileClasspath,runtimeClasspath
javax.validation:validation-api:2.0.1.Final=compileClasspath,runtimeClasspath
org.apache.commons:commons-compress:1.10=compileClasspath,runtimeClasspath
org.apache.commons:commons-compress:1.26.1=compileClasspath,runtimeClasspath
org.apache.commons:commons-lang3:3.14.0=compileClasspath,runtimeClasspath
org.embulk:embulk-spi:0.11=compileClasspath
org.embulk:embulk-util-config:0.5.0=compileClasspath,runtimeClasspath
org.embulk:embulk-util-file:0.1.5=compileClasspath,runtimeClasspath
Expand Down
8 changes: 7 additions & 1 deletion gradle/libs.versions.toml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,10 @@ jackson = "2.16.2"

embulk-util-file = "0.1.5"

commons-compress = "1.10"
commons-compress = "1.26.1"
commons-codec = "1.16.1"
commons-io = "2.16.1"
commons-lang3 = "3.14.0"

[libraries]

Expand All @@ -30,6 +33,9 @@ jackson-core = { group = "com.fasterxml.jackson.core", name = "jackson-core" }
jackson-databind = { group = "com.fasterxml.jackson.core", name = "jackson-databind" }
jackson-datatype-jdk8 = { group = "com.fasterxml.jackson.datatype", name = "jackson-datatype-jdk8" }
commons-compress = { group = "org.apache.commons", name = "commons-compress", version.ref = "commons-compress" }
commons-codec = { group = "commons-codec", name = "commons-codec", version.ref = "commons-codec" }
commons-io = { group = "commons-io", name = "commons-io", version.ref = "commons-io" }
commons-lang3 = { group = "org.apache.commons", name = "commons-lang3", version.ref = "commons-lang3" }

[bundles]

Expand Down
Loading