Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update dependencies and plugins to latest versions #186

Merged
merged 1 commit into from
Nov 25, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 6 additions & 6 deletions project/Dependencies.scala
Original file line number Diff line number Diff line change
@@ -1,18 +1,18 @@
import sbt.*

object Dependencies {
val scio = "com.spotify" %% "scio-core" % "0.14.7"
val scio = "com.spotify" %% "scio-core" % "0.14.9"

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

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

val beamDirectRunner = "org.apache.beam" % "beam-runners-direct-java" % "2.58.1"
val beamDataflowRunner = "org.apache.beam" % "beam-runners-google-cloud-dataflow-java" % "2.58.1"
val beamDirectRunner = "org.apache.beam" % "beam-runners-direct-java" % "2.60.0"
val beamDataflowRunner = "org.apache.beam" % "beam-runners-google-cloud-dataflow-java" % "2.60.0"

val scalaLogging = "com.typesafe.scala-logging" %% "scala-logging" % "3.9.5"

Expand All @@ -22,7 +22,7 @@ object Dependencies {
val logback = "ch.qos.logback" % "logback-classic" % "1.5.7"

val scalaTest = "org.scalatest" %% "scalatest" % "3.2.19"
val scalaTestPlusScalaCheck = "org.scalatestplus" %% "scalacheck-1-17" % "3.2.18.0"
val scalaTestPlusScalaCheck = "org.scalatestplus" %% "scalacheck-1-18" % "3.2.19.0"

val magnolifyScalaCheck = "com.spotify" %% "magnolify-scalacheck" % "0.7.4"

Expand Down
2 changes: 1 addition & 1 deletion project/Settings.scala
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ import scalafix.sbt.ScalafixPlugin.autoImport.*

object Settings {
val commonSettings = Seq(
scalaVersion := "2.13.14",
scalaVersion := "2.13.15",
scalacOptions := Seq(
"-deprecation", // Emit warning and location for usages of deprecated APIs
"-feature", // Emit warning and location for usages of features that should be imported explicitly
Expand Down
2 changes: 1 addition & 1 deletion project/plugins.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ addSbtPlugin("com.github.sbt" % "sbt-jacoco" % "3.5.0")
// code formatting
addSbtPlugin("org.scalameta" % "sbt-scalafmt" % "2.5.2")
// code analysis
addSbtPlugin("com.sksamuel.scapegoat" %% "sbt-scapegoat" % "1.2.4")
addSbtPlugin("com.sksamuel.scapegoat" %% "sbt-scapegoat" % "1.2.7")
// automated code changes
addSbtPlugin("ch.epfl.scala" % "sbt-scalafix" % "0.12.1")
// fat-jar for flex templates
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
package org.mkuthan.streamprocessing.infrastructure.bigquery

import scala.annotation.unused
import scala.reflect.runtime.universe.TypeTag
import scala.reflect.ClassTag

Expand Down Expand Up @@ -28,7 +27,6 @@ private[bigquery] class BigQueryDeadLetterEncoderDoFn[T <: HasAnnotation: Coder:
private lazy val bigQueryType = BigQueryType[T]

@ProcessElement
@unused
def processElement(
@Element element: In,
output: OutputReceiver[Out[T]]
Expand Down