Skip to content

Commit 17c3711

Browse files
authored
Merge pull request #49 from jpzk/release/3.2
release/3.2
2 parents 077a3ec + af450da commit 17c3711

File tree

6 files changed

+15
-9
lines changed

6 files changed

+15
-9
lines changed

.travis.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
language: scala
22
scala:
3-
- 2.11.8
3+
- 2.11.12
4+
- 2.12.8
45

56
jdk:
67
- oraclejdk8

CHANGELOG.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,10 @@
11
# Changelog
22

3+
## Mocked Streams 3.2
4+
5+
* Added support for Apache Kafka 2.1.1
6+
* Thanks Matteo Gazzetta
7+
38
## Mocked Streams 3.1
49

510
* Added support for Scala DSL in topology method

CONTRIBUTORS.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,4 +7,4 @@
77
* Michal Dziemianko
88
* Dan Hamilton
99
* Mateusz Owczarek
10-
10+
* Matteo Gazzetta

README.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
[![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)
44
[![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)
55

6-
Mocked Streams 3.1.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):
6+
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):
77

88
libraryDependencies += "com.madewithtea" %% "mockedstreams" % "3.1.0" % "test"
99

@@ -13,6 +13,7 @@ Java 8 port of Mocked Streams is [Mockafka](https://github.com/carlosmenezes/moc
1313

1414
| Mocked Streams Version | Apache Kafka Version |
1515
|------------- |-------------|
16+
| 3.2.0 | 2.1.1.0 |
1617
| 3.1.0 | 2.1.0.0 |
1718
| 2.2.0 | 2.1.0.0 |
1819
| 2.1.0 | 2.0.0.0 |

build.sbt

Lines changed: 4 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,19 +1,18 @@
11

22
lazy val commonSettings = Seq(
33
organization := "com.madewithtea",
4-
version := "3.1.0",
5-
scalaVersion := "2.12.7",
6-
crossScalaVersions := Seq("2.12.7", "2.11.12"),
4+
version := "3.2.0",
5+
scalaVersion := "2.12.8",
6+
crossScalaVersions := Seq("2.12.8", "2.11.12"),
77
description := "Topology Unit-Testing Library for Apache Kafka / Kafka Streams",
88
organizationHomepage := Some(url("https://www.madewithtea.com")),
99
scalacOptions := Seq("-Xexperimental"))
1010

1111
val scalaTestVersion = "3.0.5"
1212
val rocksDBVersion = "5.17.2"
13-
val kafkaVersion = "2.1.0"
13+
val kafkaVersion = "2.1.1"
1414

1515
lazy val kafka = Seq(
16-
"javax.ws.rs" % "javax.ws.rs-api" % "2.1.1" jar(),
1716
"org.apache.kafka" % "kafka-clients" % kafkaVersion,
1817
"org.apache.kafka" % "kafka-clients" % kafkaVersion classifier "test",
1918
"org.apache.kafka" % "kafka-streams" % kafkaVersion,

project/build.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
sbt.version=1.1.6
1+
sbt.version=1.2.8

0 commit comments

Comments
 (0)