Skip to content

Commit

Permalink
Dependency updates (#146)
Browse files Browse the repository at this point in the history
* Update scio-core to 0.14.0

* Update scio-google-cloud-platform to 0.14.0

* Update scio-test to 0.14.0

* Fix BigQueryServicesFactory after Scio / Beam update

---------

Co-authored-by: mkuthan-scala-steward[bot] <141544182+mkuthan-scala-steward[bot]@users.noreply.github.com>
Co-authored-by: Marcin Kuthan <[email protected]>
  • Loading branch information
mkuthan-scala-steward[bot] and mkuthan authored Feb 6, 2024
1 parent 6627418 commit 9a58132
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 3 deletions.
6 changes: 3 additions & 3 deletions project/Dependencies.scala
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
import sbt._

object Dependencies {
val scio = "com.spotify" %% "scio-core" % "0.13.6"
val scio = "com.spotify" %% "scio-core" % "0.14.0"

val scioGcp = "com.spotify" %% "scio-google-cloud-platform" % "0.13.6" excludeAll (
val scioGcp = "com.spotify" %% "scio-google-cloud-platform" % "0.14.0" excludeAll (
ExclusionRule(organization = "org.apache.beam", name = "beam-runners-direct-java")
)

val scioTest = "com.spotify" %% "scio-test" % "0.13.6" excludeAll (
val scioTest = "com.spotify" %% "scio-test" % "0.14.0" excludeAll (
ExclusionRule(organization = "org.apache.beam", name = "beam-runners-direct-java")
)

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -12,4 +12,7 @@ object BigQueryServicesFactory extends BigQueryServices {

override def getStorageClient(options: BigQueryOptions): BigQueryServices.StorageClient =
new BigQueryServicesImpl().getStorageClient(options)

override def getWriteStreamService(options: BigQueryOptions): BigQueryServices.WriteStreamService =
new BigQueryServicesImpl().getWriteStreamService(options)
}

0 comments on commit 9a58132

Please sign in to comment.