Skip to content

Commit ea8babe

Browse files
MINOR: Add 4.0.1 to system tests (#20970)
Adding 4.0.1 that has been released. Reviewers: Chia-Ping Tsai <[email protected]>
1 parent bbb9220 commit ea8babe

File tree

4 files changed

+7
-6
lines changed

4 files changed

+7
-6
lines changed

gradle/dependencies.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -103,7 +103,7 @@ versions += [
103103
kafka_37: "3.7.2",
104104
kafka_38: "3.8.1",
105105
kafka_39: "3.9.1",
106-
kafka_40: "4.0.0",
106+
kafka_40: "4.0.1",
107107
kafka_41: "4.1.1",
108108
log4j2: "2.25.1",
109109
// When updating lz4 make sure the compression levels in org.apache.kafka.common.record.CompressionType are still valid

tests/docker/Dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -94,7 +94,7 @@ RUN mkdir -p "/opt/kafka-3.6.2" && chmod a+rw /opt/kafka-3.6.2 && curl -s "$KAFK
9494
RUN mkdir -p "/opt/kafka-3.7.2" && chmod a+rw /opt/kafka-3.7.2 && curl -s "$KAFKA_MIRROR/kafka_2.12-3.7.2.tgz" | tar xz --strip-components=1 -C "/opt/kafka-3.7.2"
9595
RUN mkdir -p "/opt/kafka-3.8.1" && chmod a+rw /opt/kafka-3.8.1 && curl -s "$KAFKA_MIRROR/kafka_2.12-3.8.1.tgz" | tar xz --strip-components=1 -C "/opt/kafka-3.8.1"
9696
RUN mkdir -p "/opt/kafka-3.9.1" && chmod a+rw /opt/kafka-3.9.1 && curl -s "$KAFKA_MIRROR/kafka_2.12-3.9.1.tgz" | tar xz --strip-components=1 -C "/opt/kafka-3.9.1"
97-
RUN mkdir -p "/opt/kafka-4.0.0" && chmod a+rw /opt/kafka-4.0.0 && curl -s "$KAFKA_MIRROR/kafka_2.13-4.0.0.tgz" | tar xz --strip-components=1 -C "/opt/kafka-4.0.0"
97+
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"
9898
RUN mkdir -p "/opt/kafka-4.1.1" && chmod a+rw /opt/kafka-4.1.1 && curl -s "$KAFKA_MIRROR/kafka_2.13-4.1.1.tgz" | tar xz --strip-components=1 -C "/opt/kafka-4.1.1"
9999

100100

@@ -117,7 +117,7 @@ RUN curl -s "$KAFKA_MIRROR/kafka-streams-3.6.2-test.jar" -o /opt/kafka-3.6.2/lib
117117
RUN curl -s "$KAFKA_MIRROR/kafka-streams-3.7.2-test.jar" -o /opt/kafka-3.7.2/libs/kafka-streams-3.7.2-test.jar
118118
RUN curl -s "$KAFKA_MIRROR/kafka-streams-3.8.1-test.jar" -o /opt/kafka-3.8.1/libs/kafka-streams-3.8.1-test.jar
119119
RUN curl -s "$KAFKA_MIRROR/kafka-streams-3.9.1-test.jar" -o /opt/kafka-3.9.1/libs/kafka-streams-3.9.1-test.jar
120-
RUN curl -s "$KAFKA_MIRROR/kafka-streams-4.0.0-test.jar" -o /opt/kafka-4.0.0/libs/kafka-streams-4.0.0-test.jar
120+
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
121121
RUN curl -s "$KAFKA_MIRROR/kafka-streams-4.1.1-test.jar" -o /opt/kafka-4.1.1/libs/kafka-streams-4.1.1-test.jar
122122

123123
# To ensure the Kafka cluster starts successfully under JDK 17, we need to update the Zookeeper

tests/kafkatest/version.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -239,7 +239,8 @@ def get_version(node=None):
239239

240240
# 4.0.x version
241241
V_4_0_0 = KafkaVersion("4.0.0")
242-
LATEST_4_0 = V_4_0_0
242+
V_4_0_1 = KafkaVersion("4.0.1")
243+
LATEST_4_0 = V_4_0_1
243244

244245
# 4.1.x version
245246
V_4_1_0 = KafkaVersion("4.1.0")

vagrant/base.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -150,8 +150,8 @@ get_kafka 3.8.1 2.12
150150
chmod a+rw /opt/kafka-3.8.1
151151
get_kafka 3.9.1 2.12
152152
chmod a+rw /opt/kafka-3.9.1
153-
get_kafka 4.0.0 2.13
154-
chmod a+rw /opt/kafka-4.0.0
153+
get_kafka 4.0.1 2.13
154+
chmod a+rw /opt/kafka-4.0.1
155155
get_kafka 4.1.1 2.13
156156
chmod a+rw /opt/kafka-4.1.1
157157

0 commit comments

Comments
 (0)