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

[#336] use a confluent version that properly supports kafka 2.8.0 #337

Closed
wants to merge 1 commit into from
Closed
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
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
# Changelog

### Unreleased
- use version of confluent platform that supports Kafka 2.8.0

### [0.9.6] - [2022-08-01]

Expand Down
6 changes: 3 additions & 3 deletions project.clj
Original file line number Diff line number Diff line change
Expand Up @@ -15,10 +15,10 @@
;; Confluent does paired releases with Kafka, this should tie
;; off with the kafka version.
;; See https://docs.confluent.io/current/release-notes.html
[io.confluent/kafka-schema-registry-client "6.1.1"
[io.confluent/kafka-schema-registry-client "6.2.6"
:exclusions [com.fasterxml.jackson.core/jackson-databind]]
[io.confluent/kafka-avro-serializer "6.1.1"]
[io.confluent/kafka-json-schema-serializer "6.1.1"]
[io.confluent/kafka-avro-serializer "6.2.6"]
[io.confluent/kafka-json-schema-serializer "6.2.6"]
[org.apache.kafka/kafka-clients "2.8.0"]
[org.apache.kafka/kafka-streams "2.8.0"]
[org.apache.kafka/kafka-streams-test-utils "2.8.0"]
Expand Down