Skip to content

Commit f5f9f46

Browse files
authored
Removes akka connector (#982)
1 parent b227505 commit f5f9f46

File tree

12 files changed

+13
-17
lines changed

12 files changed

+13
-17
lines changed

build.sbt

Lines changed: 3 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -163,10 +163,8 @@ lazy val monixConnect = (project in file("."))
163163
.configs(IntegrationTest, IT)
164164
.settings(sharedSettings())
165165
.settings(name := "monix-connect")
166-
.aggregate(akka, dynamodb, parquet, gcs, hdfs, mongodb, redis, s3, sqs, elasticsearch, awsAuth)
167-
.dependsOn(akka, dynamodb, parquet, gcs, hdfs, mongodb, redis, s3, sqs, elasticsearch, awsAuth)
168-
169-
lazy val akka = monixConnector("akka", Dependencies.Akka)
166+
.aggregate(dynamodb, parquet, gcs, hdfs, mongodb, redis, s3, sqs, elasticsearch, awsAuth)
167+
.dependsOn(dynamodb, parquet, gcs, hdfs, mongodb, redis, s3, sqs, elasticsearch, awsAuth)
170168

171169
lazy val dynamodb = monixConnector("dynamodb", Dependencies.DynamoDb).aggregate(awsAuth).dependsOn(awsAuth % "compile->compile;test->test")
172170
.settings(libraryDependencies ++= (CrossVersion.partialVersion(scalaVersion.value) match {
@@ -276,7 +274,7 @@ lazy val skipOnPublishSettings = Seq(
276274
lazy val mdocSettings = Seq(
277275
scalacOptions --= Seq("-Xfatal-warnings", "-Ywarn-unused"),
278276
crossScalaVersions := Seq(scalaVersion.value),
279-
unidocProjectFilter in (ScalaUnidoc, unidoc) := inProjects(akka, parquet, dynamodb, s3, sqs, elasticsearch, gcs, hdfs, mongodb, redis),
277+
unidocProjectFilter in (ScalaUnidoc, unidoc) := inProjects(parquet, dynamodb, s3, sqs, elasticsearch, gcs, hdfs, mongodb, redis),
280278
target in (ScalaUnidoc, unidoc) := (baseDirectory in LocalRootProject).value / "website" / "static" / "api",
281279
cleanFiles += (target in (ScalaUnidoc, unidoc)).value,
282280
docusaurusCreateSite := docusaurusCreateSite

docs/dynamo.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ Therefore, the connector provides three generic methods __single__, __transforme
2323

2424
Add the following dependency to get started:
2525
```scala
26-
libraryDependencies += "io.monix" %% "monix-dynamodb" % "0.6.0"
26+
libraryDependencies += "io.monix" %% "monix-dynamodb" % "0.9.0"
2727
```
2828

2929
## Async Client

docs/elasticsearch.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ but also to _search_ or _upload_ in a reactive fashion with _Monix Reactive_.
1515
Add the following dependency:
1616

1717
```scala
18-
libraryDependencies += "io.monix" %% "monix-elasticsearch" % "0.6.0"
18+
libraryDependencies += "io.monix" %% "monix-elasticsearch" % "0.9.0"
1919
```
2020

2121
## Client

docs/gcs.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ object will be returned to any _get request_, globally.
1414

1515
Add the following dependency to get started:
1616
```scala
17-
libraryDependencies += "io.monix" %% "monix-gcs" % "0.6.0"
17+
libraryDependencies += "io.monix" %% "monix-gcs" % "0.9.0"
1818
```
1919

2020
## Getting Started

docs/hdfs.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ and it is built on top of the the official _apache hadoop_ api.
1818
Add the following dependency to get started:
1919

2020
```scala
21-
libraryDependencies += "io.monix" %% "monix-hdfs" % "0.6.0"
21+
libraryDependencies += "io.monix" %% "monix-hdfs" % "0.9.0"
2222
```
2323

2424
By default the connector uses _Hadoop 3.1.1_. In case you need a different one you can replace it by excluding `org.apache.hadoop` from `monix-hdfs` and add the new one to your library dependencies.

docs/mongodb.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ and there is many code to be ported to the new Scala3 macros. See community stat
2929
Add the following dependency to get started:
3030

3131
```scala
32-
libraryDependencies += "io.monix" %% "monix-mongodb" % "0.6.0"
32+
libraryDependencies += "io.monix" %% "monix-mongodb" % "0.9.0"
3333
```
3434

3535
## Collection Reference

docs/overview.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ title: Overview
1818
Find all release [versions](https://github.com/monix/monix-connect/releases)).
1919

2020
```scala
21-
libraryDependencies += "io.monix" %% "monix-connect" % "0.9.0"
21+
libraryDependencies += "io.monix" %% "monix-connect" % "0.10.0"
2222
```
2323

2424
⚠️ **Mind that the project isn't yet stable, so binary compatibility is not guaranteed.**

docs/parquet.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ Therefore, the `monix-parquet` _connector_ basically exposes stream integrations
1515
Add the following dependency:
1616

1717
```scala
18-
libraryDependencies += "io.monix" %% "monix-parquet" % "0.6.0"
18+
libraryDependencies += "io.monix" %% "monix-parquet" % "0.9.0"
1919
```
2020

2121
## Getting started

docs/redis.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ a _non blocking_ Redis client.
1919
Add the following dependency:
2020

2121
```scala
22-
libraryDependencies += "io.monix" %% "monix-redis" % "0.6.0"
22+
libraryDependencies += "io.monix" %% "monix-redis" % "0.9.0"
2323
```
2424

2525
## Redis Connection

docs/s3.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ This module exposes a wide range of methods for interacting with S3 _buckets_ an
1616
Add the following dependency in your _build.sbt_:
1717

1818
```scala
19-
libraryDependencies += "io.monix" %% "monix-s3" % "0.6.0"
19+
libraryDependencies += "io.monix" %% "monix-s3" % "0.9.0"
2020
```
2121

2222
## Async Client

0 commit comments

Comments
 (0)