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
commit 549c0293785d04e7a5b221ef1b480d9e84405f7b Author: Claus Ibsen <claus.ib...@gmail.com> AuthorDate: Sun Sep 27 10:36:11 2020 +0200 CAMEL-14499: Update 3.6 upgrade guide --- .../modules/ROOT/pages/camel-3x-upgrade-guide-3_6.adoc | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/docs/user-manual/modules/ROOT/pages/camel-3x-upgrade-guide-3_6.adoc b/docs/user-manual/modules/ROOT/pages/camel-3x-upgrade-guide-3_6.adoc index 206f42b..d2daddb 100644 --- a/docs/user-manual/modules/ROOT/pages/camel-3x-upgrade-guide-3_6.adoc +++ b/docs/user-manual/modules/ROOT/pages/camel-3x-upgrade-guide-3_6.adoc @@ -117,6 +117,15 @@ public class Application { As a consequence of this change, the Camel Spring Boot starters have been amended to use Customizers instead of creating instances of components, languages or data formats. ==== +=== Component Verifiers + +Camel components which provides `ComponentVerifierExtension` should have `camel-core-catalog` added as dependency at runtime, if the verifier are in use. +You will see an exception about `camel-core-catalog` not found on classpath otherwise. + +=== SendDynamicAware + +The API in `org.apache.camel.spi.SendDynamicAware` has changed and any custom implementations must be updated accordingly. +There is a new abstract `org.apache.camel.support.component.SendDynamicAwareSupport` class which can be used as base for custom implementations. === Camel Caffeine