You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@camel.apache.org by or...@apache.org on 2022/08/04 13:28:34 UTC

[camel] branch main updated: (chores) camel-test-infra-kafka: upgrade Kafka 3 test image to 3.2.0

This is an automated email from the ASF dual-hosted git repository.

orpiske pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/camel.git


The following commit(s) were added to refs/heads/main by this push:
     new 813bc2bd4b4 (chores) camel-test-infra-kafka: upgrade Kafka 3 test image to 3.2.0
813bc2bd4b4 is described below

commit 813bc2bd4b4ef86fcaeeaea4220e6ad0b58192bb
Author: Otavio Rodolfo Piske <an...@gmail.com>
AuthorDate: Thu Aug 4 14:36:28 2022 +0200

    (chores) camel-test-infra-kafka: upgrade Kafka 3 test image to 3.2.0
    
    Provided by CP 7.2.1
    
    https://docs.confluent.io/platform/current/release-notes/index.html
---
 .../camel/test/infra/kafka/services/ContainerLocalKafkaService.java     | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/test-infra/camel-test-infra-kafka/src/test/java/org/apache/camel/test/infra/kafka/services/ContainerLocalKafkaService.java b/test-infra/camel-test-infra-kafka/src/test/java/org/apache/camel/test/infra/kafka/services/ContainerLocalKafkaService.java
index 2aaa9e73d5e..de31ac2ae75 100644
--- a/test-infra/camel-test-infra-kafka/src/test/java/org/apache/camel/test/infra/kafka/services/ContainerLocalKafkaService.java
+++ b/test-infra/camel-test-infra-kafka/src/test/java/org/apache/camel/test/infra/kafka/services/ContainerLocalKafkaService.java
@@ -25,7 +25,7 @@ import org.testcontainers.containers.KafkaContainer;
 import org.testcontainers.utility.DockerImageName;
 
 public class ContainerLocalKafkaService implements KafkaService, ContainerService<KafkaContainer> {
-    public static final String KAFKA3_IMAGE_NAME = "confluentinc/cp-kafka:7.0.1";
+    public static final String KAFKA3_IMAGE_NAME = "confluentinc/cp-kafka:7.2.1";
 
     private static final Logger LOG = LoggerFactory.getLogger(ContainerLocalKafkaService.class);
     private final KafkaContainer kafka;