Skip to content
This repository has been archived by the owner on Jul 29, 2024. It is now read-only.

Commit

Permalink
Drop CosmosBulkClient (#230)
Browse files Browse the repository at this point in the history
documentdb-bulkexecutor doesn't get published anymore it seems
and we only used the bulk client when we imported data in Cosmos
  • Loading branch information
peterneyens authored Aug 30, 2023
1 parent 4b83b7f commit 1be1ef0
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 142 deletions.
24 changes: 10 additions & 14 deletions build.sbt
Original file line number Diff line number Diff line change
@@ -1,11 +1,9 @@
import org.typelevel.sbt.gha.WorkflowStep._

val azureCosmosV = "4.48.1"
val azureDocumentDBV = "2.6.5"
val azureCosmosV = "4.49.0"
val catsV = "2.10.0"
val catsEffectV = "3.5.1"
val circeJackson210V = "0.14.0"
val documentDBBulkExecV = "2.12.5"
val fs2V = "3.8.0"
val circeV = "0.14.5"
val munitV = "0.7.29"
Expand Down Expand Up @@ -66,17 +64,15 @@ lazy val core = project
// General Settings
lazy val commonSettings = Seq(
libraryDependencies ++= Seq(
"com.azure" % "azure-cosmos" % azureCosmosV,
"com.microsoft.azure" % "azure-documentdb" % azureDocumentDBV,
"com.microsoft.azure" % "documentdb-bulkexecutor" % documentDBBulkExecV,
"org.typelevel" %% "cats-core" % catsV,
"org.typelevel" %% "cats-effect" % catsEffectV,
"co.fs2" %% "fs2-reactive-streams" % fs2V,
"io.circe" %% "circe-core" % circeV,
"io.circe" %% "circe-parser" % circeV,
"io.circe" %% "circe-jackson210" % circeJackson210V,
"org.scalameta" %% "munit" % munitV % Test,
"org.typelevel" %% "munit-cats-effect-3" % munitCatsEffectV % Test
"com.azure" % "azure-cosmos" % azureCosmosV,
"org.typelevel" %% "cats-core" % catsV,
"org.typelevel" %% "cats-effect" % catsEffectV,
"co.fs2" %% "fs2-reactive-streams" % fs2V,
"io.circe" %% "circe-core" % circeV,
"io.circe" %% "circe-parser" % circeV,
"io.circe" %% "circe-jackson210" % circeJackson210V,
"org.scalameta" %% "munit" % munitV % Test,
"org.typelevel" %% "munit-cats-effect-3" % munitCatsEffectV % Test
) ++
// format: off
(if (scalaVersion.value.startsWith("2"))
Expand Down
128 changes: 0 additions & 128 deletions core/src/main/scala/com/banno/cosmos4s/CosmosBulkClient.scala

This file was deleted.

0 comments on commit 1be1ef0

Please sign in to comment.