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/08/23 04:59:30 UTC

[camel] branch regen_bot updated (e14eebe -> 60ca9bb7)

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 e14eebe  Regen for commit b5a5dc2081591c43e0d77c11ffa790fc77eb6417
     add 25ca958  Regen for commit b5a5dc2081591c43e0d77c11ffa790fc77eb6417 (#5970)
     add a9bb9a4  CAMEL-16876: Add delete instance to DMS component (#5972)
     add 8fc78df  camel-jbang: align features to ensure they match the same version of CamelJBang by default (#5971)
     add edbc856  Polish and cleanup documentation
     add 54dcd85  CAMEL-16878: camel-mail - Fix class cast exception in MailBinding.
     add 1189f27  Revert "camel-jbang: align features to ensure they match the same version of CamelJBang by default (#5971)" (#5974)
     add 6dda313  camel-jbang: align features to ensure they match the same version of CamelJBang by default (#5975)
     add 60ca9bb7 Regen

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   (e14eebe)
            \
             N -- N -- N   refs/heads/regen_bot (60ca9bb7)

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:
 .../component/huaweicloud/dms/hwcloud-dms.json     |    2 +-
 .../src/main/docs/hwcloud-dms-component.adoc       |    3 +-
 .../component/huaweicloud/dms/DMSEndpoint.java     |    2 +-
 .../component/huaweicloud/dms/DMSProducer.java     |   22 +
 .../camel/component/huaweicloud/dms/DmsClient.java |    6 +
 .../camel/component/huaweicloud/dms/DmsMeta.java   |   22 +
 .../huaweicloud/dms/constants/DMSOperations.java   |    1 +
 .../huaweicloud/dms/constants/DMSProperties.java   |    2 +
 ...anceRequest.java => DeleteInstanceRequest.java} |    9 +-
 .../dms/models/DeleteInstanceResponse.java         |   16 +-
 ...ryInstanceTest.java => DeleteInstanceTest.java} |   29 +-
 .../huaweicloud/dms/ListInstancesTest.java         |    1 +
 .../huaweicloud/dms/QueryInstanceTest.java         |    1 +
 .../huaweicloud/dms/TestConfiguration.java         |    1 +
 .../dms/constants/DMSOperationsTest.java           |    1 +
 .../dms/constants/DMSPropertiesTest.java           |    2 +
 .../apache/camel/component/mail/MailBinding.java   |   14 +-
 .../apache/camel/component/mail/MailEndpoint.java  |    3 +-
 .../MailBindingAttachmentEncodedFilenameTest.java  |    2 +-
 .../sql/stored/template/generated/SSPTParser.java  |  833 ++++++-------
 .../template/generated/SSPTParserConstants.java    |  110 +-
 .../template/generated/SSPTParserTokenManager.java | 1222 ++++++++++----------
 .../endpoint/dsl/DMSEndpointBuilderFactory.java    |    4 +-
 .../modules/ROOT/pages/hwcloud-dms-component.adoc  |    3 +-
 docs/user-manual/modules/ROOT/pages/testing.adoc   |    4 +-
 .../dsl/jbang/core/commands/AbstractSearch.java    |    6 +
 .../camel-jbang-main/dist/CamelJBang.java          |   20 +
 .../src/main/jbang/main/CamelJBang.java            |   20 +
 28 files changed, 1244 insertions(+), 1117 deletions(-)
 copy components/camel-huawei/camel-huaweicloud-dms/src/main/java/org/apache/camel/component/huaweicloud/dms/models/{QueryInstanceRequest.java => DeleteInstanceRequest.java} (88%)
 copy core/camel-core/src/test/java/org/apache/camel/processor/UnitOfWorkWithAsyncFlowTest.java => components/camel-huawei/camel-huaweicloud-dms/src/main/java/org/apache/camel/component/huaweicloud/dms/models/DeleteInstanceResponse.java (78%)
 copy components/camel-huawei/camel-huaweicloud-dms/src/test/java/org/apache/camel/component/huaweicloud/dms/{QueryInstanceTest.java => DeleteInstanceTest.java} (67%)