Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Bump Kafka version from 2.8.1 to 2.8.2 #727

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
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
4 changes: 2 additions & 2 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ services:
# This version will be also tagged as 'latest'
env:
global:
- LATEST="2.13-2.8.1"
- LATEST="2.13-2.8.2"

# Build recommended versions based on: http://kafka.apache.org/downloads
matrix:
Expand All @@ -28,7 +28,7 @@ matrix:
- scala: 2.13
env: KAFKA_VERSION=2.7.2
- scala: 2.13
env: KAFKA_VERSION=2.8.1
env: KAFKA_VERSION=2.8.2

# Upgrade Docker Engine so we can use buildx
before_install:
Expand Down
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,12 @@ Changelog

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.

22-Sep-2022
----------

- Add support for Kafka `2.8.2`

19-July
09-Apr-2022
----------

Expand Down
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
FROM openjdk:11-jre-slim

ARG kafka_version=2.8.1
ARG kafka_version=2.8.2
ARG scala_version=2.13
ARG vcs_ref=unspecified
ARG build_date=unspecified
Expand Down
2 changes: 1 addition & 1 deletion test/docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ services:
image: confluentinc/cp-kafkacat:5.0.0
environment:
- BROKER_LIST
- KAFKA_VERSION=${KAFKA_VERSION-2.8.1}
- KAFKA_VERSION=${KAFKA_VERSION-2.8.2}
volumes:
- .:/tests
working_dir: /tests
Expand Down