This is an automated email from the ASF dual-hosted git repository. davsclaus pushed a commit to branch camel-3.x in repository https://gitbox.apache.org/repos/asf/camel.git
commit d3c680285fd8456e92ca7677c349bb0f60404b5e Author: Claus Ibsen <[email protected]> AuthorDate: Fri Mar 24 10:36:30 2023 +0100 CAMEL-19156: XML routes loader (jaxb) should load routes-configurations --- .../ROOT/pages/camel-3x-upgrade-guide-3_21.adoc | 28 +++++++++++++++++----- 1 file changed, 22 insertions(+), 6 deletions(-) diff --git a/docs/user-manual/modules/ROOT/pages/camel-3x-upgrade-guide-3_21.adoc b/docs/user-manual/modules/ROOT/pages/camel-3x-upgrade-guide-3_21.adoc index 84d677b62b5..1412b8a290f 100644 --- a/docs/user-manual/modules/ROOT/pages/camel-3x-upgrade-guide-3_21.adoc +++ b/docs/user-manual/modules/ROOT/pages/camel-3x-upgrade-guide-3_21.adoc @@ -112,6 +112,28 @@ The `certificatePath` parameter can now be specified as resource: for user point The deprecated option `componentName` was removed. Please use either `producerComponentName` or `consumerComponentName`. +=== Deprecated Components + +The following components that had been marked as deprecated, were removed in this release: + +* camel-dozer +* camel-cmis + +== Backlog Tracing + +The option `backlogTracing=true` now automatic enabled the tracer on startup. The previous behavior +was _surprisingly_ that the tracer was only made available, and had to be manually enabled afterwards. +The old behavior can be archived by setting `backlogTracingStandby=true`. + +Move the following class from `org.apache.camel.api.management.mbean.BacklogTracerEventMessage` in `camel-management-api` JAR +to `org.apache.camel.spi.BacklogTracerEventMessage` in `camel-api` JAR. + + +== Camel Spring Boot + +The `camel-spring-boot` dependency no longer includes `camel-spring-xml`. To use legacy Spring XML files `<beans>` +with Camel on Spring Boot, then include the `camel-spring-boot-xml-starter` dependency. + === camel-micrometer-starter The `uri` tags are now static instead of dynamic (by default), as potential too many tags generated due to URI with dynamic values. @@ -135,9 +157,3 @@ Now the context-path is not in use, and the endpoint can be called with `http:// NOTE: The `platform-http-starter` can also be used with Rest DSL. -=== Deprecated Components - -The following components that had been marked as deprecated, were removed in this release: - -* camel-dozer -* camel-cmis
