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
commit a464225245b8dc025ea598a25c50e8e8e0345838 Author: Claus Ibsen <[email protected]> AuthorDate: Wed Dec 1 09:58:15 2021 +0100 CAMEL-17255: camel-kafka - Use kafka interfaces for kafka producer and kafka consumer so the factory can create other implementations, such as mocks for testing. --- docs/user-manual/modules/ROOT/pages/camel-3x-upgrade-guide-3_14.adoc | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/docs/user-manual/modules/ROOT/pages/camel-3x-upgrade-guide-3_14.adoc b/docs/user-manual/modules/ROOT/pages/camel-3x-upgrade-guide-3_14.adoc index 834c86e..ec14503 100644 --- a/docs/user-manual/modules/ROOT/pages/camel-3x-upgrade-guide-3_14.adoc +++ b/docs/user-manual/modules/ROOT/pages/camel-3x-upgrade-guide-3_14.adoc @@ -10,6 +10,11 @@ from both 3.0 to 3.1 and 3.1 to 3.2. Added method `updateRoutesToCamelContext` to `org.apache.camel.RoutesBuilder` interface. +=== camel-kafka + +The APIs in `camel-kafka` component changed from using the Kafka Client classes `org.apache.kafka.clients.producer.KafkaProducer` and `org.apache.kafka.clients.consumer.KafkaConsumer` +to their interfaces `org.apache.kafka.clients.producer.Producer` and `org.apache.kafka.clients.consumer.Consumer` instead. + === camel-jbang The option `debug-level` has been renamed to `logging-level` because the option is for configuring the logging level.
