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 2022/04/29 01:07:47 UTC

[camel-spring-boot] branch automatic-periodic-sync updated (6f97ea0efe9 -> b5a5a9fbc6a)

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

github-bot pushed a change to branch automatic-periodic-sync
in repository https://gitbox.apache.org/repos/asf/camel-spring-boot.git


    omit 6f97ea0efe9 [create-pull-request] automated change
     add f0cf1c79c29 [create-pull-request] automated change
     add d9455c20f82 Add more failure detail to the UnitTestCommand assertion - itest failures were being swallowed, now providing failure messages and the stack of the last failure (#546)
     add 5b027d2446f [CAMEL-18005]add tests in camel-paho-starter (#543)
     add 3438944eedc Fix SQL flaky test (#541)
     add f5ff9ec832a CAMEL-18011: upgrade to spring boot 2.6.7
     add b5a5a9fbc6a [create-pull-request] automated change

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   (6f97ea0efe9)
            \
             N -- N -- N   refs/heads/automatic-periodic-sync (b5a5a9fbc6a)

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:
 archetypes/camel-archetype-spring-boot/pom.xml     |   2 +-
 .../catalog/components/debezium-mongodb.json       |  10 +-
 .../catalog/components/debezium-mysql.json         |  28 +--
 .../catalog/components/debezium-postgres.json      |  12 +-
 .../catalog/components/debezium-sqlserver.json     |   8 +-
 .../src/main/docs/debezium-mongodb.json            |  11 +-
 .../DebeziumMongodbComponentConfiguration.java     |  26 ++-
 .../src/main/docs/debezium-mysql.json              |  26 ++-
 .../DebeziumMySqlComponentConfiguration.java       |  56 +++--
 .../src/main/docs/debezium-postgres.json           |  21 +-
 .../DebeziumPostgresComponentConfiguration.java    |  42 ++--
 .../src/main/docs/debezium-sqlserver.json          |  16 +-
 .../DebeziumSqlserverComponentConfiguration.java   |  34 ++-
 components-starter/camel-paho-starter/pom.xml      |   7 +
 .../paho/springboot/PahoComponentTest.java         | 228 +++++++++++++++++++++
 .../PahoComponentVerifierExtensionTest.java        | 105 ++++++++++
 .../paho/springboot/PahoOverrideTopicTest.java}    |  53 +++--
 .../springboot/PahoReconnectAfterFailureTest.java  | 203 ++++++++++++++++++
 .../paho/springboot/PahoToDSendDynamicTest.java}   |  74 ++++---
 .../component/paho/springboot/PahoToDTest.java}    |  87 ++++----
 components-starter/camel-sql-starter/pom.xml       |   5 +
 .../org/apache/camel/component/sql/BaseSql.java    |   2 +-
 pom.xml                                            |   2 +-
 .../itest/springboot/command/UnitTestCommand.java  |  14 +-
 tooling/camel-spring-boot-dependencies/pom.xml     |  66 +++---
 25 files changed, 913 insertions(+), 225 deletions(-)
 create mode 100644 components-starter/camel-paho-starter/src/test/java/org/apache/camel/component/paho/springboot/PahoComponentTest.java
 create mode 100644 components-starter/camel-paho-starter/src/test/java/org/apache/camel/component/paho/springboot/PahoComponentVerifierExtensionTest.java
 copy components-starter/{camel-quartz-starter/src/test/java/org/apache/camel/component/quartz/springboot/FileConsumerQuartzSchedulerRestartTest.java => camel-paho-starter/src/test/java/org/apache/camel/component/paho/springboot/PahoOverrideTopicTest.java} (60%)
 create mode 100644 components-starter/camel-paho-starter/src/test/java/org/apache/camel/component/paho/springboot/PahoReconnectAfterFailureTest.java
 copy components-starter/{camel-quartz-starter/src/test/java/org/apache/camel/component/quartz/springboot/QuartzManagementTest.java => camel-paho-starter/src/test/java/org/apache/camel/component/paho/springboot/PahoToDSendDynamicTest.java} (53%)
 copy components-starter/{camel-zipfile-starter/src/test/java/org/apache/camel/dataformat/zipfile/springboot/ZipSplitterRouteIssueTest.java => camel-paho-starter/src/test/java/org/apache/camel/component/paho/springboot/PahoToDTest.java} (55%)