This is an automated email from the ASF dual-hosted git repository.
jamesnetherton pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/camel-quarkus.git
The following commit(s) were added to refs/heads/main by this push:
new 4d5df6eaeb Add 3.38.0 migration guide for quarkus-cxf-rt-ws-security
being optional again
4d5df6eaeb is described below
commit 4d5df6eaeb8cff9fd7273ef1ae11de3be464e014
Author: James Netherton <[email protected]>
AuthorDate: Wed Jul 8 07:46:34 2026 +0100
Add 3.38.0 migration guide for quarkus-cxf-rt-ws-security being optional
again
---
docs/modules/ROOT/pages/migration-guide/3.38.0.adoc | 18 ++++++++++++++++++
docs/modules/ROOT/pages/migration-guide/index.adoc | 1 +
2 files changed, 19 insertions(+)
diff --git a/docs/modules/ROOT/pages/migration-guide/3.38.0.adoc
b/docs/modules/ROOT/pages/migration-guide/3.38.0.adoc
new file mode 100644
index 0000000000..25d56c8f64
--- /dev/null
+++ b/docs/modules/ROOT/pages/migration-guide/3.38.0.adoc
@@ -0,0 +1,18 @@
+= Camel Quarkus 3.38.0 Migration Guide
+
+The following guide outlines how to adapt your code to changes that were made
in Camel Quarkus 3.38.0.
+
+== CXF SOAP - WS-Security dependency is now optional
+
+The `quarkus-cxf-rt-ws-security` dependency has been removed from the
`camel-quarkus-cxf-soap` extension.
+This aligns with the same change made in
xref:manual::camel-4x-upgrade-guide-4_21.adoc#_ws_security_dependency_is_now_optional[Apache
Camel 4.21.0], where the WS-Security dependency was made optional.
+
+If your application uses WS-Security features, you must now add the dependency
explicitly to your project `pom.xml`:
+
+[source,xml]
+----
+<dependency>
+ <groupId>io.quarkiverse.cxf</groupId>
+ <artifactId>quarkus-cxf-rt-ws-security</artifactId>
+</dependency>
+----
diff --git a/docs/modules/ROOT/pages/migration-guide/index.adoc
b/docs/modules/ROOT/pages/migration-guide/index.adoc
index 5c0025ea73..6a4f52a81f 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.38.0.adoc[Camel Quarkus 3.36.x to Camel Quarkus
3.38.0 migration guide]
* xref:migration-guide/3.36.0.adoc[Camel Quarkus 3.35.x to Camel Quarkus
3.36.0 migration guide]
* xref:migration-guide/3.35.0.adoc[Camel Quarkus 3.33.x to Camel Quarkus
3.35.0 migration guide]
* xref:migration-guide/3.33.0.adoc[Camel Quarkus 3.32.x to Camel Quarkus
3.33.0 migration guide]