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

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


 discard 175518e09d Fixed messaging tests because of CAMEL-19135
 discard f1672b6d51 Regen poms
 discard d3ef4a2e6d Regenerated files
 discard 56b3d1264f Fixed openapi-java and rest-openapi by introducing 
support-swgger
 discard c77ba3a9cf Fixed mail + pom regen
 discard 63a97c7518 fixed minio test because of CAMEL-17652
 discard 3fcb3491d1 Fixed tika excludes + regen poms
 discard 6f10da2f8b Opeapi-java: fixed native tests - CQ4900
 discard 3735237bd6 Tika: fixed dependency conflict CQ4907
 discard a43c48f271 cq:sync-versions + regen poms
 discard 643b15335a Fix of Openapi-java because of CAMEL-18963 (compile and jvm 
works, native fails)
 discard d14da04f1a Upgrade Camel to 4.0.0-M4
     add fa8f9d9481 Fix #4793 to update MyBatisConsumerTest and keep awaitility 
in the test scope (#4932)
     add 42e498b495 [IBM-MQ] Add tests for IBM MQ client (#4918)
     add 02b7e5ec1b Ban com.github.spotbugs:spotbugs-annotations
     add 308df8aee7 CQ4934-Micrometer: InstrumentedThreadPoolFactory
     add 1534023d42 Restore master itest platform exclusion
     new 25b27806b9 Upgrade Camel to 4.0.0-M4
     new d0ba9d2e73 Fix of Openapi-java because of CAMEL-18963 (compile and jvm 
works, native fails)
     new 04b9c9e9dc cq:sync-versions + regen poms
     new e168b52c1f Tika: fixed dependency conflict CQ4907
     new 86a6054fe9 Opeapi-java: fixed native tests - CQ4900
     new 714ada4d70 Fixed tika excludes + regen poms
     new 6bdb460841 fixed minio test because of CAMEL-17652
     new c32d7254d6 Fixed mail + pom regen
     new da1da005e4 Fixed openapi-java and rest-openapi by introducing 
support-swgger
     new 255fa3854b Regenerated files
     new 4f3059ea34 Regen poms
     new a63fa286e5 Fixed messaging tests because of CAMEL-19135

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   (175518e09d)
            \
             N -- N -- N   refs/heads/camel-main (a63fa286e5)

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.

The 12 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "add" were already present in the repository and have only
been added to this reference.


Summary of changes:
 .../pages/reference/extensions/micrometer.adoc     |   6 ++
 extensions/cassandraql/runtime/pom.xml             |  24 -----
 .../micrometer/deployment/MicrometerProcessor.java |   4 +-
 ...=> MicrometerInstrumentCoreThreadPoolTest.java} |  22 ++---
 .../MicrometerMetricsConfigDefaultsTest.java       |   7 ++
 .../micrometer/CamelMicrometerConfig.java          |   6 ++
 .../micrometer/CamelMicrometerRecorder.java        |  17 +++-
 .../jms/artemis/it/JmsArtemisResource.java         |  10 ++
 .../component/jms/artemis/it/JmsArtemisXATest.java |  10 ++
 integration-tests/jms-ibmmq-client/README.adoc     |   7 ++
 .../pom.xml                                        |  49 ++++-----
 .../component/jms/ibmmq/it/IBMMQProducers.java     |  44 +++++++++
 .../component/jms/ibmmq/it/IBMMQResource.java}     |  11 +--
 .../quarkus/component/jms/ibmmq/it/IBMMQTest.java  |  88 +++++++++++++++++
 .../jms/ibmmq/support/IBMMQDestinations.java       | 109 +++++++++++++++++++++
 .../jms/ibmmq/support/IBMMQTestResource.java       |  98 ++++++++++++++++++
 .../messaging/it/MessagingCommonResource.java      |  53 ++++++----
 .../messaging/it/MessagingCommonRoutes.java        |  38 ++++---
 .../messaging/it/MessagingPojoConsumer.java        |   4 +-
 .../messaging/it/AbstractMessagingTest.java        |  49 ++++++---
 .../camel/quarkus/messaging/jms/JmsProducers.java  |   2 +-
 .../camel/quarkus/messaging/jms/JmsResource.java   |  32 +++---
 .../camel/quarkus/messaging/jms/JmsRoutes.java     |   4 +-
 .../messaging/jms/AbstractJmsMessagingTest.java    |  18 ++--
 integration-tests/mybatis/pom.xml                  |   9 +-
 .../component/mybatis/it/MybatisResource.java      |  20 ++--
 .../component/mybatis/it/MyBatisConsumerTest.java  |  38 +++++--
 integration-tests/pom.xml                          |   4 +-
 pom.xml                                            |   1 +
 poms/bom-test/pom.xml                              |   1 -
 poms/bom/pom.xml                                   |  14 ++-
 poms/bom/src/main/generated/flattened-full-pom.xml |  17 ++++
 .../src/main/generated/flattened-reduced-pom.xml   |  17 ++++
 .../generated/flattened-reduced-verbose-pom.xml    |  17 ++++
 .../camel-quarkus-banned-dependencies.xml          |   1 +
 tooling/scripts/test-categories.yaml               |   1 +
 tooling/test-list/pom.xml                          |   1 +
 37 files changed, 675 insertions(+), 178 deletions(-)
 copy 
extensions/micrometer/deployment/src/test/java/org/apache/camel/quarkus/component/micrometer/deployment/{MicrometerMetricsDisabledTest.java
 => MicrometerInstrumentCoreThreadPoolTest.java} (75%)
 create mode 100644 integration-tests/jms-ibmmq-client/README.adoc
 copy integration-tests/{jms-artemis-client => jms-ibmmq-client}/pom.xml (84%)
 create mode 100644 
integration-tests/jms-ibmmq-client/src/main/java/org/apache/camel/quarkus/component/jms/ibmmq/it/IBMMQProducers.java
 copy 
integration-tests/{jms-qpid-amqp-client/src/main/java/org/apache/camel/quarkus/component/jms/qpid/it/QpidJmsResource.java
 => 
jms-ibmmq-client/src/main/java/org/apache/camel/quarkus/component/jms/ibmmq/it/IBMMQResource.java}
 (87%)
 create mode 100644 
integration-tests/jms-ibmmq-client/src/test/java/org/apache/camel/quarkus/component/jms/ibmmq/it/IBMMQTest.java
 create mode 100644 
integration-tests/jms-ibmmq-client/src/test/java/org/apache/camel/quarkus/component/jms/ibmmq/support/IBMMQDestinations.java
 create mode 100644 
integration-tests/jms-ibmmq-client/src/test/java/org/apache/camel/quarkus/component/jms/ibmmq/support/IBMMQTestResource.java

Reply via email to