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

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

commit 2044a7a04ca09226e03f6496f01c623442fab00e
Author: Andrea Cosentino <[email protected]>
AuthorDate: Wed Sep 2 09:22:46 2026 +0200

    Adapt the backported changes to the 3.27.x line
    
    Two adjustments the cherry-picks could not make themselves.
    
    The 3.40.0 migration guide came along from main and does not belong to this
    release line. Replace it with a 3.27.6 guide carrying the same two notes,
    following the 3.20.2 precedent for a patch level guide on a maintenance
    branch.
    
    QuarkusExtensionTest does not exist in Quarkus 3.27.x, whose
    quarkus-junit5-internal ships only QuarkusDevModeTest, QuarkusProdModeTest 
and
    QuarkusUnitTest, so the new test uses QuarkusUnitTest here as its six 
sibling
    JTA tests already do.
    
    Co-Authored-By: Claude Opus 5 (1M context) <[email protected]>
    Claude-Session: https://claude.ai/code/session_018YmgydQvapQHWoJfotF8tK
---
 docs/modules/ROOT/pages/migration-guide/{3.40.0.adoc => 3.27.6.adoc}  | 4 ++--
 docs/modules/ROOT/pages/migration-guide/index.adoc                    | 1 +
 .../quarkus/component/jta/JtaTransactionFailurePropagationTest.java   | 4 ++--
 3 files changed, 5 insertions(+), 4 deletions(-)

diff --git a/docs/modules/ROOT/pages/migration-guide/3.40.0.adoc 
b/docs/modules/ROOT/pages/migration-guide/3.27.6.adoc
similarity index 97%
rename from docs/modules/ROOT/pages/migration-guide/3.40.0.adoc
rename to docs/modules/ROOT/pages/migration-guide/3.27.6.adoc
index 630aa2255e..b46244a4dc 100644
--- a/docs/modules/ROOT/pages/migration-guide/3.40.0.adoc
+++ b/docs/modules/ROOT/pages/migration-guide/3.27.6.adoc
@@ -1,6 +1,6 @@
-= Camel Quarkus 3.40.0 Migration Guide
+= Camel Quarkus 3.27.6 Migration Guide
 
-The following guide outlines how to adapt your code to changes that were made 
in Camel Quarkus 3.40.0.
+The following guide outlines how to adapt your code to changes that were made 
in Camel Quarkus 3.27.6.
 
 == LDAP extension changes
 
diff --git a/docs/modules/ROOT/pages/migration-guide/index.adoc 
b/docs/modules/ROOT/pages/migration-guide/index.adoc
index b85d9ffa41..ad5d2bda6e 100644
--- a/docs/modules/ROOT/pages/migration-guide/index.adoc
+++ b/docs/modules/ROOT/pages/migration-guide/index.adoc
@@ -4,6 +4,7 @@ We do frequent releases, a release almost every month, and even 
though we strive
 
 Listed here are guides on how to migrate between major versions and anything 
of significance to watch for when upgrading from minor versions.
 
+* xref:migration-guide/3.27.6.adoc[Camel Quarkus 3.27.5 to Camel Quarkus 
3.27.6 migration guide]
 * xref:migration-guide/3.27.0.adoc[Camel Quarkus 3.26.x to Camel Quarkus 
3.27.0 migration guide]
 * xref:migration-guide/3.26.0.adoc[Camel Quarkus 3.25.x to Camel Quarkus 
3.26.0 migration guide]
 * xref:migration-guide/3.23.0.adoc[Camel Quarkus 3.22.x to Camel Quarkus 
3.23.0 migration guide]
diff --git 
a/extensions/jta/deployment/src/test/java/org/apache/camel/quarkus/component/jta/JtaTransactionFailurePropagationTest.java
 
b/extensions/jta/deployment/src/test/java/org/apache/camel/quarkus/component/jta/JtaTransactionFailurePropagationTest.java
index 5d22fa3d00..4cb76fc193 100644
--- 
a/extensions/jta/deployment/src/test/java/org/apache/camel/quarkus/component/jta/JtaTransactionFailurePropagationTest.java
+++ 
b/extensions/jta/deployment/src/test/java/org/apache/camel/quarkus/component/jta/JtaTransactionFailurePropagationTest.java
@@ -18,7 +18,7 @@ package org.apache.camel.quarkus.component.jta;
 
 import java.util.Arrays;
 
-import io.quarkus.test.QuarkusExtensionTest;
+import io.quarkus.test.QuarkusUnitTest;
 import jakarta.inject.Inject;
 import jakarta.inject.Named;
 import jakarta.transaction.Status;
@@ -45,7 +45,7 @@ import static org.mockito.Mockito.when;
 public class JtaTransactionFailurePropagationTest {
 
     @RegisterExtension
-    static final QuarkusExtensionTest CONFIG = new QuarkusExtensionTest()
+    static final QuarkusUnitTest CONFIG = new QuarkusUnitTest()
             .setArchiveProducer(() -> ShrinkWrap.create(JavaArchive.class)
                     .addClasses(MockTransactionManagerProducer.class, 
MockTransaction.class));
 

Reply via email to