You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@camel.apache.org by gi...@apache.org on 2021/11/05 14:39:58 UTC

[camel] branch regen_bot updated (5ce74e5 -> 13ebe2f)

This is an automated email from the ASF dual-hosted git repository.

github-bot pushed a change to branch regen_bot
in repository https://gitbox.apache.org/repos/asf/camel.git.


    omit 5ce74e5  Regen for commit be946bede04c3384a540c14f9edbcaa9fb852413
     add 3d154c9  CAMEL-17172: Allow to comfigure muteException on component level.
     add 935664e  CAMEL-17172: Allow to comfigure muteException on component level.
     add 13ebe2f  Regen for commit 935664e837e0064d4ac3653c7d8b31a02160d050

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   (5ce74e5)
            \
             N -- N -- N   refs/heads/regen_bot (13ebe2f)

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:
 .../catalog/components/atmosphere-websocket.json   |  1 +
 .../org/apache/camel/catalog/components/jetty.json |  1 +
 .../camel/catalog/components/netty-http.json       |  1 +
 .../apache/camel/catalog/components/resteasy.json  |  1 +
 .../apache/camel/catalog/components/servlet.json   |  1 +
 .../apache/camel/catalog/components/undertow.json  |  2 +-
 .../atmosphere/websocket/atmosphere-websocket.json |  1 +
 .../camel/http/common/HttpCommonComponent.java     | 15 ++++
 .../apache/camel/component/http/HttpComponent.java |  2 +
 .../camel/component/jetty/JettyHttpComponent.java  |  2 +
 .../jetty9/JettyHttpComponent9Configurer.java      |  6 ++
 .../org/apache/camel/component/jetty9/jetty.json   |  1 +
 .../netty/http/NettyHttpComponentConfigurer.java   |  6 ++
 .../camel/component/netty/http/netty-http.json     |  1 +
 .../component/netty/http/NettyHttpComponent.java   | 16 ++++
 ...va => NettyHttpComponentMuteExceptionTest.java} |  7 +-
 .../resteasy/ResteasyComponentConfigurer.java      |  6 ++
 .../apache/camel/component/resteasy/resteasy.json  |  1 +
 .../servlet/ServletComponentConfigurer.java        |  6 ++
 .../apache/camel/component/servlet/servlet.json    |  1 +
 .../camel/component/servlet/ServletComponent.java  |  6 +-
 ...java => ServletComponentMuteExceptionTest.java} |  9 ++-
 .../apache/camel/component/undertow/undertow.json  |  2 +-
 .../component/undertow/UndertowComponent.java      |  5 +-
 .../camel/component/undertow/UndertowEndpoint.java |  3 +-
 ...ava => UndertowComponentMuteExceptionTest.java} |  9 ++-
 ...AtmosphereWebsocketComponentBuilderFactory.java | 18 +++++
 .../dsl/JettyComponentBuilderFactory.java          | 17 ++++
 .../dsl/NettyHttpComponentBuilderFactory.java      | 17 ++++
 .../dsl/ResteasyComponentBuilderFactory.java       | 17 ++++
 .../dsl/ServletComponentBuilderFactory.java        | 17 ++++
 .../dsl/UndertowEndpointBuilderFactory.java        | 94 +++++++++++-----------
 32 files changed, 226 insertions(+), 66 deletions(-)
 copy components/camel-netty-http/src/test/java/org/apache/camel/component/netty/http/{NettyHttpMuteExceptionTest.java => NettyHttpComponentMuteExceptionTest.java} (88%)
 copy components/camel-servlet/src/test/java/org/apache/camel/component/servlet/{ServletMuteExceptionTest.java => ServletComponentMuteExceptionTest.java} (87%)
 copy components/camel-undertow/src/test/java/org/apache/camel/component/undertow/{UndertowMuteExceptionTest.java => UndertowComponentMuteExceptionTest.java} (91%)