apupier commented on code in PR #22338:
URL: https://github.com/apache/camel/pull/22338#discussion_r3010452838


##########
docs/user-manual/modules/ROOT/pages/camel-4x-upgrade-guide-4_19.adoc:
##########
@@ -560,6 +560,36 @@ The `camel-tracing` and related components 
(`camel-opentelemetry` and `camel-obs
 
 Some minor difference may be expected when moving to the new components, make 
sure to read the documentation carefully.
 
+=== camel-zeebe (Deprecation)
+
+The `camel-zeebe` component has been deprecated and will be removed in a 
future release.
+A new xref:components::camunda-component.adoc[camel-camunda] component has 
been added as its replacement.
+
+The `camel-camunda` component uses the new Camunda Java Client 
(`io.camunda:camunda-client-java`)
+instead of the legacy Zeebe client, aligning with the Camunda 8 platform 
rebranding.
+
+To migrate, change your dependency from:
+
+[source,xml]
+----
+<dependency>
+    <groupId>org.apache.camel</groupId>
+    <artifactId>camel-zeebe</artifactId>
+</dependency>
+----
+
+To:
+
+[source,xml]
+----
+<dependency>
+    <groupId>org.apache.camel</groupId>
+    <artifactId>camel-camunda</artifactId>
+</dependency>
+----
+
+And update your endpoint URIs from `zeebe:` to `camunda:`.
+

Review Comment:
   it also needs to adapt some properties like grpcAddress/restAddress/clusterID
   
   jobType JobKey
   
   these informations are important for people that wants to migrate and also 
when the upgrade recipes, it is usually looking to the migration notes



-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: [email protected]

For queries about this service, please contact Infrastructure at:
[email protected]

Reply via email to