Skip to content

Commit

Permalink
Corrected after review
Browse files Browse the repository at this point in the history
  • Loading branch information
Nikita-Smirnov-Exactpro committed May 28, 2024
1 parent a2a2d03 commit 232792c
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 4 deletions.
9 changes: 6 additions & 3 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -139,13 +139,16 @@ dependencies {
implementation 'io.prometheus:simpleclient_log4j2'

implementation("com.squareup.okio:okio:3.4.0") {
because('fix vulnerability in transitive dependency <com.squareup.okhttp3:okhttp>')
because('fix vulnerability in transitive dependency <com.squareup.okhttp3:okhttp>' +
'Note: kotlin:1.9 is transitive dependency since 3.5.0')
}
implementation("com.squareup.okhttp3:okhttp:4.11.0") {
because('fix vulnerability in transitive dependency <kubernetes-client>')
because('fix vulnerability in transitive dependency <kubernetes-client>. ' +
'Note: kotlin:1.9 is transitive dependency since 4.12.0')
}
implementation('com.squareup.okhttp3:logging-interceptor:4.11.0') {
because('fix vulnerability in transitive dependency <kubernetes-client>')
because('fix vulnerability in transitive dependency <kubernetes-client>. ' +
'Note: kotlin:1.9 is transitive dependency since 4.12.0')
}

implementation("io.fabric8:kubernetes-client:6.12.1") {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ class TestMultiMapDeserializer {
.configure(KotlinFeature.NullToEmptyMap, false)
.configure(KotlinFeature.NullIsSameAsDefault, false)
.configure(KotlinFeature.SingletonSupport, false)
.configure(KotlinFeature.StrictNullChecks, false)
.configure(KotlinFeature.StrictNullChecks, true)
.build()
)

Expand Down

0 comments on commit 232792c

Please sign in to comment.