This is an automated email from the ASF dual-hosted git repository.
adoroszlai pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/ratis-thirdparty.git
The following commit(s) were added to refs/heads/master by this push:
new dd1b154 RATIS-2491. Upgrade Netty to 4.2.12 (#101)
dd1b154 is described below
commit dd1b1547f838faedaa3ae6e4f620123baae62247
Author: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
AuthorDate: Thu Apr 16 14:41:46 2026 +0200
RATIS-2491. Upgrade Netty to 4.2.12 (#101)
---
pom.xml | 2 +-
.../main/java/org/apache/ratis/thirdparty/demo/netty/NettyUtils.java | 4 +++-
2 files changed, 4 insertions(+), 2 deletions(-)
diff --git a/pom.xml b/pom.xml
index 5ec676a..666d483 100644
--- a/pom.xml
+++ b/pom.xml
@@ -68,7 +68,7 @@
<!--Version of grpc to be shaded -->
<shaded.grpc.version>1.80.0</shaded.grpc.version>
<!--Version of Netty to be shaded -->
- <shaded.netty.version>4.1.132.Final</shaded.netty.version>
+ <shaded.netty.version>4.2.12.Final</shaded.netty.version>
<!--Version of dropwizard to be shaded -->
<shaded.dropwizard.version>4.2.38</shaded.dropwizard.version>
diff --git
a/test/src/main/java/org/apache/ratis/thirdparty/demo/netty/NettyUtils.java
b/test/src/main/java/org/apache/ratis/thirdparty/demo/netty/NettyUtils.java
index 302fb54..b36c8ad 100644
--- a/test/src/main/java/org/apache/ratis/thirdparty/demo/netty/NettyUtils.java
+++ b/test/src/main/java/org/apache/ratis/thirdparty/demo/netty/NettyUtils.java
@@ -48,6 +48,7 @@ public interface NettyUtils {
b.clientAuth(ClientAuth.REQUIRE);
b.trustManager(conf.getClientCertChain());
}
+ b.endpointIdentificationAlgorithm(null);
if (conf.encryptionEnabled()) {
b.ciphers(conf.getTlsCipherSuitesWithEncryption());
} else {
@@ -64,6 +65,7 @@ public interface NettyUtils {
if (conf.isMutualAuthn()) {
b.keyManager(conf.getCertChain(), conf.getPrivateKey());
}
+ b.endpointIdentificationAlgorithm(null);
if (conf.encryptionEnabled()) {
b.ciphers(conf.getTlsCipherSuitesWithEncryption());
} else {
@@ -71,4 +73,4 @@ public interface NettyUtils {
}
return b;
}
-}
\ No newline at end of file
+}