Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion gradle/dependencies.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -108,7 +108,7 @@ versions += [
kafka_39: "3.9.2",
kafka_40: "4.0.1",
kafka_41: "4.1.2",
kafka_42: "4.2.0",
kafka_42: "4.2.1",
kafka_43: "4.3.0",
log4j2: "2.25.4",
// When updating lz4 make sure the compression levels in org.apache.kafka.common.record.internal.CompressionType are still valid
Expand Down
4 changes: 2 additions & 2 deletions tests/docker/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -96,7 +96,7 @@ RUN mkdir -p "/opt/kafka-3.8.1" && chmod a+rw /opt/kafka-3.8.1 && curl -s "$KAFK
RUN mkdir -p "/opt/kafka-3.9.2" && chmod a+rw /opt/kafka-3.9.2 && curl -s "$KAFKA_MIRROR/kafka_2.13-3.9.2.tgz" | tar xz --strip-components=1 -C "/opt/kafka-3.9.2"
RUN mkdir -p "/opt/kafka-4.0.1" && chmod a+rw /opt/kafka-4.0.1 && curl -s "$KAFKA_MIRROR/kafka_2.13-4.0.1.tgz" | tar xz --strip-components=1 -C "/opt/kafka-4.0.1"
RUN mkdir -p "/opt/kafka-4.1.2" && chmod a+rw /opt/kafka-4.1.2 && curl -s "$KAFKA_MIRROR/kafka_2.13-4.1.2.tgz" | tar xz --strip-components=1 -C "/opt/kafka-4.1.2"
RUN mkdir -p "/opt/kafka-4.2.0" && chmod a+rw /opt/kafka-4.2.0 && curl -s "$KAFKA_MIRROR/kafka_2.13-4.2.0.tgz" | tar xz --strip-components=1 -C "/opt/kafka-4.2.0"
RUN mkdir -p "/opt/kafka-4.2.1" && chmod a+rw /opt/kafka-4.2.1 && curl -s "$KAFKA_MIRROR/kafka_2.13-4.2.1.tgz" | tar xz --strip-components=1 -C "/opt/kafka-4.2.1"
RUN mkdir -p "/opt/kafka-4.3.0" && chmod a+rw /opt/kafka-4.3.0 && curl -s "$KAFKA_MIRROR/kafka_2.13-4.3.0.tgz" | tar xz --strip-components=1 -C "/opt/kafka-4.3.0"


Expand All @@ -121,7 +121,7 @@ RUN curl -s "$KAFKA_MIRROR/kafka-streams-3.8.1-test.jar" -o /opt/kafka-3.8.1/lib
RUN curl -s "$KAFKA_MIRROR/kafka-streams-3.9.2-test.jar" -o /opt/kafka-3.9.2/libs/kafka-streams-3.9.2-test.jar
RUN curl -s "$KAFKA_MIRROR/kafka-streams-4.0.1-test.jar" -o /opt/kafka-4.0.1/libs/kafka-streams-4.0.1-test.jar
RUN curl -s "$KAFKA_MIRROR/kafka-streams-4.1.2-test.jar" -o /opt/kafka-4.1.2/libs/kafka-streams-4.1.2-test.jar
RUN curl -s "$KAFKA_MIRROR/kafka-streams-4.2.0-test.jar" -o /opt/kafka-4.2.0/libs/kafka-streams-4.2.0-test.jar
RUN curl -s "$KAFKA_MIRROR/kafka-streams-4.2.1-test.jar" -o /opt/kafka-4.2.1/libs/kafka-streams-4.2.1-test.jar
RUN curl -s "$KAFKA_MIRROR/kafka-streams-4.3.0-test.jar" -o /opt/kafka-4.3.0/libs/kafka-streams-4.3.0-test.jar

# To ensure the Kafka cluster starts successfully under JDK 17, we need to update the Zookeeper
Expand Down
3 changes: 2 additions & 1 deletion tests/kafkatest/version.py
Original file line number Diff line number Diff line change
Expand Up @@ -256,7 +256,8 @@ def get_version(node=None):

# 4.2.x version
V_4_2_0 = KafkaVersion("4.2.0")
LATEST_4_2 = V_4_2_0
V_4_2_1 = KafkaVersion("4.2.1")
LATEST_4_2 = V_4_2_1

# 4.3.x version
V_4_3_0 = KafkaVersion("4.3.0")
Expand Down
4 changes: 2 additions & 2 deletions vagrant/base.sh
Original file line number Diff line number Diff line change
Expand Up @@ -178,8 +178,8 @@ get_kafka 4.0.1 2.13
chmod a+rw /opt/kafka-4.0.1
get_kafka 4.1.2 2.13
chmod a+rw /opt/kafka-4.1.2
get_kafka 4.2.0 2.13
chmod a+rw /opt/kafka-4.2.0
get_kafka 4.2.1 2.13
chmod a+rw /opt/kafka-4.2.1
get_kafka 4.3.0 2.13
chmod a+rw /opt/kafka-4.3.0

Expand Down
Loading