You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@kafka.apache.org by mi...@apache.org on 2021/11/22 10:35:57 UTC

[kafka] branch 2.6 updated: MINOR: Bump 2.6 to use 2.6.3 (#11495)

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

mimaison pushed a commit to branch 2.6
in repository https://gitbox.apache.org/repos/asf/kafka.git


The following commit(s) were added to refs/heads/2.6 by this push:
     new 3fcb3a5  MINOR: Bump 2.6 to use 2.6.3 (#11495)
3fcb3a5 is described below

commit 3fcb3a5322f5809f49353e0df8da55d87e65cd75
Author: Mickael Maison <mi...@users.noreply.github.com>
AuthorDate: Mon Nov 22 11:34:04 2021 +0100

    MINOR: Bump 2.6 to use 2.6.3 (#11495)
    
    
    Reviewers: David Jacot <dj...@confluent.io>
---
 docs/upgrade.html          | 2 +-
 gradle/dependencies.gradle | 2 +-
 tests/docker/Dockerfile    | 4 ++--
 tests/kafkatest/version.py | 3 ++-
 vagrant/base.sh            | 4 ++--
 5 files changed, 8 insertions(+), 7 deletions(-)

diff --git a/docs/upgrade.html b/docs/upgrade.html
index 17a20e8..eef3102 100644
--- a/docs/upgrade.html
+++ b/docs/upgrade.html
@@ -19,7 +19,7 @@
 
 <script id="upgrade-template" type="text/x-handlebars-template">
 
-<h4><a id="upgrade_2_6_2" href="#upgrade_2_6_2">Upgrading to 2.6.2 from any version 0.8.x through 2.5.x</a></h4>
+<h4><a id="upgrade_2_6_3" href="#upgrade_2_6_3">Upgrading to 2.6.3 from any version 0.8.x through 2.5.x</a></h4>
 
 <p><b>If you are upgrading from a version prior to 2.1.x, please see the note below about the change to the schema used to store consumer offsets.
     Once you have changed the inter.broker.protocol.version to the latest version, it will not be possible to downgrade to a version prior to 2.1.</b></p>
diff --git a/gradle/dependencies.gradle b/gradle/dependencies.gradle
index 64d76e6..3ded59a 100644
--- a/gradle/dependencies.gradle
+++ b/gradle/dependencies.gradle
@@ -92,7 +92,7 @@ versions += [
   kafka_23: "2.3.1",
   kafka_24: "2.4.1",
   kafka_25: "2.5.1",
-  kafka_26: "2.6.2",
+  kafka_26: "2.6.3",
   lz4: "1.7.1",
   mavenArtifact: "3.8.1",
   metrics: "2.2.0",
diff --git a/tests/docker/Dockerfile b/tests/docker/Dockerfile
index bba0080..37ae1cc 100644
--- a/tests/docker/Dockerfile
+++ b/tests/docker/Dockerfile
@@ -59,7 +59,7 @@ RUN mkdir -p "/opt/kafka-2.2.2" && chmod a+rw /opt/kafka-2.2.2 && curl -s "$KAFK
 RUN mkdir -p "/opt/kafka-2.3.1" && chmod a+rw /opt/kafka-2.3.1 && curl -s "$KAFKA_MIRROR/kafka_2.12-2.3.1.tgz" | tar xz --strip-components=1 -C "/opt/kafka-2.3.1"
 RUN mkdir -p "/opt/kafka-2.4.1" && chmod a+rw /opt/kafka-2.4.1 && curl -s "$KAFKA_MIRROR/kafka_2.12-2.4.1.tgz" | tar xz --strip-components=1 -C "/opt/kafka-2.4.1"
 RUN mkdir -p "/opt/kafka-2.5.1" && chmod a+rw /opt/kafka-2.5.1 && curl -s "$KAFKA_MIRROR/kafka_2.12-2.5.1.tgz" | tar xz --strip-components=1 -C "/opt/kafka-2.5.1"
-RUN mkdir -p "/opt/kafka-2.6.2" && chmod a+rw /opt/kafka-2.6.2 && curl -s "$KAFKA_MIRROR/kafka_2.12-2.6.2.tgz" | tar xz --strip-components=1 -C "/opt/kafka-2.6.2"
+RUN mkdir -p "/opt/kafka-2.6.3" && chmod a+rw /opt/kafka-2.6.3 && curl -s "$KAFKA_MIRROR/kafka_2.12-2.6.3.tgz" | tar xz --strip-components=1 -C "/opt/kafka-2.6.3"
 
 # Streams test dependencies
 RUN curl -s "$KAFKA_MIRROR/kafka-streams-0.10.0.1-test.jar" -o /opt/kafka-0.10.0.1/libs/kafka-streams-0.10.0.1-test.jar
@@ -74,7 +74,7 @@ RUN curl -s "$KAFKA_MIRROR/kafka-streams-2.2.2-test.jar" -o /opt/kafka-2.2.2/lib
 RUN curl -s "$KAFKA_MIRROR/kafka-streams-2.3.1-test.jar" -o /opt/kafka-2.3.1/libs/kafka-streams-2.3.1-test.jar
 RUN curl -s "$KAFKA_MIRROR/kafka-streams-2.4.1-test.jar" -o /opt/kafka-2.4.1/libs/kafka-streams-2.4.1-test.jar
 RUN curl -s "$KAFKA_MIRROR/kafka-streams-2.5.1-test.jar" -o /opt/kafka-2.5.1/libs/kafka-streams-2.5.1-test.jar
-RUN curl -s "$KAFKA_MIRROR/kafka-streams-2.6.2-test.jar" -o /opt/kafka-2.6.2/libs/kafka-streams-2.6.2-test.jar
+RUN curl -s "$KAFKA_MIRROR/kafka-streams-2.6.3-test.jar" -o /opt/kafka-2.6.3/libs/kafka-streams-2.6.3-test.jar
 
 # The version of Kibosh to use for testing.
 # If you update this, also update vagrant/base.sh
diff --git a/tests/kafkatest/version.py b/tests/kafkatest/version.py
index 453580d..5baf11e 100644
--- a/tests/kafkatest/version.py
+++ b/tests/kafkatest/version.py
@@ -153,4 +153,5 @@ LATEST_2_5 = V_2_5_1
 V_2_6_0 = KafkaVersion("2.6.0")
 V_2_6_1 = KafkaVersion("2.6.1")
 V_2_6_2 = KafkaVersion("2.6.2")
-LATEST_2_6 = V_2_6_2
+V_2_6_3 = KafkaVersion("2.6.3")
+LATEST_2_6 = V_2_6_3
diff --git a/vagrant/base.sh b/vagrant/base.sh
index cd9dca2..0b1e852 100755
--- a/vagrant/base.sh
+++ b/vagrant/base.sh
@@ -142,8 +142,8 @@ get_kafka 2.4.1 2.12
 chmod a+rw /opt/kafka-2.4.1
 get_kafka 2.5.1 2.12
 chmod a+rw /opt/kafka-2.5.1
-get_kafka 2.6.2 2.12
-chmod a+rw /opt/kafka-2.6.2
+get_kafka 2.6.3 2.12
+chmod a+rw /opt/kafka-2.6.3
 
 # For EC2 nodes, we want to use /mnt, which should have the local disk. On local
 # VMs, we can just create it if it doesn't exist and use it like we'd use