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/28 08:14:46 UTC

[camel] branch regen_bot updated (5473f99 -> 5224b17)

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 5473f99  Regen for commit eac293ae4e8f5472f4aea0d29994d6e65aa2fde0
     add f47aee3  Regen for commit eac293ae4e8f5472f4aea0d29994d6e65aa2fde0
     add bb29697  Upgrade AWS SDK v2 to version 2.15.71
     add 60ae8e9  Sync deps
     add 6612652  CAMEL-16001 - Added Huawei SMN cloud to components modules
     add 6990b61  CAMEL-16001 - Added Huawei SMN component to Parent POM
     add dca1623  CAMEL-16001 - Added Huawei SMN component to BOM
     add 471242b  Regen
     add 0feca0c  Camel-16001 - Cleaned up POM and switch to junit5
     add 9a19ea4  CAMEL-16001 - Regen
     add 6c95e01  CAMEL-16001 - Fixed CS
     add 7d0ba5b  CAMEL-16001 - Correct naming for docs
     add 607842d  CAMEL-16001 - Final regen and full build
     add 48bebfd  CAMEL-16001 - Fixed POM indentation
     add 7d6df90  CAMEL-16001 - Use Parent pom property placeholders for versions
     add 714425e  Sync deps
     add ef39b79  Upgrade Directory Watcher to version 0.13.0
     add a6e89c5  Sync deps
     add 5224b17  CAMEL-16001 - Fixed CS

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   (5473f99)
            \
             N -- N -- N   refs/heads/regen_bot (5224b17)

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                         |   5 +-
 .../org/apache/camel/catalog/components.properties |   1 +
 .../camel/catalog/components/hwcloud-smn.json      |  44 +++
 .../org/apache/camel/catalog/docs.properties       |   2 +-
 ...d-component.adoc => hwcloud-smn-component.adoc} |  47 +--
 components/camel-huaweicloud-smn/pom.xml           | 174 ++++------
 .../smn/SimpleNotificationComponentConfigurer.java |  55 +++
 .../smn/SimpleNotificationEndpointConfigurer.java  | 115 +++++++
 .../smn/SimpleNotificationEndpointUriFactory.java  |  80 +++++
 .../services/org/apache/camel/component.properties |   7 +
 .../org/apache/camel/component/hwcloud-smn         |   2 +
 .../apache/camel/configurer/hwcloud-smn-component  |   2 +
 .../apache/camel/configurer/hwcloud-smn-endpoint   |   2 +
 .../apache/camel/urifactory/hwcloud-smn-endpoint   |   2 +
 .../component/huaweicloud/smn/hwcloud-smn.json     |  44 +++
 ...d-component.adoc => hwcloud-smn-component.adoc} |  47 +--
 .../smn/SimpleNotificationEndpoint.java            |   2 +-
 .../smn/SimpleNotificationProducer.java            |   7 +-
 .../huaweicloud/smn/SimpleNotificationUtils.java   |   6 +-
 .../huaweicloud/smn/constants/SmnConstants.java    |   6 +-
 .../huaweicloud/smn/constants/SmnOperations.java   |   7 +-
 .../huaweicloud/smn/constants/SmnProperties.java   |  25 +-
 .../huaweicloud/smn/constants/SmnServices.java     |   6 +-
 .../smn/PublishTemplatedMessageTest.java           |  27 +-
 .../huaweicloud/smn/PublishTextMessageTest.java    |  33 +-
 .../smn/constants/SmnConstantsTest.java            |   7 +-
 .../smn/constants/SmnOperationsTest.java           |   9 +-
 .../smn/constants/SmnPropertiesTest.java           |  19 +-
 .../huaweicloud/smn/constants/SmnServicesTest.java |   7 +-
 .../src/test/resources/log4j2.properties           |  33 +-
 .../test/resources/testconfiguration.properties    |  33 +-
 components/pom.xml                                 |   1 +
 core/camel-allcomponents/pom.xml                   |   4 +
 .../component/ComponentsBuilderFactory.java        |  13 +
 .../dsl/HwcloudSmnComponentBuilderFactory.java     | 121 +++++++
 .../src/generated/resources/metadata.json          |  22 ++
 .../builder/endpoint/EndpointBuilderFactory.java   |   1 +
 .../camel/builder/endpoint/EndpointBuilders.java   |   1 +
 .../builder/endpoint/StaticEndpointBuilders.java   |  43 +++
 .../SimpleNotificationEndpointBuilderFactory.java  | 383 +++++++++++++++++++++
 docs/components/modules/ROOT/nav.adoc              |   2 +-
 ...d-component.adoc => hwcloud-smn-component.adoc} |  49 +--
 parent/pom.xml                                     |  10 +-
 44 files changed, 1230 insertions(+), 281 deletions(-)
 create mode 100644 catalog/camel-catalog/src/generated/resources/org/apache/camel/catalog/components/hwcloud-smn.json
 rename catalog/camel-catalog/src/generated/resources/org/apache/camel/catalog/docs/{hwcloud-component.adoc => hwcloud-smn-component.adoc} (70%)
 create mode 100644 components/camel-huaweicloud-smn/src/generated/java/org/apache/camel/component/huaweicloud/smn/SimpleNotificationComponentConfigurer.java
 create mode 100644 components/camel-huaweicloud-smn/src/generated/java/org/apache/camel/component/huaweicloud/smn/SimpleNotificationEndpointConfigurer.java
 create mode 100644 components/camel-huaweicloud-smn/src/generated/java/org/apache/camel/component/huaweicloud/smn/SimpleNotificationEndpointUriFactory.java
 create mode 100644 components/camel-huaweicloud-smn/src/generated/resources/META-INF/services/org/apache/camel/component.properties
 create mode 100644 components/camel-huaweicloud-smn/src/generated/resources/META-INF/services/org/apache/camel/component/hwcloud-smn
 create mode 100644 components/camel-huaweicloud-smn/src/generated/resources/META-INF/services/org/apache/camel/configurer/hwcloud-smn-component
 create mode 100644 components/camel-huaweicloud-smn/src/generated/resources/META-INF/services/org/apache/camel/configurer/hwcloud-smn-endpoint
 create mode 100644 components/camel-huaweicloud-smn/src/generated/resources/META-INF/services/org/apache/camel/urifactory/hwcloud-smn-endpoint
 create mode 100644 components/camel-huaweicloud-smn/src/generated/resources/org/apache/camel/component/huaweicloud/smn/hwcloud-smn.json
 rename components/camel-huaweicloud-smn/src/main/docs/{hwcloud-component.adoc => hwcloud-smn-component.adoc} (70%)
 create mode 100644 core/camel-componentdsl/src/generated/java/org/apache/camel/builder/component/dsl/HwcloudSmnComponentBuilderFactory.java
 create mode 100644 core/camel-endpointdsl/src/generated/java/org/apache/camel/builder/endpoint/dsl/SimpleNotificationEndpointBuilderFactory.java
 rename docs/components/modules/ROOT/pages/{hwcloud-component.adoc => hwcloud-smn-component.adoc} (70%)