Skip to content

Commit

Permalink
Update dependencies (#1547)
Browse files Browse the repository at this point in the history
  • Loading branch information
injectives authored Apr 2, 2024
1 parent 2db210a commit 6da7f62
Show file tree
Hide file tree
Showing 7 changed files with 17 additions and 13 deletions.
1 change: 1 addition & 0 deletions benchkit-backend/LICENSES.txt
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@ libraries. For an overview of the licenses see the NOTICE.txt file.

------------------------------------------------------------------------------
Apache Software License, Version 2.0
Byte Buddy (without dependencies)
Jackson-annotations
Jackson-core
jackson-databind
Expand Down
1 change: 1 addition & 0 deletions benchkit-backend/NOTICE.txt
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,7 @@ Third-party licenses
--------------------

Apache Software License, Version 2.0
Byte Buddy (without dependencies)
Jackson-annotations
Jackson-core
jackson-databind
Expand Down
20 changes: 10 additions & 10 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -36,31 +36,31 @@
<!-- Please note that when updating this dependency -->
<!-- (i.e. due to a security vulnerability or bug) that the -->
<!-- corresponding server dependency also needs updating.-->
<netty-bom.version>4.1.107.Final</netty-bom.version>
<netty-bom.version>4.1.108.Final</netty-bom.version>
<!-- Please note that when updating this dependency -->
<!-- (i.e. due to a security vulnerability or bug) that the -->
<!-- corresponding server dependency also needs updating.-->
<reactor-bom.version>2023.0.3</reactor-bom.version>
<reactor-bom.version>2023.0.4</reactor-bom.version>
<slf4j-api.version>1.7.36</slf4j-api.version>
<hamcrest.version>2.2</hamcrest.version>
<mockito-core.version>5.8.0</mockito-core.version>
<mockito-core.version>5.11.0</mockito-core.version>
<junit.version>5.10.2</junit.version>
<!-- supply a newer version than the one supplied by the reactive-streams 1.0.4 -->
<testng.version>7.9.0</testng.version>
<jarchivelib.version>1.2.0</jarchivelib.version>
<!-- supply a newer version than the one supplied by the jarchivelib 1.2.0 -->
<commons-compress.version>1.26.0</commons-compress.version>
<commons-compress.version>1.26.1</commons-compress.version>
<!-- an optional dependency of commons-compress used by TarArchiveOutputStream -->
<commons-codec.version>1.16.1</commons-codec.version>
<bouncycastle-jdk18on.version>1.77</bouncycastle-jdk18on.version>
<logback-classic.version>1.2.13</logback-classic.version>
<jackson.version>2.16.1</jackson.version>
<lombok.version>1.18.30</lombok.version>
<svm.version>23.1.2</svm.version>
<micrometer.version>1.12.3</micrometer.version>
<jackson.version>2.17.0</jackson.version>
<lombok.version>1.18.32</lombok.version>
<svm.version>24.0.0</svm.version>
<micrometer.version>1.12.4</micrometer.version>
<blockhound.version>1.0.8.RELEASE</blockhound.version>
<testcontainers.version>1.19.6</testcontainers.version>
<build-resources.version>5.17.0</build-resources.version>
<testcontainers.version>1.19.7</testcontainers.version>
<build-resources.version>5.18.1</build-resources.version>
<!-- To be overwritten by child projects -->
<moduleName/>
</properties>
Expand Down
1 change: 1 addition & 0 deletions testkit-backend/LICENSES.txt
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@ libraries. For an overview of the licenses see the NOTICE.txt file.

------------------------------------------------------------------------------
Apache Software License, Version 2.0
Byte Buddy (without dependencies)
Jackson-annotations
Jackson-core
jackson-databind
Expand Down
1 change: 1 addition & 0 deletions testkit-backend/NOTICE.txt
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,7 @@ Third-party licenses
--------------------

Apache Software License, Version 2.0
Byte Buddy (without dependencies)
Jackson-annotations
Jackson-core
jackson-databind
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ public Map<String, Object> deserialize(JsonParser p, DeserializationContext ctxt
if (t != JsonToken.FIELD_NAME) {
ctxt.reportWrongTokenException(this, JsonToken.FIELD_NAME, null);
}
key = p.getCurrentName();
key = p.currentName();
}

for (; key != null; key = p.nextFieldName()) {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ public <T> T mapData(JsonParser p, DeserializationContext ctxt, T data) throws I
|| token == JsonToken.VALUE_NUMBER_INT
|| token == JsonToken.VALUE_STRING) {
if (token == JsonToken.VALUE_NUMBER_INT) {
var field = p.getCurrentName();
var field = p.currentName();
if (fieldIsType(data, field, Long.class)) {
setField(data, field, p.getLongValue());
} else if (fieldIsType(data, field, Integer.class)) {
Expand All @@ -39,7 +39,7 @@ public <T> T mapData(JsonParser p, DeserializationContext ctxt, T data) throws I
throw new RuntimeException("Unhandled field type: " + field);
}
} else if (token == JsonToken.VALUE_STRING) {
var field = p.getCurrentName();
var field = p.currentName();
var value = p.getValueAsString();
setField(data, field, value);
}
Expand Down

0 comments on commit 6da7f62

Please sign in to comment.