Skip to content

Commit

Permalink
3rd party dependency sweep (Consensys#8443)
Browse files Browse the repository at this point in the history
Signed-off-by: Paul Harris <paul.harris@consensys.net>
  • Loading branch information
rolfyone authored Jul 16, 2024
1 parent edee6d9 commit 94aacc4
Show file tree
Hide file tree
Showing 5 changed files with 17 additions and 14 deletions.
4 changes: 2 additions & 2 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -23,8 +23,8 @@ plugins {
id 'com.diffplug.spotless' version '6.25.0'
id 'com.github.ben-manes.versions' version '0.51.0'
id 'com.github.jk1.dependency-license-report' version '2.8'
id 'io.spring.dependency-management' version '1.1.5'
id 'net.ltgt.errorprone' version '4.0.0' apply false
id 'io.spring.dependency-management' version '1.1.6'
id 'net.ltgt.errorprone' version '4.0.1' apply false
id 'de.undercouch.download' version '5.6.0'
id 'org.ajoberstar.grgit' version '5.2.2'
}
Expand Down
24 changes: 12 additions & 12 deletions gradle/versions.gradle
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
dependencyManagement {
dependencies {
dependency 'com.fasterxml.jackson.core:jackson-databind:2.17.1'
dependency 'com.fasterxml.jackson.dataformat:jackson-dataformat-yaml:2.17.1'
dependency 'com.fasterxml.jackson.dataformat:jackson-dataformat-toml:2.17.1'
dependency 'com.fasterxml.jackson.module:jackson-module-kotlin:2.17.1'
dependency 'com.fasterxml.jackson.core:jackson-databind:2.17.2'
dependency 'com.fasterxml.jackson.dataformat:jackson-dataformat-yaml:2.17.2'
dependency 'com.fasterxml.jackson.dataformat:jackson-dataformat-toml:2.17.2'
dependency 'com.fasterxml.jackson.module:jackson-module-kotlin:2.17.2'

dependencySet(group: 'com.google.errorprone', version: '2.26.1') {
dependencySet(group: 'com.google.errorprone', version: '2.28.0') {
entry 'error_prone_annotation'
entry 'error_prone_check_api'
entry 'error_prone_core'
Expand All @@ -16,7 +16,7 @@ dependencyManagement {

dependency 'com.google.guava:guava:33.1.0-jre'

dependency 'org.jsoup:jsoup:1.17.2'
dependency 'org.jsoup:jsoup:1.18.1'

dependency 'com.launchdarkly:okhttp-eventsource:4.1.1'

Expand Down Expand Up @@ -53,7 +53,7 @@ dependencyManagement {
dependency 'org.webjars:swagger-ui:5.17.14'

dependency 'org.thymeleaf:thymeleaf:3.1.2.RELEASE'
dependency 'io.github.classgraph:classgraph:4.8.173'
dependency 'io.github.classgraph:classgraph:4.8.174'
dependencySet(group: 'com.github.oshi', version: '6.6.1') {
entry 'oshi-core'
entry 'oshi-core-java11'
Expand All @@ -70,7 +70,7 @@ dependencyManagement {
entry 'vertx-unit'
entry 'vertx-web'
}
dependency 'io.projectreactor:reactor-core:3.6.7'
dependency 'io.projectreactor:reactor-core:3.6.8'

dependency 'it.unimi.dsi:fastutil:8.5.12'

Expand Down Expand Up @@ -98,7 +98,7 @@ dependencyManagement {

dependency 'org.apiguardian:apiguardian-api:1.1.2'

dependency 'org.assertj:assertj-core:3.26.0'
dependency 'org.assertj:assertj-core:3.26.3'

dependency 'org.awaitility:awaitility:4.2.1'

Expand All @@ -107,7 +107,7 @@ dependencyManagement {
entry 'bcpkix-jdk18on'
}

dependencySet(group: 'org.junit.jupiter', version: '5.10.2') {
dependencySet(group: 'org.junit.jupiter', version: '5.10.3') {
entry 'junit-jupiter-api'
entry 'junit-jupiter-engine'
entry 'junit-jupiter-params'
Expand Down Expand Up @@ -168,12 +168,12 @@ dependencyManagement {
entry "org.jupnp.support"
}

dependencySet(group: 'io.jsonwebtoken', version: '0.12.5') {
dependencySet(group: 'io.jsonwebtoken', version: '0.12.6') {
entry 'jjwt-api'
entry 'jjwt-impl'
entry 'jjwt-jackson'
}

dependency 'net.jqwik:jqwik:1.8.5'
dependency 'net.jqwik:jqwik:1.9.0'
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,7 @@
* in the spec:
* https://github.com/protolambda/eth-merkle-trees/blob/master/typing_partials.md#structure
*/
@SuppressWarnings("ClassInitializationDeadlock")
public interface LeafNode extends TreeNode, LeafDataNode {

int MAX_BYTE_SIZE = 32;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -36,6 +36,7 @@
import tech.pegasys.teku.infrastructure.ssz.tree.TreeNode;
import tech.pegasys.teku.infrastructure.unsigned.UInt64;

@SuppressWarnings("ClassInitializationDeadlock")
public class TestContainers {

public interface ImmutableSubContainer extends SszContainer {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -76,6 +76,7 @@ public static <T> Eth2RpcResponseHandler<T, T> expectSingleResponse() {
return new Eth2RpcResponseHandler<>(responseHandler, completed, resultFuture);
}

@SuppressWarnings("VoidUsed")
private static SafeFuture<Void> applyError(
final SafeFuture<Void> future,
final AtomicReference<InvalidRpcResponseException> errorCapture) {
Expand Down

0 comments on commit 94aacc4

Please sign in to comment.