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

Update to commons-compress-1.24.0 #791

Merged
merged 1 commit into from
Oct 5, 2023
Merged
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
4 changes: 3 additions & 1 deletion build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@ val V = new {
val betterMonadicFor = "0.3.1"
val cats = "2.10.0"
val catsEffect = "3.4.10"
val commonsCompress = "1.24.0"
val confluent = "7.5.0"
val curator = "5.2.0"
val disciplineMunit = "1.0.9"
Expand Down Expand Up @@ -203,7 +204,8 @@ lazy val commonSettings = Seq(
"co.fs2" %% "fs2-core" % V.fs2,
"org.apache.kafka" % "kafka-clients" % V.kafka,
"io.confluent" % "kafka-avro-serializer" % V.confluent,
"org.apache.avro" % "avro" % V.avro % Compile, // CVE-2023-39410, didn't work as Runtime
"org.apache.avro" % "avro" % V.avro, // CVE-2023-39410, didn't work as Runtime
"org.apache.commons" % "commons-compress" % V.commonsCompress, // CVE-2023-42503, didn't work as Runtime
"io.chrisdavenport" %% "epimetheus" % V.epimetheus,
"org.typelevel" %% "log4cats-slf4j" % V.log4cats,
// Upgrade vulnerable guava-30.1.1-jre from confluent-7.4.1. This
Expand Down
Loading