Skip to content

Commit bf5e903

Browse files
chore: update log4j (#115)
* chore: update log4j * chore: update netty vuln too * chore: fix kotlin
1 parent f4096d2 commit bf5e903

File tree

3 files changed

+5
-9
lines changed

3 files changed

+5
-9
lines changed

attribute-service-impl/build.gradle.kts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ dependencies {
1919

2020
testImplementation("org.mockito:mockito-core:3.8.0")
2121
testImplementation("org.junit.jupiter:junit-jupiter:5.7.1")
22-
testImplementation("org.apache.logging.log4j:log4j-slf4j-impl:2.15.0")
22+
testImplementation("org.apache.logging.log4j:log4j-slf4j-impl:2.16.0")
2323
}
2424

2525
tasks.test {

attribute-service/build.gradle.kts

Lines changed: 3 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -64,17 +64,13 @@ dependencies {
6464

6565
// Logging
6666
implementation("org.slf4j:slf4j-api:1.7.30")
67-
runtimeOnly("org.apache.logging.log4j:log4j-slf4j-impl:2.15.0")
67+
runtimeOnly("org.apache.logging.log4j:log4j-slf4j-impl:2.16.0")
6868

6969
// GRPC
7070
runtimeOnly("io.grpc:grpc-netty:1.42.0")
7171
constraints {
72-
runtimeOnly("io.netty:netty-codec-http2:4.1.68.Final") {
73-
because("https://snyk.io/vuln/SNYK-JAVA-IONETTY-1089809")
74-
}
75-
runtimeOnly("io.netty:netty-handler-proxy:4.1.68.Final") {
76-
because("https://snyk.io/vuln/SNYK-JAVA-IONETTY-1089809")
77-
}
72+
runtimeOnly("io.netty:netty-codec-http2:4.1.71.Final")
73+
runtimeOnly("io.netty:netty-handler-proxy:4.1.71.Final")
7874
}
7975

8076
// Config

caching-attribute-service-client/build.gradle.kts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ dependencies {
2323
testImplementation("org.mockito:mockito-core:3.8.0")
2424
testImplementation("org.mockito:mockito-junit-jupiter:3.8.0")
2525
testImplementation("io.grpc:grpc-core:1.42.0")
26-
testImplementation("org.apache.logging.log4j:log4j-slf4j-impl:2.15.0")
26+
testImplementation("org.apache.logging.log4j:log4j-slf4j-impl:2.16.0")
2727
}
2828

2929
tasks.test {

0 commit comments

Comments
 (0)