Skip to content

Commit 37f8571

Browse files
authored
Support Kafka 2.3.0 (wurstmeister#514)
1 parent 2a5bcb7 commit 37f8571

File tree

5 files changed

+11
-3
lines changed

5 files changed

+11
-3
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.2.1"
11+
- LATEST="2.12-2.3.0"
1212

1313
# Build recommended versions based on: http://kafka.apache.org/downloads
1414
matrix:
@@ -31,6 +31,8 @@ matrix:
3131
env: KAFKA_VERSION=2.1.1
3232
- scala: 2.12
3333
env: KAFKA_VERSION=2.2.1
34+
- scala: 2.12
35+
env: KAFKA_VERSION=2.3.0
3436

3537
install:
3638
- 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+
28-Jun-2019
7+
-----------
8+
9+
- Add support for Kafka `2.3.0`
10+
611
04-Jun-2019
712
-----------
813

Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
FROM openjdk:8u212-jre-alpine
22

3-
ARG kafka_version=2.2.1
3+
ARG kafka_version=2.3.0
44
ARG scala_version=2.12
55
ARG glibc_version=2.29-r0
66
ARG vcs_ref=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.12-2.3.0`
1920
- `2.12-2.2.1`
2021
- `2.12-2.1.1`
2122
- `2.12-2.0.1`

test/docker-compose.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ services:
3535
image: confluentinc/cp-kafkacat:5.0.0
3636
environment:
3737
- BROKER_LIST
38-
- KAFKA_VERSION=${KAFKA_VERSION-2.2.1}
38+
- KAFKA_VERSION=${KAFKA_VERSION-2.3.0}
3939
volumes:
4040
- .:/tests
4141
working_dir: /tests

0 commit comments

Comments
 (0)