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 2024/01/20 03:53:12 UTC

(camel-quarkus) branch quarkus-main updated (b65d60be1f -> ad4fa50acc)

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

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


 discard b65d60be1f Disable MyBatis integration tests due to #5656
 discard 7825f614db Upgrade Quarkus to 3.9.0.CR1
     add 173d909631 Adding a rebase step into github action integration-tests-alternative-jdk
     add e7ea089a8a Upgrade to Quarkus CXF 2.7.0.CR2
     new 41c96c9a24 Upgrade Quarkus to 3.9.0.CR1
     new ad4fa50acc Disable MyBatis integration tests due to #5656

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   (b65d60be1f)
            \
             N -- N -- N   refs/heads/quarkus-main (ad4fa50acc)

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 2 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           |   6 +
 .github/workflows/quarkus-master-cron.yaml         |   6 +
 .../jackson-dataformat-xml/deployment/pom.xml      |   4 +
 .../JacksonDataformatXmlSupportProcessor.java      |  27 +-
 .../jackson-dataformat-xml/runtime/pom.xml         |   4 +
 pom.xml                                            |   2 +-
 poms/bom/src/main/generated/flattened-full-pom.xml | 521 +++++++++++----------
 .../src/main/generated/flattened-reduced-pom.xml   |  67 ++-
 .../generated/flattened-reduced-verbose-pom.xml    | 521 +++++++++++----------
 9 files changed, 611 insertions(+), 547 deletions(-)


(camel-quarkus) 02/02: Disable MyBatis integration tests due to #5656

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

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

commit ad4fa50acc27b3e997bd46e62a0da89d1b32fb8c
Author: James Netherton <ja...@gmail.com>
AuthorDate: Fri Jan 19 07:24:18 2024 +0000

    Disable MyBatis integration tests due to #5656
---
 .../apache/camel/quarkus/component/mybatis/it/MyBatisConsumerTest.java  | 2 ++
 .../java/org/apache/camel/quarkus/component/mybatis/it/MyBatisIT.java   | 2 ++
 .../java/org/apache/camel/quarkus/component/mybatis/it/MyBatisTest.java | 2 ++
 3 files changed, 6 insertions(+)

diff --git a/integration-tests/mybatis/src/test/java/org/apache/camel/quarkus/component/mybatis/it/MyBatisConsumerTest.java b/integration-tests/mybatis/src/test/java/org/apache/camel/quarkus/component/mybatis/it/MyBatisConsumerTest.java
index f1e8f4673b..17bd941adf 100644
--- a/integration-tests/mybatis/src/test/java/org/apache/camel/quarkus/component/mybatis/it/MyBatisConsumerTest.java
+++ b/integration-tests/mybatis/src/test/java/org/apache/camel/quarkus/component/mybatis/it/MyBatisConsumerTest.java
@@ -27,11 +27,13 @@ import io.restassured.RestAssured;
 import io.restassured.path.json.JsonPath;
 import org.apache.camel.quarkus.component.mybatis.it.entity.Account;
 import org.awaitility.Awaitility;
+import org.junit.jupiter.api.Disabled;
 import org.junit.jupiter.api.Test;
 
 import static io.restassured.RestAssured.given;
 import static org.hamcrest.Matchers.is;
 
+@Disabled("https://github.com/apache/camel-quarkus/issues/5656")
 @QuarkusTest
 @QuarkusTestResource(H2DatabaseTestResource.class)
 public class MyBatisConsumerTest {
diff --git a/integration-tests/mybatis/src/test/java/org/apache/camel/quarkus/component/mybatis/it/MyBatisIT.java b/integration-tests/mybatis/src/test/java/org/apache/camel/quarkus/component/mybatis/it/MyBatisIT.java
index 5fe3170c5b..fbcc61ce49 100644
--- a/integration-tests/mybatis/src/test/java/org/apache/camel/quarkus/component/mybatis/it/MyBatisIT.java
+++ b/integration-tests/mybatis/src/test/java/org/apache/camel/quarkus/component/mybatis/it/MyBatisIT.java
@@ -17,7 +17,9 @@
 package org.apache.camel.quarkus.component.mybatis.it;
 
 import io.quarkus.test.junit.QuarkusIntegrationTest;
+import org.junit.jupiter.api.Disabled;
 
+@Disabled("https://github.com/apache/camel-quarkus/issues/5656")
 @QuarkusIntegrationTest
 public class MyBatisIT extends MyBatisTest {
 }
diff --git a/integration-tests/mybatis/src/test/java/org/apache/camel/quarkus/component/mybatis/it/MyBatisTest.java b/integration-tests/mybatis/src/test/java/org/apache/camel/quarkus/component/mybatis/it/MyBatisTest.java
index e9f9bcc457..2cb6a7ee90 100644
--- a/integration-tests/mybatis/src/test/java/org/apache/camel/quarkus/component/mybatis/it/MyBatisTest.java
+++ b/integration-tests/mybatis/src/test/java/org/apache/camel/quarkus/component/mybatis/it/MyBatisTest.java
@@ -28,10 +28,12 @@ import io.quarkus.test.junit.QuarkusTest;
 import io.restassured.RestAssured;
 import io.restassured.http.ContentType;
 import org.apache.camel.quarkus.component.mybatis.it.entity.Account;
+import org.junit.jupiter.api.Disabled;
 import org.junit.jupiter.api.Test;
 
 import static org.hamcrest.Matchers.equalTo;
 
+@Disabled("https://github.com/apache/camel-quarkus/issues/5656")
 @QuarkusTest
 @QuarkusTestResource(H2DatabaseTestResource.class)
 public class MyBatisTest {


(camel-quarkus) 01/02: Upgrade Quarkus to 3.9.0.CR1

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

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

commit 41c96c9a248e9af02c43b36cef425a7289452a1c
Author: James Netherton <ja...@gmail.com>
AuthorDate: Thu Jan 18 07:33:21 2024 +0000

    Upgrade Quarkus to 3.9.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 d61d512f4c..9b4afeb1a5 100644
--- a/docs/antora.yml
+++ b/docs/antora.yml
@@ -31,7 +31,7 @@ asciidoc:
     camel-version: 4.3.0 # replace ${camel.version}
     camel-docs-version: next
     camel-quarkus-version: 3.7.0 # replace ${camel-quarkus.version}
-    quarkus-version: 3.7.0.CR1 # replace ${quarkus.version}
+    quarkus-version: 999-SNAPSHOT # replace ${quarkus.version}
     graalvm-version: 23.0.1 # replace ${graalvm.version}
     graalvm-docs-version: jdk21 # replace ${graalvm-docs.version}
     mapstruct-version: 1.5.5.Final # replace ${mapstruct.version}
diff --git a/pom.xml b/pom.xml
index a498de00ab..03b41849ed 100644
--- a/pom.xml
+++ b/pom.xml
@@ -61,7 +61,7 @@
         <quarkiverse-mybatis.version>2.2.0</quarkiverse-mybatis.version><!-- https://repo1.maven.org/maven2/io/quarkiverse/mybatis/quarkus-mybatis-parent/ -->
         <quarkiverse-pooled-jms.version>2.3.0</quarkiverse-pooled-jms.version><!-- https://repo1.maven.org/maven2/io/quarkiverse/messaginghub/quarkus-pooled-jms-parent/ -->
         <quarkiverse-tika.version>2.0.2</quarkiverse-tika.version><!-- https://repo1.maven.org/maven2/io/quarkiverse/tika/quarkus-tika-parent/ -->
-        <quarkus.version>3.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>4.0.0</quarkus-hazelcast-client.version><!-- https://repo1.maven.org/maven2/com/hazelcast/quarkus-hazelcast-client-bom/ -->
         <quarkus-qpid-jms.version>2.5.0</quarkus-qpid-jms.version><!-- This should be in sync with quarkus-platform https://repo1.maven.org/maven2/org/amqphub/quarkus/quarkus-qpid-jms-bom/ -->