This is an automated email from the ASF dual-hosted git repository.
jamesnetherton pushed a change to branch quarkus-master
in repository https://gitbox.apache.org/repos/asf/camel-quarkus.git.
discard e311695 Remove support for Webocket JSR 356
discard 22fcd51 Upgrade to Quarkus 1.13.0.Final
add ba89923 Deprecate Webocket JSR 356 #2262
add 20b938e Add basic Netty UDP tests
new 79072d3 Upgrade to Quarkus 1.13.0.Final
new c7479e5 Remove support for Webocket JSR 356
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 (e311695)
\
N -- N -- N refs/heads/quarkus-master (c7479e5)
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 2 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:
integration-tests/netty/pom.xml | 21 +++++-
.../camel/quarkus/component/netty/CamelRoute.java | 27 -------
.../quarkus/component/netty/NettyCodecHelper.java | 76 ++++++++++++++++++++
.../quarkus/component/netty/NettyResource.java | 83 ++++++++++++++++++++++
.../camel/quarkus/component/netty/NettyRoutes.java | 52 ++++++++++++++
.../camel/quarkus/component/netty/NettyTest.java | 57 ++++++++++-----
.../quarkus/component/netty/NettyTestResource.java | 7 +-
7 files changed, 276 insertions(+), 47 deletions(-)
delete mode 100644
integration-tests/netty/src/main/java/org/apache/camel/quarkus/component/netty/CamelRoute.java
create mode 100644
integration-tests/netty/src/main/java/org/apache/camel/quarkus/component/netty/NettyCodecHelper.java
create mode 100644
integration-tests/netty/src/main/java/org/apache/camel/quarkus/component/netty/NettyResource.java
create mode 100644
integration-tests/netty/src/main/java/org/apache/camel/quarkus/component/netty/NettyRoutes.java