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

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


 discard a7b753b5bd Temporarily work around Vert.x incompatibilities between 
Camel & Quarkus
 discard 330e92946d Upgrade Camel to 3.18.0
 discard 045a3a8d81 Aws SQS: Remove unnecessary headers from the test because 
of CAMEL-18123 #3803
    omit 83a8c60c78 Remove redundant Spring dependencies from JDBC extension
    omit 858727e46d Simplify support for Quartz clustering
    omit ef9addfafc Parametrize infinispan image (#3881)
    omit 1a4126936a Upgrade artemiscloud/activemq-artemis-broker to 1.0.5 
(#3880)
     new 15558098a8 Aws SQS: Remove unnecessary headers from the test because 
of CAMEL-18123 #3803
     new d65c2e6463 Upgrade Camel to 3.18.0
     new 4264066f8c Temporarily work around Vert.x incompatibilities between 
Camel & Quarkus

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   (a7b753b5bd)
            \
             N -- N -- N   refs/heads/camel-main (4264066f8c)

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 3 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:
 .../modules/ROOT/pages/migration-guide/2.11.0.adoc |   9 -
 docs/modules/ROOT/pages/migration-guide/index.adoc |   1 -
 .../ROOT/pages/reference/extensions/quartz.adoc    | 116 ++++++------
 extensions-support/google-cloud/runtime/pom.xml    |   4 -
 .../deployment/GoogleBigqueryProcessor.java        |  11 ++
 extensions/jdbc/deployment/pom.xml                 |   4 +
 extensions/jdbc/runtime/pom.xml                    |   4 +
 .../quartz/deployment/QuartzProcessor.java         |   7 +-
 extensions/quartz/runtime/pom.xml                  |   5 +
 .../quartz/runtime/src/main/doc/limitations.adoc   |   4 +
 extensions/quartz/runtime/src/main/doc/usage.adoc  | 114 +++++-------
 .../CamelQuarkusQuartzConnectionProvider.java      |  66 +++++++
 .../support/activemq/ActiveMQTestResource.java     |   9 +-
 integration-tests/google-bigquery/pom.xml          |  14 ++
 .../infinispan/InfinispanServerTestResource.java   |   2 +-
 integration-tests/pom.xml                          |   1 -
 integration-tests/quartz-clustered/pom.xml         | 202 ---------------------
 .../quartz/it/QuartzClusteredResource.java         |  56 ------
 .../component/quartz/it/QuartzClusteredRoutes.java |  36 ----
 .../src/main/resources/application.properties      |  39 ----
 .../component/quartz/it/QuartzClusteredIT.java     |  24 ---
 .../component/quartz/it/QuartzClusteredTest.java   | 121 ------------
 integration-tests/quartz/pom.xml                   |  37 ++++
 .../component/quartz/it/QuartzResource.java        |  21 +++
 .../quarkus/component/quartz/it/QuartzRoutes.java  |  13 ++
 .../src/main/resources/application.properties      |  31 +++-
 .../db/migration/V1.0.1__QuarkusQuartz.sql         |   0
 .../src/main/resources/quartz-node-A.properties    |  62 +++++++
 .../src/main/resources/quartz-node-B.properties    |  63 +++++++
 .../src/main/resources/quartz-node-C.properties    |  67 +++++++
 .../quarkus/component/quartz/it/QuartzTest.java    |  31 ++++
 pom.xml                                            |   4 +-
 poms/bom/pom.xml                                   |  19 +-
 poms/bom/src/main/generated/flattened-full-pom.xml |  21 ++-
 .../src/main/generated/flattened-reduced-pom.xml   |  21 ++-
 .../generated/flattened-reduced-verbose-pom.xml    |  21 ++-
 tooling/scripts/test-categories.yaml               |   1 -
 tooling/test-list/pom.xml                          |   1 -
 38 files changed, 611 insertions(+), 651 deletions(-)
 delete mode 100644 docs/modules/ROOT/pages/migration-guide/2.11.0.adoc
 create mode 100644 extensions/quartz/runtime/src/main/doc/limitations.adoc
 create mode 100644 
extensions/quartz/runtime/src/main/java/org/apache/camel/quarkus/component/quartz/CamelQuarkusQuartzConnectionProvider.java
 delete mode 100644 integration-tests/quartz-clustered/pom.xml
 delete mode 100644 
integration-tests/quartz-clustered/src/main/java/org/apache/camel/quarkus/component/quartz/it/QuartzClusteredResource.java
 delete mode 100644 
integration-tests/quartz-clustered/src/main/java/org/apache/camel/quarkus/component/quartz/it/QuartzClusteredRoutes.java
 delete mode 100644 
integration-tests/quartz-clustered/src/main/resources/application.properties
 delete mode 100644 
integration-tests/quartz-clustered/src/test/java/org/apache/camel/quarkus/component/quartz/it/QuartzClusteredIT.java
 delete mode 100644 
integration-tests/quartz-clustered/src/test/java/org/apache/camel/quarkus/component/quartz/it/QuartzClusteredTest.java
 rename integration-tests/{quartz-clustered => 
quartz}/src/main/resources/db/migration/V1.0.1__QuarkusQuartz.sql (100%)
 create mode 100644 
integration-tests/quartz/src/main/resources/quartz-node-A.properties
 create mode 100644 
integration-tests/quartz/src/main/resources/quartz-node-B.properties
 create mode 100644 
integration-tests/quartz/src/main/resources/quartz-node-C.properties

Reply via email to