This is an automated email from the ASF dual-hosted git repository.
acosentino pushed a change to branch CAMEL-23263
in repository https://gitbox.apache.org/repos/asf/camel.git
discard 84b8992d4c22 CAMEL-23263 - Camel-Netty: Make SSL fallback path
PQC-capable with TLSv1.3 and named groups auto-configuration
add 5181a3f57a9b CAMEL-23259: Close channel on SSL/TLS handshake failure
in Netty comp… (#22295)
add 24314bc1fed2 Fix docs gulp race condition with dsl target directories
add 6f5860280635 CAMEL-23157: Contribute runtime dependencies API
add 3d0854a4f7df CAMEL-23263 - Camel-Netty: Make SSL fallback path
PQC-capable with TLSv1.3 and named groups auto-configuration
add 922203dc95bc CAMEL-23263 - Camel-Netty: Make SSL fallback path
PQC-capable with TLSv1.3 and named groups auto-configuration
This update added new revisions after undoing existing revisions.
That is to say, some revisions that were in the old version of the
branch are not in the new version. This situation occurs
when a user --force pushes a change and generates a repository
containing something like this:
* -- * -- B -- O -- O -- O (84b8992d4c22)
\
N -- N -- N refs/heads/CAMEL-23263 (922203dc95bc)
You should already have received notification emails for all of the O
revisions, and so the following emails describe only the N revisions
from the common base, B.
Any revisions marked "omit" are not gone; other references still
refer to them. Any revisions marked "discard" are gone forever.
No new revisions were added by this update.
Summary of changes:
.../netty/http/HttpClientInitializerFactory.java | 4 +-
.../netty/http/HttpServerInitializerFactory.java | 5 +-
.../netty/DefaultClientInitializerFactory.java | 4 +-
.../netty/DefaultServerInitializerFactory.java | 4 +-
.../netty/handlers/SslHandshakeFailureHandler.java | 54 ++++++++++++++++++++
.../component/netty/ssl/SSLEngineFactory.java | 17 ++++++-
.../component/netty/SSLEngineFactoryTest.java | 19 ++++---
.../netty/SslHandshakeFailureHandlerTest.java | 59 ++++++++++++++++++++++
docs/gulpfile.js | 3 +-
.../apache/camel/dsl/jbang/core/commands/Run.java | 8 ++-
.../dsl/jbang/core/common/PluginExporter.java | 11 ++++
11 files changed, 165 insertions(+), 23 deletions(-)
create mode 100644
components/camel-netty/src/main/java/org/apache/camel/component/netty/handlers/SslHandshakeFailureHandler.java
create mode 100644
components/camel-netty/src/test/java/org/apache/camel/component/netty/SslHandshakeFailureHandlerTest.java