This is an automated email from the ASF dual-hosted git repository.
davsclaus pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/camel.git
The following commit(s) were added to refs/heads/main by this push:
new 05c5112 CAMEL-17567: camel-main - Add basePackageScan to auto
discover route builders, configuration classes, and type converters.
05c5112 is described below
commit 05c5112c3b77e131600cbb5dc9032b8d579595e3
Author: Claus Ibsen <[email protected]>
AuthorDate: Mon Jan 31 14:03:14 2022 +0100
CAMEL-17567: camel-main - Add basePackageScan to auto discover route
builders, configuration classes, and type converters.
---
docs/user-manual/modules/ROOT/pages/camel-3x-upgrade-guide-3_16.adoc | 2 ++
1 file changed, 2 insertions(+)
diff --git
a/docs/user-manual/modules/ROOT/pages/camel-3x-upgrade-guide-3_16.adoc
b/docs/user-manual/modules/ROOT/pages/camel-3x-upgrade-guide-3_16.adoc
index 0de3f0b..e5599ec 100644
--- a/docs/user-manual/modules/ROOT/pages/camel-3x-upgrade-guide-3_16.adoc
+++ b/docs/user-manual/modules/ROOT/pages/camel-3x-upgrade-guide-3_16.adoc
@@ -10,3 +10,5 @@ from both 3.0 to 3.1 and 3.1 to 3.2.
The option `camel.main.packageScanRouteBuilders` has been renamed to
`camel.main.basePackageScan`.
+Using configuration classes must now implement the interface
`org.apache.camel.main.CamelConfiguration`
+and the `configure` method now takes a `CamelContext` as argument.