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 58cbde7  Upgrade Camel to 3.14.0
     add 0a41fa9  Updated CHANGELOG.md
     add be24706  Use yq installed on the GitHub actions VM instead of 
downloading and installing it
     add 2fff506  Upgrade Quarkus to 2.6.0.CR1
     add d5ddf9b  Disable vertx-kafka integration tests and native build due to 
#3358
     add 17c2166  Updated CHANGELOG.md
     add 895a6f0  ✅ Test AWS2 SQS in isolation (#3352)
     new 0a9fab6  Upgrade Camel to 3.14.0

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   (58cbde7)
            \
             N -- N -- N   refs/heads/camel-main (0a9fab6)

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 1 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:
 .github/workflows/camel-master-cron.yaml           |  22 ++--
 .github/workflows/ci-build.yaml                    |  17 ++-
 .github/workflows/quarkus-master-cron.yaml         |  22 ++--
 CHANGELOG.md                                       |   7 ++
 docs/antora.yml                                    |   4 +-
 .../csimple/deployment/CSimpleProcessor.java       |   5 +-
 extensions/fop/deployment/pom.xml                  |   4 +
 extensions/fop/runtime/pom.xml                     |   4 +
 extensions/ftp/deployment/pom.xml                  |   2 +-
 extensions/ftp/runtime/pom.xml                     |   2 +-
 extensions/git/deployment/pom.xml                  |   2 +-
 extensions/git/runtime/pom.xml                     |   2 +-
 extensions/tika/deployment/pom.xml                 |   2 +-
 extensions/tika/runtime/pom.xml                    |   2 +-
 .../aws2-quarkus-client/aws2-ddb/pom.xml           |   2 +-
 .../aws2-quarkus-client/aws2-s3/pom.xml            |   2 +-
 .../aws2-quarkus-client/aws2-ses/pom.xml           |   2 +-
 .../aws2-quarkus-client/aws2-sqs-sns/pom.xml       |   9 +-
 .../it/Aws2SnsQuarkusClientInvoker.java}           |   4 +-
 .../it/Aws2SnsQuarkusClientTestEnvCustomizer.java} |   4 +-
 ...quarkus.test.support.aws2.Aws2TestEnvCustomizer |   2 +-
 .../{aws2-ses => aws2-sqs}/pom.xml                 |  16 +--
 .../aws2/sqs/it/Aws2SqsQuarkusClientInvoker.java   |   3 -
 .../src/main/resources/application.properties      |   1 -
 .../it/Aws2SqsQuarkusClientTestEnvCustomizer.java  |   8 +-
 ...quarkus.test.support.aws2.Aws2TestEnvCustomizer |   0
 .../aws2-quarkus-client/pom.xml                    |   1 +
 integration-test-groups/aws2/aws2-sqs-sns/pom.xml  |   5 -
 .../aws2/{sqs => sns}/it/Aws2SqsSnsResource.java   | 136 +++------------------
 .../aws2/{sqs => sns}/it/Aws2SqsSnsIT.java         |   2 +-
 .../component/aws2/sns/it/Aws2SqsSnsTest.java      | 114 +++++++++++++++++
 .../it/Aws2SqsSnsTestEnvCustomizer.java            |   2 +-
 ...quarkus.test.support.aws2.Aws2TestEnvCustomizer |   2 +-
 .../aws2/{aws2-ddb => aws2-sqs}/pom.xml            |  16 +--
 .../component/aws2/sqs/it/Aws2SqsResource.java}    |  82 +++----------
 .../src/main/resources/application.properties      |   4 -
 .../quarkus/component/aws2/sqs/it/Aws2SqsIT.java}  |   2 +-
 .../component/aws2/sqs/it/Aws2SqsTest.java}        |  78 ++++--------
 .../aws2/sqs/it/Aws2SqsTestEnvCustomizer.java}     |  25 +++-
 ...quarkus.test.support.aws2.Aws2TestEnvCustomizer |   1 +
 integration-test-groups/aws2/pom.xml               |   1 +
 .../aws2-quarkus-client-grouped/pom.xml            |  25 +++-
 integration-tests/jms-artemis-client/pom.xml       |   2 +-
 integration-tests/jta/pom.xml                      |   2 +-
 integration-tests/sjms-artemis-client/pom.xml      |   2 +-
 integration-tests/sjms2-artemis-client/pom.xml     |   2 +-
 integration-tests/tika/pom.xml                     |   4 -
 integration-tests/vertx-kafka/pom.xml              |   2 +
 .../component/vertx/kafka/it/VertxKafkaIT.java     |   2 +
 .../component/vertx/kafka/it/VertxKafkaTest.java   |   2 +
 pom.xml                                            |  20 +--
 poms/bom-test/pom.xml                              |  29 +++++
 poms/bom/pom.xml                                   |  46 ++++++-
 53 files changed, 390 insertions(+), 369 deletions(-)
 copy 
integration-test-groups/aws2-quarkus-client/aws2-sqs-sns/src/main/java/org/apache/camel/quarkus/component/aws2/{sqs/it/Aws2SqsQuarkusClientInvoker.java
 => sns/it/Aws2SnsQuarkusClientInvoker.java} (91%)
 copy 
integration-test-groups/aws2-quarkus-client/aws2-sqs-sns/src/test/java/org/apache/camel/quarkus/component/aws2/{sqs/it/Aws2SqsQuarkusClientTestEnvCustomizer.java
 => sns/it/Aws2SnsQuarkusClientTestEnvCustomizer.java} (95%)
 copy integration-test-groups/aws2-quarkus-client/{aws2-ses => 
aws2-sqs}/pom.xml (92%)
 rename integration-test-groups/aws2-quarkus-client/{aws2-sqs-sns => 
aws2-sqs}/src/main/java/org/apache/camel/quarkus/component/aws2/sqs/it/Aws2SqsQuarkusClientInvoker.java
 (92%)
 copy integration-test-groups/aws2-quarkus-client/{aws2-sqs-sns => 
aws2-sqs}/src/main/resources/application.properties (96%)
 rename integration-test-groups/aws2-quarkus-client/{aws2-sqs-sns => 
aws2-sqs}/src/test/java/org/apache/camel/quarkus/component/aws2/sqs/it/Aws2SqsQuarkusClientTestEnvCustomizer.java
 (82%)
 copy integration-test-groups/aws2-quarkus-client/{aws2-sqs-sns => 
aws2-sqs}/src/test/resources/META-INF/services/org.apache.camel.quarkus.test.support.aws2.Aws2TestEnvCustomizer
 (100%)
 copy 
integration-test-groups/aws2/aws2-sqs-sns/src/main/java/org/apache/camel/quarkus/component/aws2/{sqs
 => sns}/it/Aws2SqsSnsResource.java (52%)
 copy 
integration-test-groups/aws2/aws2-sqs-sns/src/test/java/org/apache/camel/quarkus/component/aws2/{sqs
 => sns}/it/Aws2SqsSnsIT.java (94%)
 create mode 100644 
integration-test-groups/aws2/aws2-sqs-sns/src/test/java/org/apache/camel/quarkus/component/aws2/sns/it/Aws2SqsSnsTest.java
 rename 
integration-test-groups/aws2/aws2-sqs-sns/src/test/java/org/apache/camel/quarkus/component/aws2/{sqs
 => sns}/it/Aws2SqsSnsTestEnvCustomizer.java (99%)
 copy integration-test-groups/aws2/{aws2-ddb => aws2-sqs}/pom.xml (88%)
 rename 
integration-test-groups/aws2/{aws2-sqs-sns/src/main/java/org/apache/camel/quarkus/component/aws2/sqs/it/Aws2SqsSnsResource.java
 => 
aws2-sqs/src/main/java/org/apache/camel/quarkus/component/aws2/sqs/it/Aws2SqsResource.java}
 (70%)
 copy integration-test-groups/aws2/{aws2-sqs-sns => 
aws2-sqs}/src/main/resources/application.properties (87%)
 rename 
integration-test-groups/aws2/{aws2-sqs-sns/src/test/java/org/apache/camel/quarkus/component/aws2/sqs/it/Aws2SqsSnsIT.java
 => 
aws2-sqs/src/test/java/org/apache/camel/quarkus/component/aws2/sqs/it/Aws2SqsIT.java}
 (95%)
 rename 
integration-test-groups/aws2/{aws2-sqs-sns/src/test/java/org/apache/camel/quarkus/component/aws2/sqs/it/Aws2SqsSnsTest.java
 => 
aws2-sqs/src/test/java/org/apache/camel/quarkus/component/aws2/sqs/it/Aws2SqsTest.java}
 (78%)
 copy 
integration-test-groups/aws2/{aws2-ses/src/test/java/org/apache/camel/quarkus/component/aws2/ses/it/Aws2SesTestEnvCustomizer.java
 => 
aws2-sqs/src/test/java/org/apache/camel/quarkus/component/aws2/sqs/it/Aws2SqsTestEnvCustomizer.java}
 (51%)
 create mode 100644 
integration-test-groups/aws2/aws2-sqs/src/test/resources/META-INF/services/org.apache.camel.quarkus.test.support.aws2.Aws2TestEnvCustomizer

Reply via email to