Skip to content

Commit 9a435ae

Browse files
authored
Add support for Kafka 2.6.0 (wurstmeister#613)
Kafka 2.6.0 was announced today 2020-08-06 on Apache's blog https://blogs.apache.org/kafka/entry/what-s-new-in-apache3. This PR adds support for it using the previous upgrade as a template wurstmeister#589 The scala version was upgraded from 2.12 to 2.13 as recommended on the download page https://kafka.apache.org/downloads.html
1 parent a455804 commit 9a435ae

File tree

5 files changed

+12
-4
lines changed

5 files changed

+12
-4
lines changed

.travis.yml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ services:
88
# This version will be also tagged as 'latest'
99
env:
1010
global:
11-
- LATEST="2.12-2.5.0"
11+
- LATEST="2.13-2.6.0"
1212

1313
# Build recommended versions based on: http://kafka.apache.org/downloads
1414
matrix:
@@ -37,6 +37,8 @@ matrix:
3737
env: KAFKA_VERSION=2.4.1
3838
- scala: 2.12
3939
env: KAFKA_VERSION=2.5.0
40+
- scala: 2.13
41+
env: KAFKA_VERSION=2.6.0
4042

4143
install:
4244
- docker --version

CHANGELOG.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,11 @@ Changelog
33

44
Kafka features are not tied to a specific kafka-docker version (ideally all changes will be merged into all branches). Therefore, this changelog will track changes to the image by date.
55

6+
06-Aug-2020
7+
-----------
8+
9+
- Add support for Kafka `2.6.0`
10+
611
20-Apr-2020
712
-----------
813

Dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
FROM openjdk:8u212-jre-alpine
22

3-
ARG kafka_version=2.5.0
4-
ARG scala_version=2.12
3+
ARG kafka_version=2.6.0
4+
ARG scala_version=2.13
55
ARG glibc_version=2.31-r0
66
ARG vcs_ref=unspecified
77
ARG build_date=unspecified

README.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,7 @@ Tags and releases
1616

1717
All versions of the image are built from the same set of scripts with only minor variations (i.e. certain features are not supported on older versions). The version format mirrors the Kafka format, `<scala version>-<kafka version>`. Initially, all images are built with the recommended version of scala documented on [http://kafka.apache.org/downloads](http://kafka.apache.org/downloads). Available tags are:
1818

19+
- `2.13-2.6.0`
1920
- `2.12-2.5.0`
2021
- `2.12-2.4.1`
2122
- `2.12-2.3.1`

test/docker-compose.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ services:
4949
image: confluentinc/cp-kafkacat:5.0.0
5050
environment:
5151
- BROKER_LIST
52-
- KAFKA_VERSION=${KAFKA_VERSION-2.5.0}
52+
- KAFKA_VERSION=${KAFKA_VERSION-2.6.0}
5353
volumes:
5454
- .:/tests
5555
working_dir: /tests

0 commit comments

Comments
 (0)