Skip to content

Commit

Permalink
Bump all libraries
Browse files Browse the repository at this point in the history
  • Loading branch information
barryoneill committed May 14, 2024
1 parent e692696 commit 8987cd7
Show file tree
Hide file tree
Showing 4 changed files with 25 additions and 25 deletions.
2 changes: 1 addition & 1 deletion build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ import sbt.Keys.scalaSource
organization := "io.laserdisc"
name := "mysql-binlog-stream"

ThisBuild / scalaVersion := "2.13.12"
ThisBuild / scalaVersion := "2.13.14"

lazy val commonSettings = Seq(
organization := "io.laserdisc",
Expand Down
36 changes: 18 additions & 18 deletions project/Dependencies.scala
Original file line number Diff line number Diff line change
Expand Up @@ -2,36 +2,36 @@ import sbt.*
import sbt.Keys.libraryDependencies

object Dependencies {
val cirisVersion = "3.3.0"
val doobieVersion = "1.0.0-RC4"
val circeVersion = "0.14.6"
val catsEffectVersion = "3.5.2"
val cirisVersion = "3.6.0"
val doobieVersion = "1.0.0-RC5"
val circeVersion = "0.14.7"
val catsEffectVersion = "3.5.4"

val TestLib = Seq(
libraryDependencies ++= Seq(
"org.scalamock" %% "scalamock" % "5.2.0" % Test,
"org.scalatest" %% "scalatest" % "3.2.17" % Test,
"com.dimafeng" %% "testcontainers-scala" % "0.41.0" % Test,
"org.testcontainers" % "mysql" % "1.19.1" % Test,
"org.testcontainers" % "testcontainers" % "1.19.1" % Test
"org.scalamock" %% "scalamock" % "6.0.0" % Test,
"org.scalatest" %% "scalatest" % "3.2.18" % Test,
"com.dimafeng" %% "testcontainers-scala" % "0.41.3" % Test,
"org.testcontainers" % "mysql" % "1.19.8" % Test,
"org.testcontainers" % "testcontainers" % "1.19.8" % Test
)
)

val Config = Seq(
libraryDependencies ++= Seq(
"is.cir" %% "ciris-enumeratum" % cirisVersion,
"is.cir" %% "ciris-refined" % cirisVersion,
"eu.timepit" %% "refined" % "0.11.0"
"eu.timepit" %% "refined" % "0.11.1"
)
)

val Logging = Seq(
libraryDependencies ++= Seq(
"ch.qos.logback" % "logback-classic" % "1.4.11",
"ch.qos.logback" % "logback-core" % "1.4.11",
"org.slf4j" % "jcl-over-slf4j" % "2.0.9",
"org.slf4j" % "jul-to-slf4j" % "2.0.9",
"org.typelevel" %% "log4cats-slf4j" % "2.6.0"
"ch.qos.logback" % "logback-classic" % "1.5.6",
"ch.qos.logback" % "logback-core" % "1.5.6",
"org.slf4j" % "jcl-over-slf4j" % "2.0.13",
"org.slf4j" % "jul-to-slf4j" % "2.0.13",
"org.typelevel" %% "log4cats-slf4j" % "2.7.0"
)
)

Expand All @@ -42,7 +42,7 @@ object Dependencies {
"org.tpolecat" %% "doobie-refined" % doobieVersion,
"org.tpolecat" %% "doobie-scalatest" % doobieVersion % Test,
"mysql" % "mysql-connector-java" % "8.0.33",
"com.zendesk" % "mysql-binlog-connector-java" % "0.28.2"
"com.zendesk" % "mysql-binlog-connector-java" % "0.29.2"
)
)

Expand All @@ -63,8 +63,8 @@ object Dependencies {
val XML = Seq(
libraryDependencies ++= Seq(
"javax.xml.bind" % "jaxb-api" % "2.3.1",
"com.sun.xml.bind" % "jaxb-impl" % "4.0.3",
"com.sun.xml.bind" % "jaxb-core" % "4.0.3",
"com.sun.xml.bind" % "jaxb-impl" % "4.0.5",
"com.sun.xml.bind" % "jaxb-core" % "4.0.5",
"javax.activation" % "activation" % "1.1.1"
)
)
Expand Down
2 changes: 1 addition & 1 deletion project/build.properties
Original file line number Diff line number Diff line change
@@ -1 +1 @@
sbt.version=1.9.6
sbt.version=1.10.0
10 changes: 5 additions & 5 deletions project/plugins.sbt
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
addSbtPlugin("org.scalameta" % "sbt-scalafmt" % "2.5.2")
addSbtPlugin("org.scoverage" % "sbt-coveralls" % "1.3.2")
addSbtPlugin("org.scoverage" % "sbt-scoverage" % "1.9.3")
addSbtPlugin("com.typesafe.sbt" % "sbt-native-packager" % "1.8.1")
addSbtPlugin("com.geirsson" % "sbt-ci-release" % "1.5.7")
addSbtPlugin("org.scalameta" % "sbt-scalafmt" % "2.5.2")
addSbtPlugin("org.scoverage" % "sbt-coveralls" % "1.3.11")
addSbtPlugin("org.scoverage" % "sbt-scoverage" % "2.0.12")
addSbtPlugin("com.github.sbt" % "sbt-native-packager" % "1.10.0")
addSbtPlugin("com.github.sbt" % "sbt-ci-release" % "1.5.12")

0 comments on commit 8987cd7

Please sign in to comment.