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 c6e1a39d1205abacd63f664348f27a990f1433fc Author: Claus Ibsen <claus.ib...@gmail.com> AuthorDate: Tue Mar 21 18:09:59 2023 +0100 CAMEL-19177: camel-platform-http - Spring Boot implementation that use directly the HTTP server --- .../ROOT/pages/camel-3x-upgrade-guide-3_21.adoc | 23 ++++++++++++++++++++++ 1 file changed, 23 insertions(+) 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 1ab3839c1a8..84d677b62b5 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,29 @@ The `certificatePath` parameter can now be specified as resource: for user point The deprecated option `componentName` was removed. Please use either `producerComponentName` or `consumerComponentName`. +=== 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. +This can be enabled again by setting `camel.metrics.uriTagDynamic=true`. + +=== camel-platform-http-starter + +The `platform-http-starter` has been changed from using `camel-servlet` to use Spring HTTP server directly. +Therefore, all the HTTP endpoints are no longer prefixed with the servlet context-path (default is `camel`). + +For example: + +[source,java] +---- +from("platform-http:myservice") + .to("...") +---- + +Then calling _myservice_ would before require to include the context-path, such as `http://localhost:8080/camel/myservice`. +Now the context-path is not in use, and the endpoint can be called with `http://localhost:8080/myservice`. + +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: