Skip to content

Commit

Permalink
upgrade logback and log4j (#143)
Browse files Browse the repository at this point in the history
  • Loading branch information
pjfanning authored Dec 4, 2023
1 parent f6385d6 commit db9be77
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion integration-test/kubernetes-api-java/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@
<dependency>
<groupId>ch.qos.logback</groupId>
<artifactId>logback-classic</artifactId>
<version>1.2.12</version>
<version>1.2.13</version>
</dependency>
<dependency>
<groupId>org.apache.pekko</groupId>
Expand Down
8 changes: 4 additions & 4 deletions project/Dependencies.scala
Original file line number Diff line number Diff line change
Expand Up @@ -26,9 +26,9 @@ object Dependencies {
val jacksonVersion = "2.14.3"

val log4j2Version = "2.17.2"
val log4j2Slf4j2Version = "2.21.1"
val logbackVersion = "1.2.11"
val logbackSlf4j2Version = "1.3.13"
val log4j2Slf4j2Version = "2.22.0"
val logbackVersion = "1.2.13"
val logbackSlf4j2Version = "1.3.14"
val slf4j2Version = "2.0.9"

// often called-in transitively with insecure versions of databind / core
Expand Down Expand Up @@ -113,7 +113,7 @@ object Dependencies {
val managementLoglevelsLogbackSlf4j2Overrides = if (Common.testWithSlf4J2) {
Seq(
"org.slf4j" % "slf4j-api" % "2.0.9",
"ch.qos.logback" % "logback-classic" % "1.3.13" % Test)
"ch.qos.logback" % "logback-classic" % "1.3.14" % Test)
} else {
Seq.empty
}
Expand Down

0 comments on commit db9be77

Please sign in to comment.