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/01/27 10:52:12 UTC

[camel] branch regen_bot updated (03dbdf2 -> 9d4b835)

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.


 discard 03dbdf2  Regen for commit 16767a74b0b5f9f7bf3d2e3db594baa4d066106b
     add 92b2275  Sync deps
     add db6d9c9  CAMEL-15933: Add Stitch component to Camel (#4936)
     add 9d4b835  Regen for commit db6d9c9d2c7832b3edd0b9a82a31866883cc1498

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   (03dbdf2)
            \
             N -- N -- N   refs/heads/regen_bot (9d4b835)

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:
 bom/camel-bom/pom.xml                              |   5 +
 camel-dependencies/pom.xml                         |   1 +
 .../org/apache/camel/catalog/components.properties |   1 +
 .../apache/camel/catalog/components/stitch.json    |  47 +++
 .../org/apache/camel/catalog/docs.properties       |   1 +
 .../camel/catalog/docs/stitch-component.adoc       | 312 +++++++++++++++++
 components/camel-stitch/pom.xml                    | 113 +++++++
 .../stitch/StitchComponentConfigurer.java          | 106 ++++++
 .../component/stitch/StitchEndpointConfigurer.java |  90 +++++
 .../component/stitch/StitchEndpointUriFactory.java |  71 ++++
 .../services/org/apache/camel/component.properties |   7 +
 .../services/org/apache/camel/component/stitch     |   2 +
 .../org/apache/camel/configurer/stitch-component   |   2 +
 .../org/apache/camel/configurer/stitch-endpoint    |   2 +
 .../org/apache/camel/urifactory/stitch-endpoint    |   2 +
 .../org/apache/camel/component/stitch/stitch.json  |  47 +++
 .../src/main/docs/stitch-component.adoc            | 312 +++++++++++++++++
 .../camel/component/stitch/StitchComponent.java    |  71 ++++
 .../component/stitch/StitchConfiguration.java      | 160 +++++++++
 .../camel/component/stitch/StitchConstants.java    |  32 ++
 .../camel/component/stitch/StitchEndpoint.java     | 111 +++++++
 .../camel/component/stitch/StitchProducer.java     |  79 +++++
 .../camel/component/stitch/client/JsonUtils.java   |  48 +++
 .../component/stitch/client/StitchClient.java      |  42 +++
 .../stitch/client/StitchClientBuilder.java         |  87 +++++
 .../component/stitch/client/StitchClientImpl.java  | 131 ++++++++
 .../component/stitch/client/StitchRegion.java      |  41 +++
 .../stitch/client/models/StitchError.java          |  56 ++++
 .../stitch/client/models/StitchException.java      |  54 +++
 .../stitch/client/models/StitchMessage.java        | 165 +++++++++
 .../stitch/client/models/StitchModel.java          |  29 ++
 .../stitch/client/models/StitchRequestBody.java    | 205 ++++++++++++
 .../stitch/client/models/StitchResponse.java       |  88 +++++
 .../stitch/client/models/StitchSchema.java         |  76 +++++
 .../operations/StitchProducerOperations.java       | 197 +++++++++++
 .../component/stitch/StitchComponentTest.java      |  46 +++
 .../camel/component/stitch/StitchProducerIT.java   | 171 ++++++++++
 .../camel/component/stitch/StitchProducerTest.java | 230 +++++++++++++
 .../camel/component/stitch/StitchTestUtils.java    |  37 +++
 .../stitch/client/StitchClientBuilderTest.java     |  51 +++
 .../stitch/client/StitchClientImplIT.java          | 109 ++++++
 .../component/stitch/client/StitchRegionTest.java  |  32 ++
 .../stitch/client/models/StitchMessageTest.java    |  79 +++++
 .../client/models/StitchRequestBodyTest.java       | 128 +++++++
 .../stitch/client/models/StitchResponseTest.java   |  43 +++
 .../stitch/client/models/StitchSchemaTest.java     |  55 +++
 .../operations/StitchProducerOperationsIT.java     | 159 +++++++++
 .../operations/StitchProducerOperationsTest.java   | 322 ++++++++++++++++++
 .../src/test/resources/log4j2.properties           |  27 ++
 components/pom.xml                                 |   1 +
 core/camel-allcomponents/pom.xml                   |   4 +
 .../component/ComponentsBuilderFactory.java        |  14 +
 .../dsl/StitchComponentBuilderFactory.java         | 271 +++++++++++++++
 .../src/generated/resources/metadata.json          |  22 ++
 .../builder/endpoint/EndpointBuilderFactory.java   |   1 +
 .../camel/builder/endpoint/EndpointBuilders.java   |   1 +
 .../builder/endpoint/StaticEndpointBuilders.java   |  51 +++
 .../endpoint/dsl/StitchEndpointBuilderFactory.java | 369 +++++++++++++++++++++
 docs/components/modules/ROOT/nav.adoc              |   1 +
 .../modules/ROOT/pages/stitch-component.adoc       | 314 ++++++++++++++++++
 parent/pom.xml                                     |   6 +
 61 files changed, 5337 insertions(+)
 create mode 100644 catalog/camel-catalog/src/generated/resources/org/apache/camel/catalog/components/stitch.json
 create mode 100644 catalog/camel-catalog/src/generated/resources/org/apache/camel/catalog/docs/stitch-component.adoc
 create mode 100644 components/camel-stitch/pom.xml
 create mode 100644 components/camel-stitch/src/generated/java/org/apache/camel/component/stitch/StitchComponentConfigurer.java
 create mode 100644 components/camel-stitch/src/generated/java/org/apache/camel/component/stitch/StitchEndpointConfigurer.java
 create mode 100644 components/camel-stitch/src/generated/java/org/apache/camel/component/stitch/StitchEndpointUriFactory.java
 create mode 100644 components/camel-stitch/src/generated/resources/META-INF/services/org/apache/camel/component.properties
 create mode 100644 components/camel-stitch/src/generated/resources/META-INF/services/org/apache/camel/component/stitch
 create mode 100644 components/camel-stitch/src/generated/resources/META-INF/services/org/apache/camel/configurer/stitch-component
 create mode 100644 components/camel-stitch/src/generated/resources/META-INF/services/org/apache/camel/configurer/stitch-endpoint
 create mode 100644 components/camel-stitch/src/generated/resources/META-INF/services/org/apache/camel/urifactory/stitch-endpoint
 create mode 100644 components/camel-stitch/src/generated/resources/org/apache/camel/component/stitch/stitch.json
 create mode 100644 components/camel-stitch/src/main/docs/stitch-component.adoc
 create mode 100644 components/camel-stitch/src/main/java/org/apache/camel/component/stitch/StitchComponent.java
 create mode 100644 components/camel-stitch/src/main/java/org/apache/camel/component/stitch/StitchConfiguration.java
 create mode 100644 components/camel-stitch/src/main/java/org/apache/camel/component/stitch/StitchConstants.java
 create mode 100644 components/camel-stitch/src/main/java/org/apache/camel/component/stitch/StitchEndpoint.java
 create mode 100644 components/camel-stitch/src/main/java/org/apache/camel/component/stitch/StitchProducer.java
 create mode 100644 components/camel-stitch/src/main/java/org/apache/camel/component/stitch/client/JsonUtils.java
 create mode 100644 components/camel-stitch/src/main/java/org/apache/camel/component/stitch/client/StitchClient.java
 create mode 100644 components/camel-stitch/src/main/java/org/apache/camel/component/stitch/client/StitchClientBuilder.java
 create mode 100644 components/camel-stitch/src/main/java/org/apache/camel/component/stitch/client/StitchClientImpl.java
 create mode 100644 components/camel-stitch/src/main/java/org/apache/camel/component/stitch/client/StitchRegion.java
 create mode 100644 components/camel-stitch/src/main/java/org/apache/camel/component/stitch/client/models/StitchError.java
 create mode 100644 components/camel-stitch/src/main/java/org/apache/camel/component/stitch/client/models/StitchException.java
 create mode 100644 components/camel-stitch/src/main/java/org/apache/camel/component/stitch/client/models/StitchMessage.java
 create mode 100644 components/camel-stitch/src/main/java/org/apache/camel/component/stitch/client/models/StitchModel.java
 create mode 100644 components/camel-stitch/src/main/java/org/apache/camel/component/stitch/client/models/StitchRequestBody.java
 create mode 100644 components/camel-stitch/src/main/java/org/apache/camel/component/stitch/client/models/StitchResponse.java
 create mode 100644 components/camel-stitch/src/main/java/org/apache/camel/component/stitch/client/models/StitchSchema.java
 create mode 100644 components/camel-stitch/src/main/java/org/apache/camel/component/stitch/operations/StitchProducerOperations.java
 create mode 100644 components/camel-stitch/src/test/java/org/apache/camel/component/stitch/StitchComponentTest.java
 create mode 100644 components/camel-stitch/src/test/java/org/apache/camel/component/stitch/StitchProducerIT.java
 create mode 100644 components/camel-stitch/src/test/java/org/apache/camel/component/stitch/StitchProducerTest.java
 create mode 100644 components/camel-stitch/src/test/java/org/apache/camel/component/stitch/StitchTestUtils.java
 create mode 100644 components/camel-stitch/src/test/java/org/apache/camel/component/stitch/client/StitchClientBuilderTest.java
 create mode 100644 components/camel-stitch/src/test/java/org/apache/camel/component/stitch/client/StitchClientImplIT.java
 create mode 100644 components/camel-stitch/src/test/java/org/apache/camel/component/stitch/client/StitchRegionTest.java
 create mode 100644 components/camel-stitch/src/test/java/org/apache/camel/component/stitch/client/models/StitchMessageTest.java
 create mode 100644 components/camel-stitch/src/test/java/org/apache/camel/component/stitch/client/models/StitchRequestBodyTest.java
 create mode 100644 components/camel-stitch/src/test/java/org/apache/camel/component/stitch/client/models/StitchResponseTest.java
 create mode 100644 components/camel-stitch/src/test/java/org/apache/camel/component/stitch/client/models/StitchSchemaTest.java
 create mode 100644 components/camel-stitch/src/test/java/org/apache/camel/component/stitch/operations/StitchProducerOperationsIT.java
 create mode 100644 components/camel-stitch/src/test/java/org/apache/camel/component/stitch/operations/StitchProducerOperationsTest.java
 create mode 100644 components/camel-stitch/src/test/resources/log4j2.properties
 create mode 100644 core/camel-componentdsl/src/generated/java/org/apache/camel/builder/component/dsl/StitchComponentBuilderFactory.java
 create mode 100644 core/camel-endpointdsl/src/generated/java/org/apache/camel/builder/endpoint/dsl/StitchEndpointBuilderFactory.java
 create mode 100644 docs/components/modules/ROOT/pages/stitch-component.adoc