Skip to content
This repository has been archived by the owner on Apr 5, 2024. It is now read-only.

Update library dependencies #509

Merged
merged 2 commits into from
Jun 21, 2023
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
2 changes: 1 addition & 1 deletion acceptance-tests/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ dependencies {
testRuntimeOnly 'javax.activation:activation'
testRuntimeOnly 'org.apache.logging.log4j:log4j-core'
testRuntimeOnly 'org.junit.jupiter:junit-jupiter-engine'
testRuntimeOnly 'org.bouncycastle:bcpkix-jdk15on'
testRuntimeOnly 'org.bouncycastle:bcpkix-jdk18on'

testImplementation project(':ethsigner:core')
testImplementation project(':ethsigner:app')
Expand Down
2 changes: 1 addition & 1 deletion ethsigner/core/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ dependencies {

runtimeOnly 'org.apache.logging.log4j:log4j-core'
runtimeOnly 'org.apache.logging.log4j:log4j-slf4j-impl'
runtimeOnly 'org.bouncycastle:bcpkix-jdk15on'
runtimeOnly 'org.bouncycastle:bcpkix-jdk18on'

testImplementation 'io.vertx:vertx-codegen'
testImplementation 'org.junit.jupiter:junit-jupiter-api'
Expand Down
12 changes: 6 additions & 6 deletions gradle/versions.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ dependencyManagement {
entry 'error_prone_test_helpers'
}

dependency 'com.google.guava:guava:31.1-jre'
dependency 'com.google.guava:guava:32.0.1-jre'

dependency 'com.squareup.okhttp3:okhttp:4.10.0'

Expand Down Expand Up @@ -55,9 +55,9 @@ dependencyManagement {

dependency 'org.awaitility:awaitility:4.1.1'

dependencySet(group: 'org.bouncycastle', version: '1.70') {
entry 'bcpkix-jdk15on'
entry 'bcprov-jdk15on'
dependencySet(group: 'org.bouncycastle', version: '1.74') {
entry 'bcpkix-jdk18on'
entry 'bcprov-jdk18on'
}

dependencySet(group: 'org.junit.jupiter', version: '5.8.2') {
Expand Down Expand Up @@ -94,7 +94,7 @@ dependencyManagement {
dependency "org.hyperledger.besu.internal:metrics-core:${besuVersion}"

// explicit declaring to override transitive dependencies with vulnerabilities
dependency 'com.fasterxml.jackson.core:jackson-databind:2.14.2'
dependency 'com.fasterxml.jackson.core:jackson-databind:2.15.2'
dependencySet(group: 'com.google.protobuf', version: '3.21.12') {
/*
com.google.protobuf:protobuf-java:3.11.4 -> 3.21.9 // CVE-2022-3509
Expand All @@ -104,7 +104,7 @@ dependencyManagement {
entry 'protobuf-java'
entry 'protobuf-java-util'
}
dependencySet(group: 'io.grpc', version: '1.45.1') {
dependencySet(group: 'io.grpc', version: '1.56.0') {
entry 'grpc-api'
entry 'grpc-context'
entry 'grpc-core'
Expand Down
Loading