Skip to content

Commit

Permalink
Update most dependecies to latest version (hyperledger#5269)
Browse files Browse the repository at this point in the history
Signed-off-by: Fabio Di Fabio <fabio.difabio@consensys.net>
  • Loading branch information
fab-10 authored and elenduuche committed Aug 16, 2023
1 parent e1d4c31 commit d0b00f4
Show file tree
Hide file tree
Showing 6 changed files with 1,168 additions and 1,584 deletions.
7 changes: 7 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,12 @@
# Changelog

## 23.4-RC

### Additions and Improvements
- Update most dependencies to latest version [#5269](https://github.com/hyperledger/besu/pull/5269)

### Bug Fixes

## 23.1.3

### Breaking Changes
Expand Down
2 changes: 1 addition & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ plugins {
id 'com.github.hierynomus.license' version '0.16.1-fix'
id 'com.jfrog.artifactory' version '4.28.3'
id 'io.spring.dependency-management' version '1.0.11.RELEASE'
id 'me.champeau.jmh' version '0.6.6' apply false
id 'me.champeau.jmh' version '0.7.0' apply false
id 'net.ltgt.errorprone' version '2.0.2'
id 'maven-publish'
id 'org.sonarqube' version '3.4.0.2513'
Expand Down
2 changes: 1 addition & 1 deletion datatypes/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ dependencies {
testImplementation 'junit:junit'
testImplementation 'org.assertj:assertj-core'
testImplementation 'org.junit.jupiter:junit-jupiter'

testRuntimeOnly 'org.junit.jupiter:junit-jupiter-engine'
testRuntimeOnly 'org.junit.vintage:junit-vintage-engine'
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ public static Handler<RoutingContext> handler() {
} else {
try {
ctx.put(ContextKey.REQUEST_BODY_AS_JSON_OBJECT.name(), ctx.getBodyAsJson());
} catch (DecodeException jsonObjectDecodeException) {
} catch (DecodeException | ClassCastException jsonObjectDecodeException) {
try {
final JsonArray batchRequest = ctx.getBodyAsJsonArray();
if (batchRequest.isEmpty()) {
Expand All @@ -47,7 +47,7 @@ public static Handler<RoutingContext> handler() {
} else {
ctx.put(ContextKey.REQUEST_BODY_AS_JSON_ARRAY.name(), batchRequest);
}
} catch (DecodeException jsonArrayDecodeException) {
} catch (DecodeException | ClassCastException jsonArrayDecodeException) {
errorResponse(response, JsonRpcError.PARSE_ERROR);
return;
}
Expand Down
Loading

0 comments on commit d0b00f4

Please sign in to comment.