This is an automated email from the ASF dual-hosted git repository.
earthchen pushed a commit to branch 3.3
in repository https://gitbox.apache.org/repos/asf/dubbo.git
The following commit(s) were added to refs/heads/3.3 by this push:
new 8814afac6b Update netty4_version to 4.2.12.Final (#16196)
8814afac6b is described below
commit 8814afac6b2106cfc0d4050ac8318df5774e560d
Author: Yukina <[email protected]>
AuthorDate: Thu Apr 9 10:54:04 2026 +0800
Update netty4_version to 4.2.12.Final (#16196)
* Update netty4_version to 4.2.12.Final
* Disable endpoint identification algorithm in SSL context
* Remove endpoint identification algorithm setting
---
dubbo-dependencies-bom/pom.xml | 2 +-
.../src/main/java/org/apache/dubbo/remoting/http3/Http3SslContexts.java | 1 +
2 files changed, 2 insertions(+), 1 deletion(-)
diff --git a/dubbo-dependencies-bom/pom.xml b/dubbo-dependencies-bom/pom.xml
index c9ded00e6f..bf0ba7d2ba 100644
--- a/dubbo-dependencies-bom/pom.xml
+++ b/dubbo-dependencies-bom/pom.xml
@@ -95,7 +95,7 @@
<javassist_version>3.30.2-GA</javassist_version>
<byte-buddy_version>1.18.7</byte-buddy_version>
<netty_version>3.2.10.Final</netty_version>
- <netty4_version>4.2.10.Final</netty4_version>
+ <netty4_version>4.2.12.Final</netty4_version>
<httpclient_version>4.5.14</httpclient_version>
<httpcore_version>4.4.16</httpcore_version>
<fastjson_version>1.2.83_noneautotype</fastjson_version>
diff --git
a/dubbo-remoting/dubbo-remoting-http3/src/main/java/org/apache/dubbo/remoting/http3/Http3SslContexts.java
b/dubbo-remoting/dubbo-remoting-http3/src/main/java/org/apache/dubbo/remoting/http3/Http3SslContexts.java
index 09e71d8ebe..129e77868b 100644
---
a/dubbo-remoting/dubbo-remoting-http3/src/main/java/org/apache/dubbo/remoting/http3/Http3SslContexts.java
+++
b/dubbo-remoting/dubbo-remoting-http3/src/main/java/org/apache/dubbo/remoting/http3/Http3SslContexts.java
@@ -123,6 +123,7 @@ public final class Http3SslContexts extends SslContext {
} catch (Throwable t) {
throw new IllegalArgumentException("Could not find certificate
file or the certificate is invalid.", t);
}
+ builder.endpointIdentificationAlgorithm(null);
try {
return
builder.applicationProtocols(Http3.supportedApplicationProtocols())
.build();