This is an automated email from the ASF dual-hosted git repository.
github-bot pushed a change to branch regen_bot_40x
in repository https://gitbox.apache.org/repos/asf/camel.git
omit 70a32703506 Regen for commit 91c4fa38d14b60281a809823c8090d06fbbf1a39
add 742460de811 Camel-15211: add props to configure SSL context parameters
(#11812)
add e1da6dd4f8f Update known camel releases
new 44b6e98f6e9 Regen for commit 2bc854878a1b706ceefbec35aa13d27c8a34d23d
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 (70a32703506)
\
N -- N -- N refs/heads/regen_bot_40x (44b6e98f6e9)
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.
The 1 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails. The revisions
listed as "add" were already present in the repository and have only
been added to this reference.
Summary of changes:
.../main/camel-main-configuration-metadata.json | 7 +
.../camel/catalog/releases/camel-releases.json | 7 +
components/camel-jetty/pom.xml | 5 +
.../camel/component/jetty/MainHttpsRouteTest.java | 123 +++++++++++++++
.../MainNettyGlobalSSLContextParametersTest.java | 86 +++++++++++
.../camel-vertx/camel-vertx-websocket/pom.xml | 5 +
.../vertx/websocket/MainVertxWebsocketSSLTest.java | 67 ++++++++
.../main/SSLConfigurationPropertiesConfigurer.java | 79 ++++++++++
.../camel-main-configuration-metadata.json | 7 +
...rg.apache.camel.main.SSLConfigurationProperties | 2 +
core/camel-main/src/main/docs/main.adoc | 15 ++
.../org/apache/camel/main/BaseMainSupport.java | 65 ++++++++
.../camel/main/MainConfigurationProperties.java | 23 +++
.../camel/main/SSLConfigurationProperties.java | 171 +++++++++++++++++++++
.../java/org/apache/camel/main/MainSSLTest.java | 123 +++++++++++++++
.../maven/packaging/PrepareCamelMainMojo.java | 10 +-
16 files changed, 794 insertions(+), 1 deletion(-)
create mode 100644
components/camel-jetty/src/test/java/org/apache/camel/component/jetty/MainHttpsRouteTest.java
create mode 100644
components/camel-netty/src/test/java/org/apache/camel/component/netty/MainNettyGlobalSSLContextParametersTest.java
create mode 100644
components/camel-vertx/camel-vertx-websocket/src/test/java/org/apache/camel/component/vertx/websocket/MainVertxWebsocketSSLTest.java
create mode 100644
core/camel-main/src/generated/java/org/apache/camel/main/SSLConfigurationPropertiesConfigurer.java
create mode 100644
core/camel-main/src/generated/resources/META-INF/services/org/apache/camel/configurer/org.apache.camel.main.SSLConfigurationProperties
create mode 100644
core/camel-main/src/main/java/org/apache/camel/main/SSLConfigurationProperties.java
create mode 100644
core/camel-main/src/test/java/org/apache/camel/main/MainSSLTest.java