You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@camel.apache.org by da...@apache.org on 2021/02/10 08:46:18 UTC

[camel] branch master updated: Add note to 3.8 upgrade guide about configuration change

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

davsclaus pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/camel.git


The following commit(s) were added to refs/heads/master by this push:
     new f73fdfc  Add note to 3.8 upgrade guide about configuration change
f73fdfc is described below

commit f73fdfc8d8d4934190eae8999b1d40ccc6ff06ac
Author: Claus Ibsen <cl...@gmail.com>
AuthorDate: Wed Feb 10 09:45:46 2021 +0100

    Add note to 3.8 upgrade guide about configuration change
---
 .../modules/ROOT/pages/camel-3x-upgrade-guide-3_8.adoc  | 17 +++++++++++++++++
 .../modules/ROOT/pages/camel-3x-upgrade-guide.adoc      |  1 +
 2 files changed, 18 insertions(+)

diff --git a/docs/user-manual/modules/ROOT/pages/camel-3x-upgrade-guide-3_8.adoc b/docs/user-manual/modules/ROOT/pages/camel-3x-upgrade-guide-3_8.adoc
index c83593e..3b3787c 100644
--- a/docs/user-manual/modules/ROOT/pages/camel-3x-upgrade-guide-3_8.adoc
+++ b/docs/user-manual/modules/ROOT/pages/camel-3x-upgrade-guide-3_8.adoc
@@ -50,6 +50,23 @@ transacted mode and the existing reactive mode.
 We do not anticipate any issues but if you are using transactions and these EIPs then we would like to have feedback
 if you encounter any problems with upgrading.
 
+=== Configuration changes
+
+The configuration for specifying directory for loading XML routes have been consolidation into a single option (supporting all kinds):
+
+For Spring Boot users:
+
+`camel.springboot.xml-routes` to `camel.springboot.routes-include-pattern`
+`camel.springboot.xml-route-templates` to `camel.springboot.routes-include-pattern`
+`camel.springboot.xml-rests` to `camel.springboot.routes-include-pattern`
+
+For Camel Main users:
+
+`camel.main.xml-routes` to `camel.springboot.routes-include-pattern`
+`camel.main.xml-route-templates` to `camel.springboot.routes-include-pattern`
+`camel.main.xml-rests` to `camel.springboot.routes-include-pattern`
+
+
 === camel-jackson
 
 In the XML DSL `jsonView` has been renamed to `jsonViewTypeName` and made general available in the model
diff --git a/docs/user-manual/modules/ROOT/pages/camel-3x-upgrade-guide.adoc b/docs/user-manual/modules/ROOT/pages/camel-3x-upgrade-guide.adoc
index 3b9fe28..2b46f95 100644
--- a/docs/user-manual/modules/ROOT/pages/camel-3x-upgrade-guide.adoc
+++ b/docs/user-manual/modules/ROOT/pages/camel-3x-upgrade-guide.adoc
@@ -17,3 +17,4 @@ You can find upgrade guide for each release in the following pages:
 - xref:camel-3x-upgrade-guide-3_6.adoc[Upgrade guide from 3.5 to 3.6]
 - xref:camel-3x-upgrade-guide-3_7.adoc[Upgrade guide from 3.6 to 3.7]
 - xref:camel-3x-upgrade-guide-3_8.adoc[Upgrade guide from 3.7 to 3.8]
+- xref:camel-3x-upgrade-guide-3_9.adoc[Upgrade guide from 3.8 to 3.9]