Skip to content

Commit

Permalink
Merge pull request #73 from jpzk/v3.9
Browse files Browse the repository at this point in the history
V3.9
  • Loading branch information
jpzk authored Jan 16, 2021
2 parents 7163fb6 + 2dfa83b commit 0dd4473
Show file tree
Hide file tree
Showing 5 changed files with 14 additions and 7 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
# Changelog

## Mocked Streams 3.9

* Added support for Apache Kafka 2.7.0

## Mocked Streams 3.8

* Added support for Apache Kafka 2.6.1
Expand Down
5 changes: 3 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,16 +6,17 @@

Documentation located at http://mockedstreams.madewithtea.com/

Mocked Streams 3.8.0 [(git)](https://github.com/jpzk/mockedstreams) is a library for Scala 2.12 and 2.13 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.9.0 [(git)](https://github.com/jpzk/mockedstreams) is a library for Scala 2.12 and 2.13 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.8.0" % "test"
libraryDependencies += "com.madewithtea" %% "mockedstreams" % "3.9.0" % "test"

Java 8 port of Mocked Streams is [Mockafka](https://github.com/carlosmenezes/mockafka)

## Apache Kafka Compatibility

| Mocked Streams Version | Apache Kafka Version |
|------------- |-------------|
| 3.9.0 | 2.7.0.0 |
| 3.8.0 | 2.6.1.0 |
| 3.7.0 | 2.5.0.0 |
| 3.6.0 | 2.4.1.0 |
Expand Down
6 changes: 3 additions & 3 deletions build.sbt
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
lazy val commonSettings = Seq(
organization := "com.madewithtea",
version := "3.8.0",
scalaVersion := "2.13.1",
version := "3.9.0",
scalaVersion := "2.12.13",
crossScalaVersions := List("2.12.10", "2.13.1"),
description := "Topology Unit-Testing Library for Kafka Streams",
organizationHomepage := Some(url("https://www.madewithtea.com")),
Expand All @@ -10,7 +10,7 @@ lazy val commonSettings = Seq(

val scalaTestVersion = "3.0.8"
val rocksDBVersion = "5.18.4"
val kafkaVersion = "2.6.1"
val kafkaVersion = "2.7.0"

lazy val kafka = Seq(
"org.apache.kafka" % "kafka-clients" % kafkaVersion,
Expand Down
1 change: 1 addition & 0 deletions docs/docs/compatibility.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@ Please use the corresponding Mocked Streams version to a concrete Apache Kafka v

| Mocked Streams Version | Apache Kafka Version |
|------------- |-------------|
| 3.9.0 | 2.7.0.0 |
| 3.8.0 | 2.6.1.0 |
| 3.7.0 | 2.5.0.0 |
| 3.6.0 | 2.4.1.0 |
Expand Down
5 changes: 3 additions & 2 deletions docs/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,9 +11,9 @@ technologies:
[![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)

Mocked Streams 3.8.0 is a library for Scala 2.12 and Scala 2.13 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.9.0 is a library for Scala 2.12 and Scala 2.13 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.8.0" % "test"
libraryDependencies += "com.madewithtea" %% "mockedstreams" % "3.9.0" % "test"

## Getting Started

Expand All @@ -36,6 +36,7 @@ Please use the corresponding Mocked Streams version to a concrete Apache Kafka v

| Mocked Streams Version | Apache Kafka Version |
|------------- |-------------|
| 3.9.0 | 2.7.0.0 |
| 3.8.0 | 2.6.1.0 |
| 3.7.0 | 2.5.0.0 |
| 3.6.0 | 2.4.1.0 |
Expand Down

0 comments on commit 0dd4473

Please sign in to comment.