This is an automated email from the ASF dual-hosted git repository.
github-bot pushed a change to branch camel-master
in repository https://gitbox.apache.org/repos/asf/camel-quarkus.git.
discard 548f5cd Upgrade to Camel 3.6.0
discard 37008fc Remove createEndpoint method override in
QuarkusVertxWebsocketComponent
discard f4d4a79 Remove QuarkusVertxHttpBinding
add 9542abe AWS2-Lambda Extension: Adding interceptors and align to the
other extensions
add cc4df64 Fixed CS
add ef739ea Tests for #1563 contextPath ignored for platform-http with
REST DSL
add 2ed8db3 Fix comment spelling
add 39d404d Test for #1497 xml-io should pass namespace info to
NamespaceAware elements
add 27d5609 Do not run main-command-mode and master tests on Quarkus
Platform
add 2a1824b Added ssl authentation to the nats extensions
add 21e3ec3 Document cq:create -Dcq.nativeSupported=false for creating
JVM-only extensions #1662
add 5a4af97 Upgrade to Quarkus 1.8.0.Final
add ba705d8 Add PGP key for James Netherton
add 6a69bdc Upgrade Quarkus Qpid JMS to 0.18.0
add b7c6875 camel-quarkus-main - Uses reflection for setting its name
#1765
add d6a6b44 Add some pre-release tasks to the release guide
new 5242af1 Remove QuarkusVertxHttpBinding
new ec682dc Remove createEndpoint method override in
QuarkusVertxWebsocketComponent
new 37931b8 Upgrade to Camel 3.6.0
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 (548f5cd)
\
N -- N -- N refs/heads/camel-master (37931b8)
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 3 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:
KEYS | 36 +++++++++++++++++++
docs/modules/ROOT/nav.adoc | 1 +
.../create-jvm-only-extension.adoc | 38 +++++++++++++++++++++
.../contributor-guide/create-new-extension.adoc | 24 ++++++-------
.../pages/contributor-guide/release-guide.adoc | 6 ++++
.../ROOT/pages/reference/extensions/nats.adoc | 6 ++++
.../core/deployment/CamelRegistryProcessor.java | 16 +++++++++
.../lambda/deployment/Aws2LambdaProcessor.java | 38 +++++++++++++++++++--
.../component/nats/deployment/NatsProcessor.java | 6 ++++
integration-tests/main-xml-io/pom.xml | 17 +++++++++
.../camel/quarkus/main/CoreMainXmlIoResource.java | 14 ++++++++
.../src/main/resources/routes/my-routes.xml | 10 ++++++
.../camel/quarkus/main/CoreMainXmlIoTest.java | 17 +++++++++
.../camel/quarkus/main/CoreMainResource.java | 1 +
.../apache/camel/quarkus/main/CoreMainTest.java | 4 +++
.../component/nats/it/NatsConfiguration.java | 11 ++++++
.../quarkus/component/nats/it/NatsRoutes.java | 28 +++++++++++++++
.../src/main/resources/application.properties | 2 +-
.../nats/src/main/resources/certs/keystore.jks | Bin 0 -> 3477 bytes
.../nats/src/main/resources/certs/truststore.jks | Bin 0 -> 1162 bytes
.../camel/quarkus/component/nats/it/NatsTest.java | 14 ++++++++
.../component/nats/it/NatsTestResource.java | 28 ++++++++++++---
.../nats/src/test/resources/certs/ca.pem | 20 +++++++++++
.../nats/src/test/resources/certs/key.pem | 28 +++++++++++++++
.../nats/src/test/resources/certs/server.pem | 20 +++++++++++
.../platform/http/it/PlatformHttpRouteBuilder.java | 7 ++++
.../component/http/server/it/PlatformHttpTest.java | 22 ++++++------
integration-tests/weather/pom.xml | 2 +-
pom.xml | 4 +--
tooling/test-list/pom.xml | 2 ++
30 files changed, 389 insertions(+), 33 deletions(-)
create mode 100644
docs/modules/ROOT/pages/contributor-guide/create-jvm-only-extension.adoc
copy integration-tests/{jolt =>
nats}/src/main/resources/application.properties (94%)
create mode 100644 integration-tests/nats/src/main/resources/certs/keystore.jks
create mode 100644
integration-tests/nats/src/main/resources/certs/truststore.jks
create mode 100644 integration-tests/nats/src/test/resources/certs/ca.pem
create mode 100644 integration-tests/nats/src/test/resources/certs/key.pem
create mode 100644 integration-tests/nats/src/test/resources/certs/server.pem