From f721c1c2c26bf695edbbba6ba612c5fb312aa57c Mon Sep 17 00:00:00 2001 From: Fabio Di Fabio Date: Thu, 11 Jan 2024 10:45:41 +0100 Subject: [PATCH] Upgrade dependencies (#6377) * Bump com.github.oshi:oshi-core to 6.4.10 Signed-off-by: Fabio Di Fabio * Bump com.github.tomakehurst to org.wiremock 3.3.1 Signed-off-by: Fabio Di Fabio * Bump com.google.auto.service:auto-service to 1.1.1 Signed-off-by: Fabio Di Fabio * Bump com.google.dagger group to 2.50 Signed-off-by: Fabio Di Fabio * Bump com.graphql-java:graphql-java to 21.3 Signed-off-by: Fabio Di Fabio * Bump com.splunk.logging:splunk-library-javalogging to 1.11.8 Signed-off-by: Fabio Di Fabio * Bump com.squareup.okhttp3:okhttp to 4.12.0 Signed-off-by: Fabio Di Fabio * Bump commons-io:commons-io to 2.15.1 Signed-off-by: Fabio Di Fabio * Bump dnsjava:dnsjava to 3.5.3 Signed-off-by: Fabio Di Fabio * Bump info.picocli group to 4.7.5 Signed-off-by: Fabio Di Fabio * Bump io.grpc group to 1.60.1 Signed-off-by: Fabio Di Fabio * Bump io.kubernetes:client-java to 18.0.1 Signed-off-by: Fabio Di Fabio * Bump io.netty group to 4.1.104.Final Signed-off-by: Fabio Di Fabio * Bump net.java.dev.jna:jna to 5.14.0 Signed-off-by: Fabio Di Fabio * Bump org.apache.commons:commons-compress to 1.25.0 Signed-off-by: Fabio Di Fabio * Bump org.apache.commons:commons-lang3 to 3.14.0 Signed-off-by: Fabio Di Fabio * Bump org.apache.commons:commons-text to 1.11.0 Signed-off-by: Fabio Di Fabio * Bump org.apache.logging.log4j group to 2.22.1 Signed-off-by: Fabio Di Fabio * Redorder io.tmio group Signed-off-by: Fabio Di Fabio * Bump org.assertj:assertj-core to 3.25.1 Signed-off-by: Fabio Di Fabio * Bump org.bouncycastle group to 1.77 Signed-off-by: Fabio Di Fabio * Bump org.fusesource.jansi:jansi to 2.4.1 Signed-off-by: Fabio Di Fabio * Bump org.immutables group 2.10.0 Signed-off-by: Fabio Di Fabio * Bump org.java-websocket:Java-WebSocket to 1.5.5 Signed-off-by: Fabio Di Fabio * Bump org.jetbrains.kotlin:kotlin-stdlib to 1.9.22 Signed-off-by: Fabio Di Fabio * Bump org.junit.jupiter group to 5.10.1 Signed-off-by: Fabio Di Fabio * Bump org.jupnp group to 2.7.1 Signed-off-by: Fabio Di Fabio * Bump org.rocksdb:rocksdbjni to 8.9.1 Signed-off-by: Fabio Di Fabio * Bump org.slf4j group to 2.0.10 Signed-off-by: Fabio Di Fabio * Bump org.springframework.security:spring-security-crypto to 6.2.1 Signed-off-by: Fabio Di Fabio * Bump org.testcontainers:testcontainers to 1.19.3 Signed-off-by: Fabio Di Fabio * Bump org.web3j group to 4.10.3 Signed-off-by: Fabio Di Fabio * Bump org.xerial.snappy:snappy-java to 1.1.10.5 Signed-off-by: Fabio Di Fabio * Regenerate gradle verification metadata Signed-off-by: Fabio Di Fabio * Update commons-codec:commons-codec to 1.16.0 Signed-off-by: Fabio Di Fabio * Update org.junit.vintage:junit-vintage-engine to 5.10.1 Signed-off-by: Fabio Di Fabio * Update CHANGELOG Signed-off-by: Fabio Di Fabio --------- Signed-off-by: Fabio Di Fabio --- CHANGELOG.md | 1 + acceptance-tests/dsl/build.gradle | 2 +- acceptance-tests/tests/build.gradle | 2 +- gradle/allowed-licenses.json | 4 + gradle/license-normalizer-bundle.json | 2 +- gradle/verification-metadata.xml | 2892 +++++++++---------------- gradle/versions.gradle | 109 +- 7 files changed, 1090 insertions(+), 1922 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 9ce64c213aa..912122e786b 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -11,6 +11,7 @@ ### Additions and Improvements - Optimize RocksDB WAL files, allows for faster restart and a more linear disk space utilization [#6328](https://github.com/hyperledger/besu/pull/6328) - Disable transaction handling when the node is not in sync, to avoid unnecessary transaction validation work [#6302](https://github.com/hyperledger/besu/pull/6302) +- Upgrade dependencies [#6377](https://github.com/hyperledger/besu/pull/6377) ### Bug fixes - INTERNAL_ERROR from `eth_estimateGas` JSON/RPC calls [#6344](https://github.com/hyperledger/besu/issues/6344) diff --git a/acceptance-tests/dsl/build.gradle b/acceptance-tests/dsl/build.gradle index 96a6a1c1bc0..6c9090fe9b9 100644 --- a/acceptance-tests/dsl/build.gradle +++ b/acceptance-tests/dsl/build.gradle @@ -26,7 +26,6 @@ dependencies { implementation project(':testutil') implementation project(':util') - implementation 'com.github.tomakehurst:wiremock-jre8' implementation 'com.google.guava:guava' implementation 'com.google.dagger:dagger' annotationProcessor 'com.google.dagger:dagger-compiler' @@ -45,6 +44,7 @@ dependencies { implementation 'org.web3j:abi' implementation 'org.web3j:besu' implementation 'org.web3j:crypto' + implementation 'org.wiremock:wiremock' implementation 'org.testcontainers:testcontainers' implementation 'org.junit.jupiter:junit-jupiter' diff --git a/acceptance-tests/tests/build.gradle b/acceptance-tests/tests/build.gradle index 464805779c8..b20b96b2735 100644 --- a/acceptance-tests/tests/build.gradle +++ b/acceptance-tests/tests/build.gradle @@ -55,7 +55,6 @@ dependencies { testImplementation project(':testutil') testImplementation project(':util') - testImplementation 'com.github.tomakehurst:wiremock-jre8-standalone' testImplementation 'commons-io:commons-io' testImplementation 'io.grpc:grpc-all' testImplementation 'io.grpc:grpc-core' @@ -84,6 +83,7 @@ dependencies { testImplementation 'org.web3j:abi' testImplementation 'org.web3j:besu' testImplementation 'org.web3j:core' + testImplementation 'org.wiremock:wiremock' testRuntimeOnly 'org.junit.vintage:junit-vintage-engine' } diff --git a/gradle/allowed-licenses.json b/gradle/allowed-licenses.json index a5d4048b224..25270190806 100644 --- a/gradle/allowed-licenses.json +++ b/gradle/allowed-licenses.json @@ -60,6 +60,10 @@ "moduleLicense": "Eclipse Public License - v 1.0", "moduleVersion": "4.13.2", "moduleName": "junit:junit" + }, + { + "moduleName": "org.jetbrains.kotlin:kotlin-stdlib-common", + "moduleVersion": "1.9.22" } ] } \ No newline at end of file diff --git a/gradle/license-normalizer-bundle.json b/gradle/license-normalizer-bundle.json index 341b7ab5f62..8c0af450fd3 100644 --- a/gradle/license-normalizer-bundle.json +++ b/gradle/license-normalizer-bundle.json @@ -50,9 +50,9 @@ { "bundleName" : "Apache-2.0", "licenseNamePattern" : ".*Apache License,?( Version)? 2.*" }, { "bundleName" : "Apache-2.0", "licenseUrlPattern" : ".*(www\\.)?opensource\\.org/licenses/Apache-2\\.0.*" }, { "bundleName" : "Apache-2.0", "licenseUrlPattern" : ".*www\\.apache\\.org/licenses/LICENSE-2\\.0.*" }, - { "bundleName" : "LGPL-2.1-only", "licenseUrlPattern" : ".*www\\.gnu\\.org/licenses/old-licenses/lgpl-2\\.1\\.html" }, { "bundleName" : "Apache-2.0", "licenseFileContentPattern" : ".*Apache License,?( Version)? 2.*" }, { "bundleName" : "Apache-1.1", "licenseFileContentPattern" : ".*Apache Software License, Version 1\\.1.*" }, + { "bundleName" : "LGPL-2.1-only", "licenseUrlPattern" : ".*www\\.gnu\\.org/licenses/old-licenses/lgpl-2\\.1\\.html" }, { "bundleName" : "CC0-1.0", "licenseNamePattern" : "CC0(( |-)1(\\.0)?)?" }, { "bundleName" : "CC0-1.0", "licenseUrlPattern" : ".*(www\\.)?creativecommons\\.org/publicdomain/zero/1\\.0/" }, { "bundleName" : "CDDL-1.0", "licenseFileContentPattern" : ".*CDDL.*1\\.0" }, diff --git a/gradle/verification-metadata.xml b/gradle/verification-metadata.xml index 8265a2810c4..d0cfe4bd752 100644 --- a/gradle/verification-metadata.xml +++ b/gradle/verification-metadata.xml @@ -78,9 +78,12 @@ - - - + + + + + + @@ -133,9 +136,9 @@ - - - + + + @@ -153,11 +156,6 @@ - - - - - @@ -183,11 +181,6 @@ - - - - - @@ -208,11 +201,6 @@ - - - - - @@ -229,11 +217,6 @@ - - - - - @@ -250,6 +233,14 @@ + + + + + + + + @@ -290,6 +281,14 @@ + + + + + + + + @@ -327,14 +326,6 @@ - - - - - - - - @@ -343,12 +334,15 @@ - - - + + + - - + + + + + @@ -356,9 +350,9 @@ - - - + + + @@ -372,12 +366,26 @@ - - - + + + + + + + + + + + + + + + + + - - + + @@ -385,9 +393,9 @@ - - - + + + @@ -414,33 +422,33 @@ - - - + + + - - + + - - - + + + - - - + + + - - + + - - - + + + - - + + @@ -523,11 +531,6 @@ - - - - - @@ -584,27 +587,17 @@ - - - - - - - - - - - + + + - - - - + + - - - + + + @@ -615,35 +608,6 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - @@ -689,14 +653,6 @@ - - - - - - - - @@ -705,15 +661,10 @@ - - - - - - - - + + + @@ -736,6 +687,14 @@ + + + + + + + + @@ -806,54 +765,36 @@ - - - - - - - - - - - - - - - - + + + - - + + - - - + + + - - - - - - - + + - - - + + + - - + + - - - + + + - - + + @@ -864,11 +805,6 @@ - - - - - @@ -909,11 +845,6 @@ - - - - - @@ -922,11 +853,6 @@ - - - - - @@ -947,11 +873,6 @@ - - - - - @@ -960,11 +881,6 @@ - - - - - @@ -1072,9 +988,6 @@ - - - @@ -1281,31 +1194,23 @@ - - - - - - - - - - - + + + - - + + - - - + + + - - + + - - + + @@ -1316,12 +1221,15 @@ - - - + + + - - + + + + + @@ -1329,49 +1237,18 @@ - - - - - - - - - - - - - - - - - - - - - + + + - - - - - - - - - - - - - - - - - - + + + + + @@ -1446,17 +1323,6 @@ - - - - - - - - - - - @@ -1465,6 +1331,17 @@ + + + + + + + + + + + @@ -1473,19 +1350,6 @@ - - - - - - - - - - - - - @@ -1494,25 +1358,19 @@ - - - - - - - - + + + - - - - - + + + + @@ -1523,6 +1381,17 @@ + + + + + + + + + + + @@ -1539,12 +1408,12 @@ - - - + + + - - + + @@ -1556,6 +1425,9 @@ + + + @@ -1584,15 +1456,10 @@ - - - - - - - - + + + @@ -1610,35 +1477,36 @@ - - - - - - - - + + + - - - - - - - - + + + - - - + + + + + + + + + + + + + + @@ -1649,41 +1517,36 @@ - - - - - - + + + - - - - + + - - - + + + - - + + - - - + + + - - + + - - - + + + - - + + @@ -1694,155 +1557,140 @@ - - - + + + - - + + - - - - - - + + + - - - - + + - - - + + + - - + + - - - + + + - - + + - - - - - - + + + - - - - + + - - - + + + - - + + - - - + + + - - + + - - - + + + - - + + - - - + + + - - + + - - - + + + - - + + - - - + + + - - + + - - - + + + - - + + - - - + + + - - + + - - - - - - + + + - - - - + + - - - + + + - - + + - - - + + + - - + + - - - + + + - - + + @@ -1853,61 +1701,46 @@ - - - - - - + + + - - - - + + - - - - - - + + + - - - - + + - - - + + + - - - + + + - - + + - - - - - - + + + - - - - + + - - - + + + @@ -1920,12 +1753,12 @@ - - - + + + - - + + @@ -1933,12 +1766,12 @@ - - - + + + - - + + @@ -1949,12 +1782,12 @@ - - - + + + - - + + @@ -1965,20 +1798,20 @@ - - - + + + - - + + - - - + + + - - + + @@ -1990,13 +1823,18 @@ - - - + + + + + + + + @@ -2005,49 +1843,44 @@ - - - - - - - - + + + - - + + - - - + + + - - + + - - - + + + - - + + - - - + + + - - + + - - - + + + - - + + @@ -2058,28 +1891,28 @@ - - - + + + - - + + - - - + + + - - + + - - - + + + - - + + @@ -2087,12 +1920,12 @@ - - - + + + - - + + @@ -2104,13 +1937,18 @@ - - - + + + + + + + + @@ -2119,17 +1957,12 @@ - - - - - - - - + + + - - + + @@ -2137,9 +1970,9 @@ - - - + + + @@ -2147,22 +1980,12 @@ - - - - - - - - - - - - - + + + - - + + @@ -2170,12 +1993,12 @@ - - - + + + - - + + @@ -2186,23 +2009,23 @@ - - - + + + - - + + - - - + + + - - + + - - + + @@ -2226,12 +2049,12 @@ - - - + + + - - + + @@ -2239,95 +2062,83 @@ - - - + + + - - + + - - - + + + - - + + - - - + + + - - + + - - + + - - + + - - - - + + - - - + + + - - + + - - + + - - + + - - - + + + - - - - - - - - - - - - + + - - - + + + - - + + - - - + + + - - + + - - - + + + - - + + @@ -2365,14 +2176,6 @@ - - - - - - - - @@ -2428,14 +2231,6 @@ - - - - - - - - @@ -2458,14 +2253,6 @@ - - - - - - - - @@ -2477,14 +2264,6 @@ - - - - - - - - @@ -2507,14 +2286,6 @@ - - - - - - - - @@ -2548,14 +2319,6 @@ - - - - - - - - @@ -2567,14 +2330,6 @@ - - - - - - - - @@ -2586,14 +2341,6 @@ - - - - - - - - @@ -2618,14 +2365,6 @@ - - - - - - - - @@ -2634,14 +2373,6 @@ - - - - - - - - @@ -2750,11 +2481,6 @@ - - - - - @@ -2763,11 +2489,6 @@ - - - - - @@ -2784,11 +2505,6 @@ - - - - - @@ -2805,11 +2521,6 @@ - - - - - @@ -2836,9 +2547,7 @@ - - - + @@ -3003,16 +2712,6 @@ - - - - - - - - - - @@ -3029,11 +2728,6 @@ - - - - - @@ -3042,11 +2736,6 @@ - - - - - @@ -3057,11 +2746,6 @@ - - - - - @@ -3080,11 +2764,6 @@ - - - - - @@ -3119,11 +2798,6 @@ - - - - - @@ -3140,11 +2814,6 @@ - - - - - @@ -3153,11 +2822,6 @@ - - - - - @@ -3171,19 +2835,14 @@ - - - + + + - - - - - - - - + + + @@ -3210,14 +2869,6 @@ - - - - - - - - @@ -3268,12 +2919,12 @@ - - - + + + - - + + @@ -3289,9 +2940,9 @@ - - - + + + @@ -3304,38 +2955,33 @@ - - - - - - - - + + + - - - + + + - - + + - - - + + + - - + + - - - + + + @@ -3343,11 +2989,6 @@ - - - - - @@ -3364,36 +3005,20 @@ - - - - - - - - - - - - - - - - - - - + + + - - + + - - - + + + - - + + @@ -3446,11 +3071,6 @@ - - - - - @@ -3459,16 +3079,6 @@ - - - - - - - - - - @@ -3479,11 +3089,6 @@ - - - - - @@ -3532,14 +3137,6 @@ - - - - - - - - @@ -3549,6 +3146,9 @@ + + + @@ -3570,6 +3170,9 @@ + + + @@ -3600,11 +3203,6 @@ - - - - - @@ -3615,11 +3213,6 @@ - - - - - @@ -3660,38 +3253,17 @@ - - - + + + - - + + - - - - - - - - - - - - - - - - - - - - - - - - + + + @@ -3730,9 +3302,9 @@ - - - + + + @@ -3751,38 +3323,38 @@ - - - + + + - - + + - - - + + + - - - + + + - - + + - - - + + + - - + + - - - + + + @@ -3793,112 +3365,51 @@ - - - + + + - - - + + + - - - + + + - - - - + + - - - - - - - - - - - + + + - - - + + + - - - - + + - - - + + + - - + + - - - + + + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + @@ -3957,22 +3468,12 @@ - - - - - - - - + + + - - - - - - - + + @@ -3996,15 +3497,10 @@ - - - - - - - - + + + @@ -4025,25 +3521,20 @@ - - - - - - - - + + + - - - + + + - - + + @@ -4097,9 +3588,9 @@ - - - + + + @@ -4120,55 +3611,6 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - @@ -4198,9 +3640,9 @@ - - - + + + @@ -4259,205 +3701,186 @@ - - - + + + - - + + - - - + + + - - + + - - - + + + - - + + - - - - - - + + + - - - + + + - - + + - - - + + + - - - - - - + + + - - - + + + - - - - + + - - - + + + - - + + - - - + + + - - + + - - - - - - + + + - - - + + + - - + + - - - + + + - - - - - - - + + - - - + + + - - + + - - - + + + - - + + - - - + + + - - + + - - - + + + - - + + - - - + + + - - + + - - - + + + - - + + - - - + + + - - + + - - - + + + - - + + - - - - - - + + + - - - + + + - - + + - - - + + + - - - - + + - - + + + + @@ -5195,15 +4618,10 @@ - - - - - - - - + + + @@ -5237,14 +4655,6 @@ - - - - - - - - @@ -5266,11 +4676,6 @@ - - - - - @@ -5323,9 +4728,6 @@ - - - @@ -5334,9 +4736,6 @@ - - - @@ -5345,9 +4744,6 @@ - - - @@ -5356,9 +4752,6 @@ - - - @@ -5367,9 +4760,6 @@ - - - @@ -5378,54 +4768,36 @@ - - - - - - - - + + + - - - - - - - - + + + - - - - - - - - - - - + + + - - - + + + @@ -5473,17 +4845,12 @@ - - - + + + - - - - - - - + + @@ -5539,14 +4906,6 @@ - - - - - - - - @@ -5555,12 +4914,15 @@ - - - + + + + + + - - + + @@ -5581,14 +4943,6 @@ - - - - - - - - @@ -5597,6 +4951,16 @@ + + + + + + + + + + @@ -5605,36 +4969,28 @@ - - - - - - - - - - - + + + - - + + - - - + + + - - + + - - - + + + - - + + @@ -5650,36 +5006,28 @@ - - - - - - - - - - - + + + - - + + - - - + + + - - + + - - - + + + - - + + @@ -5714,14 +5062,6 @@ - - - - - - - - @@ -5851,6 +5191,9 @@ + + + @@ -5858,18 +5201,10 @@ - - - - - - - - - - - + + + @@ -5885,18 +5220,10 @@ - - - - - - - - - - - + + + @@ -5912,18 +5239,10 @@ - - - - - - - - - - - + + + @@ -5931,15 +5250,15 @@ - - - + + + - - + + - - + + @@ -5950,23 +5269,12 @@ - - - - - - - - - - - - - - + + + - - + + @@ -5974,12 +5282,15 @@ - - - + + + + + + - - + + @@ -5990,25 +5301,19 @@ - - - - - - - - - - - - - - + + + + + + + + @@ -6022,34 +5327,21 @@ - - - + + + - - - - - - - - - - - - - - - + + + + + - - - @@ -6067,47 +5359,27 @@ - - - - - - - - - - - - - + + + - - - - - - - - + + + - - - - - @@ -6126,11 +5398,6 @@ - - - - - @@ -6139,11 +5406,6 @@ - - - - - @@ -6181,11 +5443,6 @@ - - - - - @@ -6202,11 +5459,6 @@ - - - - - @@ -6246,6 +5498,17 @@ + + + + + + + + + + + @@ -6280,12 +5543,12 @@ - - - + + + - - + + @@ -6296,6 +5559,11 @@ + + + + + @@ -6365,17 +5633,12 @@ - - - - - - + + + - - - - + + @@ -6394,35 +5657,25 @@ - - - - - - + + + - - - - + + - - - + + + - - - + + + - - - - - - - + + @@ -6435,14 +5688,9 @@ - - - - - - - - + + + @@ -6476,11 +5724,6 @@ - - - - - @@ -6496,99 +5739,28 @@ - - - + + + - - + + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + - - - + + + @@ -6599,6 +5771,17 @@ + + + + + + + + + + + @@ -6607,30 +5790,15 @@ - - - - - - - - - - - + + + - - - - - - - + + - - - - + + @@ -6641,6 +5809,17 @@ + + + + + + + + + + + @@ -6657,17 +5836,15 @@ - - - + + + - - + + - - - - + + @@ -6678,30 +5855,15 @@ - - - - - - - - - - - + + + - - - - + + - - - - - - - + + @@ -6709,6 +5871,17 @@ + + + + + + + + + + + @@ -6717,12 +5890,15 @@ - - - + + + - - + + + + + @@ -6741,12 +5917,15 @@ - - - + + + + + + - - + + @@ -6757,14 +5936,6 @@ - - - - - - - - @@ -6786,11 +5957,6 @@ - - - - - @@ -6799,46 +5965,52 @@ - - - + + + + + + + + + - - - + + + - - + + - - - + + + - - + + - - - + + + - - + + - - - + + + - - - + + + - - + + @@ -6860,14 +6032,6 @@ - - - - - - - - diff --git a/gradle/versions.gradle b/gradle/versions.gradle index f239370ab7a..45626801fc0 100644 --- a/gradle/versions.gradle +++ b/gradle/versions.gradle @@ -30,14 +30,11 @@ dependencyManagement { dependency 'com.github.ben-manes.caffeine:caffeine:3.1.8' - dependencySet(group: 'com.github.tomakehurst', version: '2.35.0') { - entry'wiremock-jre8-standalone' - entry'wiremock-jre8' - } + dependency 'com.github.oshi:oshi-core:6.4.10' - dependency 'com.google.auto.service:auto-service:1.0.1' + dependency 'com.google.auto.service:auto-service:1.1.1' - dependencySet(group: 'com.google.dagger', version: '2.45') { + dependencySet(group: 'com.google.dagger', version: '2.50') { entry'dagger-compiler' entry'dagger' } @@ -51,37 +48,37 @@ dependencyManagement { dependency 'com.google.guava:guava:31.1-jre' - dependency 'com.graphql-java:graphql-java:20.1' + dependency 'com.graphql-java:graphql-java:21.3' - dependency 'com.splunk.logging:splunk-library-javalogging:1.11.5' + dependency 'com.splunk.logging:splunk-library-javalogging:1.11.8' - dependency 'com.squareup.okhttp3:okhttp:4.10.0' + dependency 'com.squareup.okhttp3:okhttp:4.12.0' - dependency 'commons-codec:commons-codec:1.15' + dependency 'commons-codec:commons-codec:1.16.0' - dependency 'commons-io:commons-io:2.11.0' + dependency 'commons-io:commons-io:2.15.1' - dependency 'dnsjava:dnsjava:3.5.2' + dependency 'dnsjava:dnsjava:3.5.3' - dependencySet(group: 'info.picocli', version: '4.7.1') { + dependencySet(group: 'info.picocli', version: '4.7.5') { entry 'picocli' entry 'picocli-codegen' } - dependencySet(group: 'io.grpc', version: '1.59.0') { + dependencySet(group: 'io.grpc', version: '1.60.1') { entry 'grpc-all' entry 'grpc-core' entry 'grpc-netty' entry 'grpc-stub' } - dependency 'io.kubernetes:client-java:18.0.0' + dependency 'io.kubernetes:client-java:18.0.1' - dependency 'io.netty:netty-all:4.1.100.Final' + dependency 'io.netty:netty-all:4.1.104.Final' dependency 'io.netty:netty-tcnative-boringssl-static:2.0.62.Final' - dependency group: 'io.netty', name: 'netty-transport-native-epoll', version:'4.1.100.Final', classifier: 'linux-x86_64' - dependency group: 'io.netty', name: 'netty-transport-native-kqueue', version:'4.1.100.Final', classifier: 'osx-x86_64' - dependency 'io.netty:netty-transport-native-unix-common:4.1.100.Final' + dependency group: 'io.netty', name: 'netty-transport-native-epoll', version:'4.1.104.Final', classifier: 'linux-x86_64' + dependency group: 'io.netty', name: 'netty-transport-native-kqueue', version:'4.1.104.Final', classifier: 'osx-x86_64' + dependency 'io.netty:netty-transport-native-unix-common:4.1.104.Final' dependency 'io.opentelemetry:opentelemetry-api:1.24.0' dependency 'io.opentelemetry:opentelemetry-exporter-otlp:1.24.0' @@ -108,6 +105,20 @@ dependencyManagement { dependency 'io.reactivex.rxjava2:rxjava:2.2.21' + dependencySet(group: 'io.tmio', version: '2.4.2') { + entry 'tuweni-bytes' + entry 'tuweni-config' + entry 'tuweni-concurrent' + entry 'tuweni-crypto' + entry 'tuweni-devp2p' + entry 'tuweni-dns-discovery' + entry 'tuweni-io' + entry 'tuweni-net' + entry 'tuweni-rlp' + entry 'tuweni-toml' + entry 'tuweni-units' + } + dependencySet(group: 'io.vertx', version: '4.3.5') { entry 'vertx-auth-jwt' entry 'vertx-codegen' @@ -121,43 +132,29 @@ dependencyManagement { dependency 'junit:junit:4.13.2' - dependency 'net.java.dev.jna:jna:5.13.0' + dependency 'net.java.dev.jna:jna:5.14.0' - dependency 'org.apache.commons:commons-compress:1.23.0' - dependency 'org.apache.commons:commons-lang3:3.12.0' - dependency 'org.apache.commons:commons-text:1.10.0' + dependency 'org.apache.commons:commons-compress:1.25.0' + dependency 'org.apache.commons:commons-lang3:3.14.0' + dependency 'org.apache.commons:commons-text:1.11.0' - dependencySet(group: 'org.apache.logging.log4j', version: '2.20.0') { + dependencySet(group: 'org.apache.logging.log4j', version: '2.22.1') { entry 'log4j-api' entry 'log4j-core' entry 'log4j-jul' entry 'log4j-slf4j2-impl' } - dependencySet(group: 'io.tmio', version: '2.4.2') { - entry 'tuweni-bytes' - entry 'tuweni-config' - entry 'tuweni-concurrent' - entry 'tuweni-crypto' - entry 'tuweni-devp2p' - entry 'tuweni-dns-discovery' - entry 'tuweni-io' - entry 'tuweni-net' - entry 'tuweni-rlp' - entry 'tuweni-toml' - entry 'tuweni-units' - } - - dependency 'org.assertj:assertj-core:3.24.2' + dependency 'org.assertj:assertj-core:3.25.1' dependency 'org.awaitility:awaitility:4.2.0' - dependencySet(group: 'org.bouncycastle', version: '1.76') { + dependencySet(group: 'org.bouncycastle', version: '1.77') { entry'bcpkix-jdk18on' entry'bcprov-jdk18on' } - dependency 'org.fusesource.jansi:jansi:2.4.0' + dependency 'org.fusesource.jansi:jansi:2.4.1' dependency 'org.openjdk.jol:jol-core:0.17' dependency 'tech.pegasys:jc-kzg-4844:0.8.0' @@ -170,16 +167,16 @@ dependencyManagement { entry 'blake2bf' } - dependencySet(group: 'org.immutables', version: '2.9.3') { + dependencySet(group: 'org.immutables', version: '2.10.0') { entry 'value-annotations' entry 'value' } - dependency 'org.java-websocket:Java-WebSocket:1.5.3' + dependency 'org.java-websocket:Java-WebSocket:1.5.5' - dependency 'org.jetbrains.kotlin:kotlin-stdlib:1.8.10' + dependency 'org.jetbrains.kotlin:kotlin-stdlib:1.9.22' - dependencySet(group: 'org.junit.jupiter', version: '5.8.2') { + dependencySet(group: 'org.junit.jupiter', version: '5.10.1') { entry 'junit-jupiter' entry 'junit-jupiter-api' entry 'junit-jupiter-engine' @@ -188,9 +185,9 @@ dependencyManagement { dependency 'org.junit.platform:junit-platform-runner:1.9.2' - dependency 'org.junit.vintage:junit-vintage-engine:5.9.2' + dependency 'org.junit.vintage:junit-vintage-engine:5.10.1' - dependencySet(group: 'org.jupnp', version:'2.7.0') { + dependencySet(group: 'org.jupnp', version:'2.7.1') { entry 'org.jupnp.support' entry 'org.jupnp' } @@ -207,31 +204,33 @@ dependencyManagement { dependency 'org.owasp.encoder:encoder:1.2.3' - dependency 'org.rocksdb:rocksdbjni:8.3.2' + dependency 'org.rocksdb:rocksdbjni:8.9.1' - dependencySet(group: 'org.slf4j', version:'2.0.7') { + dependencySet(group: 'org.slf4j', version:'2.0.10') { entry 'slf4j-api' entry 'slf4j-nop' } - dependency 'org.springframework.security:spring-security-crypto:6.0.2' + dependency 'org.springframework.security:spring-security-crypto:6.2.1' - dependency 'org.testcontainers:testcontainers:1.17.6' + dependency 'org.testcontainers:testcontainers:1.19.3' dependency 'org.web3j:quorum:4.9.5' - dependencySet(group: 'org.web3j', version: '4.9.7') { + dependencySet(group: 'org.web3j', version: '4.10.3') { entry 'abi' entry 'besu' entry 'core' entry 'crypto' } - dependency 'org.xerial.snappy:snappy-java:1.1.9.1' + dependencySet(group: 'org.wiremock', version: '3.3.1') { + entry 'wiremock' + } + + dependency 'org.xerial.snappy:snappy-java:1.1.10.5' dependency 'org.yaml:snakeyaml:2.0' dependency 'tech.pegasys.discovery:discovery:22.2.0' - - dependency 'com.github.oshi:oshi-core:6.4.1' } }