Skip to content

Commit abd2252

Browse files
authored
Update dependencies (#1553)
1 parent b4dc7f2 commit abd2252

File tree

5 files changed

+14
-11
lines changed

5 files changed

+14
-11
lines changed

README.md

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -84,9 +84,7 @@ Before contributing to this project, please take a few minutes to read our [Cont
8484

8585
### Java Version
8686

87-
For the 1.5+ Driver Series, the source code _must_ compile on Java 8.
88-
89-
For the previous versions, the compilation requires Java 7.
87+
For the 4.4.x Driver Series, the source code _must_ compile on Java 8.
9088

9189
### Building
9290

driver/src/main/java/org/neo4j/driver/internal/svm/NettySubstitutions.java

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -43,6 +43,7 @@
4343
import io.netty.util.internal.logging.JdkLoggerFactory;
4444
import java.security.PrivateKey;
4545
import java.security.Provider;
46+
import java.security.SecureRandom;
4647
import java.security.cert.X509Certificate;
4748
import java.util.Map;
4849
import javax.net.ssl.KeyManagerFactory;
@@ -85,6 +86,7 @@ final class Target_io_netty_handler_ssl_JdkSslServerContext {
8586
ClientAuth clientAuth,
8687
String[] protocols,
8788
boolean startTls,
89+
SecureRandom secureRandom,
8890
String keyStore)
8991
throws SSLException {}
9092
}
@@ -107,6 +109,7 @@ final class Target_io_netty_handler_ssl_JdkSslClientContext {
107109
String[] protocols,
108110
long sessionCacheSize,
109111
long sessionTimeout,
112+
SecureRandom secureRandom,
110113
String keyStoreType)
111114
throws SSLException {}
112115
}
@@ -215,6 +218,7 @@ static SslContext newServerContextInternal(
215218
String[] protocols,
216219
boolean startTls,
217220
boolean enableOcsp,
221+
SecureRandom secureRandom,
218222
String keyStoreType,
219223
Map.Entry<SslContextOption<?>, Object>... ctxOptions)
220224
throws SSLException {
@@ -238,6 +242,7 @@ static SslContext newServerContextInternal(
238242
clientAuth,
239243
protocols,
240244
startTls,
245+
secureRandom,
241246
keyStoreType);
242247
}
243248

@@ -258,6 +263,7 @@ static SslContext newClientContextInternal(
258263
long sessionCacheSize,
259264
long sessionTimeout,
260265
boolean enableOcsp,
266+
SecureRandom secureRandom,
261267
String keyStoreType,
262268
Map.Entry<SslContextOption<?>, Object>... options)
263269
throws SSLException {
@@ -278,6 +284,7 @@ static SslContext newClientContextInternal(
278284
protocols,
279285
sessionCacheSize,
280286
sessionTimeout,
287+
secureRandom,
281288
keyStoreType);
282289
}
283290
}

pom.xml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -34,11 +34,11 @@
3434
<!-- Please note that when updating this dependency -->
3535
<!-- (i.e. due to a security vulnerability or bug) that the -->
3636
<!-- corresponding server dependency also needs updating.-->
37-
<netty-bom.version>4.1.109.Final</netty-bom.version>
37+
<netty-bom.version>4.1.110.Final</netty-bom.version>
3838
<!-- Please note that when updating this dependency -->
3939
<!-- (i.e. due to a security vulnerability or bug) that the -->
4040
<!-- corresponding server dependency also needs updating.-->
41-
<reactor-bom.version>2023.0.5</reactor-bom.version>
41+
<reactor-bom.version>2023.0.6</reactor-bom.version>
4242
<rxjava.version>2.2.21</rxjava.version>
4343
<slf4j-api.version>1.7.36</slf4j-api.version>
4444
<hamcrest-junit.version>2.0.0.0</hamcrest-junit.version>
@@ -48,12 +48,12 @@
4848
<jarchivelib.version>1.2.0</jarchivelib.version>
4949
<bouncycastle-jdk18on.version>1.78.1</bouncycastle-jdk18on.version>
5050
<logback-classic.version>1.2.13</logback-classic.version>
51-
<jackson.version>2.17.0</jackson.version>
51+
<jackson.version>2.17.1</jackson.version>
5252
<lombok.version>1.18.32</lombok.version>
5353
<svm.version>21.3.10</svm.version>
54-
<micrometer.version>1.12.5</micrometer.version>
55-
<testcontainers.version>1.19.7</testcontainers.version>
56-
<build-resources.version>4.4.32</build-resources.version>
54+
<micrometer.version>1.13.0</micrometer.version>
55+
<testcontainers.version>1.19.8</testcontainers.version>
56+
<build-resources.version>4.4.34</build-resources.version>
5757
<!-- To be overwritten by child projects -->
5858
<moduleName/>
5959
</properties>

testkit-backend/LICENSES.txt

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,6 @@ libraries. For an overview of the licenses see the NOTICE.txt file.
44

55
------------------------------------------------------------------------------
66
Apache Software License, Version 2.0
7-
Byte Buddy (without dependencies)
87
Jackson-annotations
98
Jackson-core
109
jackson-databind

testkit-backend/NOTICE.txt

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,6 @@ Third-party licenses
1919
--------------------
2020

2121
Apache Software License, Version 2.0
22-
Byte Buddy (without dependencies)
2322
Jackson-annotations
2423
Jackson-core
2524
jackson-databind

0 commit comments

Comments
 (0)