Skip to content

Commit 214cc08

Browse files
committed
Update test runtime Netty dependencies
Netty did something in a patch release that they probably shouldn't have: moving classes around in a patch release. It made io.netty:netty-handler:4.1.70 Netty incompatible with io.netty:netty-tcnative-boringssl-static:2.0.39.Final. Fixed by updating to io.netty:netty-tcnative-boringssl-static:2.0.46.Final. JAVA-4202
1 parent 8306f09 commit 214cc08

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

build.gradle

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -45,6 +45,7 @@ ext {
4545
configDir = new File(rootDir, 'config')
4646
jnrUnixsocketVersion = '0.38.13'
4747
nettyVersion = '4.1.70.Final'
48+
nettyTcnativeBoringsslVersion = '2.0.46.Final'
4849
snappyVersion = '1.1.8.4'
4950
zstdVersion = '1.5.0-4'
5051
mongoCryptVersion = '1.3.0'

driver-core/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ dependencies {
4949
implementation "org.mongodb:mongodb-crypt:$mongoCryptVersion", optional
5050

5151
testImplementation project(':bson').sourceSets.test.output
52-
testRuntimeOnly "io.netty:netty-tcnative-boringssl-static:2.0.39.Final"
52+
testRuntimeOnly "io.netty:netty-tcnative-boringssl-static:$nettyTcnativeBoringsslVersion"
5353
}
5454

5555
buildConfig {

0 commit comments

Comments
 (0)