From 15b89717923a82528b3063800339d3e3a705f7d2 Mon Sep 17 00:00:00 2001 From: Russell Porter Date: Mon, 1 Apr 2019 15:36:23 +0200 Subject: [PATCH 1/2] Bump Kafka version to 2.2.0 --- CHANGELOG.md | 4 ++++ README.md | 5 +++-- build.sbt | 4 ++-- 3 files changed, 9 insertions(+), 4 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index ea51e5c..28db1a2 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,9 @@ # Changelog +## Mocked Streams 3.3 + +* Added support for Apache Kafka 2.2.0 + ## Mocked Streams 3.2 * Added support for Apache Kafka 2.1.1 diff --git a/README.md b/README.md index 9c4c7e3..66e41a1 100644 --- a/README.md +++ b/README.md @@ -3,9 +3,9 @@ [![Build Status](https://travis-ci.org/jpzk/mockedstreams.svg?branch=master)](https://travis-ci.org/jpzk/mockedstreams) [![Codacy Badge](https://api.codacy.com/project/badge/Grade/8abac3d072e54fa3a13dc3da04754c7b)](https://www.codacy.com/app/jpzk/mockedstreams?utm_source=github.com&utm_medium=referral&utm_content=jpzk/mockedstreams&utm_campaign=Badge_Grade) [![codecov](https://codecov.io/gh/jpzk/mockedstreams/branch/master/graph/badge.svg)](https://codecov.io/gh/jpzk/mockedstreams) [![License](http://img.shields.io/:license-Apache%202-grey.svg)](http://www.apache.org/licenses/LICENSE-2.0.txt) [![GitHub stars](https://img.shields.io/github/stars/jpzk/mockedstreams.svg?style=flat)](https://github.com/jpzk/mockedstreams/stargazers) -Mocked Streams 3.2.0 [(git)](https://github.com/jpzk/mockedstreams) is a library for Scala 2.11 and 2.12 which allows you to **unit-test processing topologies** of [Kafka Streams](https://kafka.apache.org/documentation#streams) applications (since Apache Kafka >=0.10.1) **without Zookeeper and Kafka Brokers**. Further, you can use your favourite Scala testing framework e.g. [ScalaTest](http://www.scalatest.org/) and [Specs2](https://etorreborre.github.io/specs2/). Mocked Streams is located at the Maven Central Repository, therefore you just have to add the following to your [SBT dependencies](http://www.scala-sbt.org/0.13/docs/Library-Dependencies.html): +Mocked Streams 3.3.0 [(git)](https://github.com/jpzk/mockedstreams) is a library for Scala 2.11 and 2.12 which allows you to **unit-test processing topologies** of [Kafka Streams](https://kafka.apache.org/documentation#streams) applications (since Apache Kafka >=0.10.1) **without Zookeeper and Kafka Brokers**. Further, you can use your favourite Scala testing framework e.g. [ScalaTest](http://www.scalatest.org/) and [Specs2](https://etorreborre.github.io/specs2/). Mocked Streams is located at the Maven Central Repository, therefore you just have to add the following to your [SBT dependencies](http://www.scala-sbt.org/0.13/docs/Library-Dependencies.html): - libraryDependencies += "com.madewithtea" %% "mockedstreams" % "3.2.0" % "test" + libraryDependencies += "com.madewithtea" %% "mockedstreams" % "3.3.0" % "test" Java 8 port of Mocked Streams is [Mockafka](https://github.com/carlosmenezes/mockafka) @@ -13,6 +13,7 @@ Java 8 port of Mocked Streams is [Mockafka](https://github.com/carlosmenezes/moc | Mocked Streams Version | Apache Kafka Version | |------------- |-------------| +| 3.3.0 | 2.2.0.0 | | 3.2.0 | 2.1.1.0 | | 3.1.0 | 2.1.0.0 | | 2.2.0 | 2.1.0.0 | diff --git a/build.sbt b/build.sbt index ed832d1..901312b 100644 --- a/build.sbt +++ b/build.sbt @@ -1,7 +1,7 @@ lazy val commonSettings = Seq( organization := "com.madewithtea", - version := "3.2.0", + version := "3.3.0", scalaVersion := "2.12.8", crossScalaVersions := Seq("2.12.8", "2.11.12"), description := "Topology Unit-Testing Library for Apache Kafka / Kafka Streams", @@ -10,7 +10,7 @@ lazy val commonSettings = Seq( val scalaTestVersion = "3.0.5" val rocksDBVersion = "5.17.2" -val kafkaVersion = "2.1.1" +val kafkaVersion = "2.2.0" lazy val kafka = Seq( "org.apache.kafka" % "kafka-clients" % kafkaVersion, From b3080a057069f068ddbff85b53e890d853afc057 Mon Sep 17 00:00:00 2001 From: Jendrik Poloczek Date: Tue, 2 Apr 2019 17:33:40 +0100 Subject: [PATCH 2/2] added contributor --- CONTRIBUTORS.md | 1 + 1 file changed, 1 insertion(+) diff --git a/CONTRIBUTORS.md b/CONTRIBUTORS.md index 099452f..5892592 100644 --- a/CONTRIBUTORS.md +++ b/CONTRIBUTORS.md @@ -8,3 +8,4 @@ * Dan Hamilton * Mateusz Owczarek * Matteo Gazzetta +* Russell Porter