This is an automated email from the ASF dual-hosted git repository. jamesnetherton pushed a commit to branch 3.33.x in repository https://gitbox.apache.org/repos/asf/camel-quarkus.git
commit 13e0c2e7326c00cefce3361b98a22c66903b3caa Author: Andrea Cosentino <[email protected]> AuthorDate: Wed Sep 2 09:22:04 2026 +0200 Adapt the backported changes to the 3.33.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.33.3 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.33.x, whose quarkus-junit-internal ships only QuarkusDevModeTest, QuarkusProdModeTest and QuarkusUnitTest, so the new test uses QuarkusUnitTest here as its six sibling JTA tests already do. The swap to the non-deprecated class on main came from a later change that is not part of this backport. 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.33.3.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.33.3.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.33.3.adoc index 630aa2255e..25435ec04d 100644 --- a/docs/modules/ROOT/pages/migration-guide/3.40.0.adoc +++ b/docs/modules/ROOT/pages/migration-guide/3.33.3.adoc @@ -1,6 +1,6 @@ -= Camel Quarkus 3.40.0 Migration Guide += Camel Quarkus 3.33.3 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.33.3. == LDAP extension changes diff --git a/docs/modules/ROOT/pages/migration-guide/index.adoc b/docs/modules/ROOT/pages/migration-guide/index.adoc index ef595e2cb6..1e3458aaee 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.33.3.adoc[Camel Quarkus 3.33.2 to Camel Quarkus 3.33.3 migration guide] * xref:migration-guide/3.33.0.adoc[Camel Quarkus 3.32.x to Camel Quarkus 3.33.0 migration guide] * xref:migration-guide/3.31.0.adoc[Camel Quarkus 3.30.x to Camel Quarkus 3.31.0 migration guide] * xref:migration-guide/3.27.0.adoc[Camel Quarkus 3.26.x to Camel Quarkus 3.27.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));
