You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@camel.apache.org by ja...@apache.org on 2022/01/20 09:40:33 UTC

[camel-quarkus] branch quarkus-main updated (c43a90b -> 197bfbb)

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

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


 discard c43a90b  Adapt to Quarkus CDI proxy class changes
 discard b340d4a  Sync latest property versions
 discard f1917c8  Modify checks for TransactionManager class name in line with Quarkus CDI proxy class changes
 discard 8676ab3  java.lang.UnsatisfiedLinkError: no awt in java.library.path in native tests
 discard be004ff  Exclude geronimo-jms from corda
 discard ba0431e  ⬆️ Upgrade Quarkus to 2.7.0.CR1
     add 193d8d3  Updated CHANGELOG.md
     add a2017c8  aws2-quarkus-client Verify that no client except quarkus one is used during test #3447
     add 6cad4cc  Ban netty-all #3464
     add ca8ad1c  Refactor aws2-quarkus-client-ddb(s3) by copying files (not duplicating) #3236
     add 3f0f0c7  Update Salesforce Integration tests to Salesforce API upgrade
     add 080bded  📝 Improve documentation on setting up the Salesforce developer account
     add ce20ec1  Updated CHANGELOG.md
     add c060ee3  Upgrade Quarkus to 2.7.0.CR1
     add 0d0f0f1  java.lang.UnsatisfiedLinkError: no awt in java.library.path in native tests
     add fc97c4b  Updated CHANGELOG.md
     add 73ffc7e  Avoid creating CamelBeanBuildItem for health checks if they are disabled
     new 197bfbb  Upgrade to Quarkus 2.8.0.CR1

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   (c43a90b)
            \
             N -- N -- N   refs/heads/quarkus-main (197bfbb)

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:
 CHANGELOG.md                                       |  14 +
 extensions-jvm/hdfs/deployment/pom.xml             |   4 +
 extensions-jvm/hdfs/runtime/pom.xml                |  10 +
 extensions-jvm/spark/runtime/pom.xml               |   4 +
 .../support/bouncycastle/BouncyCastleRecorder.java |   7 +
 .../deployment/MicroProfileHealthProcessor.java    |  82 +++++-
 ...MicroProfileHealthCamelChecksDisabledTest.java} |  38 ++-
 .../deployment/MicroProfileHealthEnabledTest.java  |  24 +-
 extensions/nsq/deployment/pom.xml                  |   4 +
 extensions/nsq/runtime/pom.xml                     |   8 +
 .../aws2-quarkus-client/aws2-ddb/pom.xml           |  56 ++++
 .../aws2/ddb/it/Aws2DdbQuarkusClientResource.java} |  57 ++--
 .../component/aws2/ddb/it/Aws2DdbResource.java     | 321 ---------------------
 .../aws2/ddb/it/Aws2DdbQuarkusClientTest.java      | 266 +----------------
 ... => Aws2DdbQuarkusClientTestEnvCustomizer.java} |   5 +-
 ...quarkus.test.support.aws2.Aws2TestEnvCustomizer |   2 +-
 .../aws2-quarkus-client/aws2-s3/pom.xml            |  56 ++++
 .../aws2/s3/it/Aws2S3QuarkusClientInvoker.java}    |  12 +-
 .../src/main/resources/application.properties      |   6 -
 .../aws2/s3/it/Aws2S3QuarkusClientTest.java        | 315 --------------------
 ...a => Aws2S3QuarkusClientTestEnvCustomizer.java} |  27 +-
 ...quarkus.test.support.aws2.Aws2TestEnvCustomizer |   2 +-
 .../it/Aws2SesQuarkusClientTestEnvCustomizer.java  |   3 +
 .../it/Aws2SnsQuarkusClientTestEnvCustomizer.java  |   3 +
 integration-test-groups/aws2/aws2-s3/pom.xml       |  56 ++++
 .../quarkus/component/aws2/Aws2S3Resource.java     | 288 ------------------
 .../component/aws2/s3/it/Aws2S3Resource.java       |   6 +-
 .../component/aws2/{ => s3/it}/Aws2S3IT.java       |   2 +-
 .../component/aws2/{ => s3/it}/Aws2S3Test.java     |   2 +-
 .../aws2/{ => s3/it}/Aws2S3TestEnvCustomizer.java  |   3 +-
 ...quarkus.test.support.aws2.Aws2TestEnvCustomizer |   2 +-
 .../test/support/aws2/Aws2TestEnvContext.java      |  14 +
 .../aws2-quarkus-client-grouped/pom.xml            |  30 ++
 integration-tests/salesforce/README.adoc           |  17 +-
 .../salesforce/SalesforceIntegrationTest.java      |   4 +-
 pom.xml                                            |   9 +-
 36 files changed, 457 insertions(+), 1302 deletions(-)
 copy extensions/microprofile-health/deployment/src/test/java/org/apache/camel/quarkus/component/microprofile/health/deployment/{MicroProfileHealthDisabledViaCamelMainTest.java => MicroProfileHealthCamelChecksDisabledTest.java} (59%)
 copy integration-test-groups/{aws2/aws2-ddb/src/main/java/org/apache/camel/quarkus/component/aws2/ddb/it/Aws2DdbStreamResource.java => aws2-quarkus-client/aws2-ddb/src/main/java/org/apache/camel/quarkus/component/aws2/ddb/it/Aws2DdbQuarkusClientResource.java} (52%)
 delete mode 100644 integration-test-groups/aws2-quarkus-client/aws2-ddb/src/main/java/org/apache/camel/quarkus/component/aws2/ddb/it/Aws2DdbResource.java
 rename integration-test-groups/aws2-quarkus-client/aws2-ddb/src/test/java/org/apache/camel/quarkus/component/aws2/ddb/it/{Aws2DdbTestEnvCustomizer.java => Aws2DdbQuarkusClientTestEnvCustomizer.java} (96%)
 rename integration-test-groups/aws2-quarkus-client/aws2-s3/src/{test/java/org/apache/camel/quarkus/component/aws2/s3/it/Aws2S3QuarkusClientIT.java => main/java/org/apache/camel/quarkus/component/aws2/s3/it/Aws2S3QuarkusClientInvoker.java} (79%)
 delete mode 100644 integration-test-groups/aws2-quarkus-client/aws2-s3/src/test/java/org/apache/camel/quarkus/component/aws2/s3/it/Aws2S3QuarkusClientTest.java
 rename integration-test-groups/aws2-quarkus-client/aws2-s3/src/test/java/org/apache/camel/quarkus/component/aws2/s3/it/{Aws2S3TestEnvCustomizer.java => Aws2S3QuarkusClientTestEnvCustomizer.java} (60%)
 delete mode 100644 integration-test-groups/aws2/aws2-s3/src/main/java/org/apache/camel/quarkus/component/aws2/Aws2S3Resource.java
 rename integration-test-groups/{aws2-quarkus-client => aws2}/aws2-s3/src/main/java/org/apache/camel/quarkus/component/aws2/s3/it/Aws2S3Resource.java (99%)
 rename integration-test-groups/aws2/aws2-s3/src/test/java/org/apache/camel/quarkus/component/aws2/{ => s3/it}/Aws2S3IT.java (94%)
 rename integration-test-groups/aws2/aws2-s3/src/test/java/org/apache/camel/quarkus/component/aws2/{ => s3/it}/Aws2S3Test.java (99%)
 rename integration-test-groups/aws2/aws2-s3/src/test/java/org/apache/camel/quarkus/component/aws2/{ => s3/it}/Aws2S3TestEnvCustomizer.java (97%)

[camel-quarkus] 01/01: Upgrade to Quarkus 2.8.0.CR1

Posted by ja...@apache.org.
This is an automated email from the ASF dual-hosted git repository.

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

commit 197bfbb47a55e168425429178a9004a8bf7c68ba
Author: James Netherton <ja...@gmail.com>
AuthorDate: Thu Jan 20 07:52:37 2022 +0000

    Upgrade to Quarkus 2.8.0.CR1
---
 docs/antora.yml | 2 +-
 pom.xml         | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/docs/antora.yml b/docs/antora.yml
index 168241c..7974faf 100644
--- a/docs/antora.yml
+++ b/docs/antora.yml
@@ -31,7 +31,7 @@ asciidoc:
     target-maven-version: 3.8.4 # replace ${target-maven-version}
     camel-version: 3.14.0 # replace ${camel.version}
     camel-docs-version: 3.14.x # replace ${camel.docs.components.version}
-    quarkus-version: 2.7.0.CR1 # replace ${quarkus.version}
+    quarkus-version: 999-SNAPSHOT # replace ${quarkus.version}
     # attributes used in xrefs to other Antora components
     cq-camel-components: 3.14.x@components # replace ${camel.docs.components.xref}
     quarkus-examples-version: latest
diff --git a/pom.xml b/pom.xml
index 30fa249..9d915f2 100644
--- a/pom.xml
+++ b/pom.xml
@@ -55,7 +55,7 @@
         <quarkiverse-jsch.version>1.0.0</quarkiverse-jsch.version><!-- https://repo1.maven.org/maven2/io/quarkiverse/jsch/quarkus-jsch-parent/ -->
         <quarkiverse-minio.version>2.3.0</quarkiverse-minio.version><!-- https://repo1.maven.org/maven2/io/quarkiverse/minio/quarkus-minio-parent/ -->
         <quarkiverse-tika.version>1.0.3</quarkiverse-tika.version><!-- https://repo1.maven.org/maven2/io/quarkiverse/tika/quarkus-tika-parent/ -->
-        <quarkus.version>2.7.0.CR1</quarkus.version><!-- https://repo1.maven.org/maven2/io/quarkus/quarkus-bom/ -->
+        <quarkus.version>999-SNAPSHOT</quarkus.version><!-- https://repo1.maven.org/maven2/io/quarkus/quarkus-bom/ -->
         <quarkus-hazelcast-client.version>2.0.0</quarkus-hazelcast-client.version><!-- https://repo1.maven.org/maven2/com/hazelcast/quarkus-hazelcast-client-bom/ -->
         <quarkus-qpid-jms.version>0.30.0</quarkus-qpid-jms.version><!-- https://repo1.maven.org/maven2/org/amqphub/quarkus/quarkus-qpid-jms-bom/ -->