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

Kafka client 2.4.1 #1103

Merged
merged 3 commits into from May 13, 2020
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
7 changes: 3 additions & 4 deletions build.sbt
Expand Up @@ -14,17 +14,17 @@ val akkaVersion = if (Nightly) akkaVersion26 else "2.5.30"
val AkkaBinaryVersion25 = "2.5"
val AkkaBinaryVersion26 = "2.6"
val AkkaBinaryVersion = if (Nightly) AkkaBinaryVersion26 else AkkaBinaryVersion25
val kafkaVersion = "2.4.0"
val kafkaVersion = "2.4.1"
val embeddedKafkaVersion = kafkaVersion
val embeddedKafka = "io.github.embeddedkafka" %% "embedded-kafka" % embeddedKafkaVersion
// this depends on Kafka, and should be upgraded to such latest version
// that depends on the same Kafka version, as is defined above
val embeddedKafkaSchemaRegistry = "5.4.0"
val embeddedKafkaSchemaRegistry = "5.4.1.2"
val kafkaVersionForDocs = "24"
val scalatestVersion = "3.0.8"
val testcontainersVersion = "1.12.4"
val slf4jVersion = "1.7.26"
val confluentAvroSerializerVersion = "5.4.0"
val confluentAvroSerializerVersion = "5.4.1"

val confluentLibsExclusionRules = Seq(
ExclusionRule("log4j", "log4j"),
Expand Down Expand Up @@ -73,7 +73,6 @@ TaskKey[Unit]("verifyCodeFmt") := {
}

addCommandAlias("verifyCodeStyle", "headerCheck; verifyCodeFmt")

addCommandAlias("verifyDocs", ";+doc ;unidoc ;docs/paradoxBrowse")

val commonSettings = Def.settings(
Expand Down
5 changes: 3 additions & 2 deletions docs/src/main/paradox/home.md
Expand Up @@ -12,9 +12,10 @@ This **Alpakka Kafka connector** lets you connect [Apache Kafka](https://kafka.a

|Kafka client | Scala Versions | Akka version | Alpakka Kafka Connector
|-------------|----------------|--------------|-------------------------
|[2.4.1](https://dist.apache.org/repos/dist/release/kafka/2.4.1/RELEASE_NOTES.html) | 2.13, 2.12, 2.11 | 2.5.30+, 2.6.3+ | @ref:[release 2.0.3](release-notes/2.0.x.md)
|[2.4.0](https://dist.apache.org/repos/dist/release/kafka/2.4.0/RELEASE_NOTES.html) | 2.13, 2.12, 2.11 | 2.5.23+, 2.6.x | @ref:[release 2.0.0](release-notes/2.0.x.md)
|[2.1.1](https://dist.apache.org/repos/dist/release/kafka/2.1.1/RELEASE_NOTES.html) | 2.13, 2.12, 2.11 | 2.5.x | @ref:[release 1.0.4](release-notes/1.0.x.md#1-0-4)
|[2.1.1](https://dist.apache.org/repos/dist/release/kafka/2.1.1/RELEASE_NOTES.html) | 2.12, 2.11 | 2.5.x | @ref:[release 1.0.1](release-notes/1.0.x.md#1-0-1)
|[2.1.1](https://archive.apache.org/dist/kafka/2.1.1/RELEASE_NOTES.html) | 2.13, 2.12, 2.11 | 2.5.x | @ref:[release 1.0.4](release-notes/1.0.x.md#1-0-4)
|[2.1.1](https://archive.apache.org/dist/kafka/2.1.1/RELEASE_NOTES.html) | 2.12, 2.11 | 2.5.x | @ref:[release 1.0.1](release-notes/1.0.x.md#1-0-1)
|[2.1.0](https://archive.apache.org/dist/kafka/2.1.0/RELEASE_NOTES.html) | 2.12, 2.11 | 2.5.x | @ref:[release 1.0](release-notes/1.0.x.md#1-0)
|2.0.x | 2.12, 2.11 | 2.5.x | @ref:[release 1.0-M1](release-notes/1.0-M1.md)
|1.1.x | 2.12, 2.11 | 2.5.x | [release 0.20+](https://github.com/akka/alpakka-kafka/releases)
Expand Down