8000 Merge pull request #483 from laserdisc-io/upgrades · laserdisc-io/mysql-binlog-stream@6ef3071 · GitHub
[go: up one dir, main page]

Skip to content

Commit 6ef3071

Browse files
authored
Merge pull request #483 from laserdisc-io/upgrades
upgrades
2 parents 9b12932 + ebc90d8 commit 6ef3071

File tree

5 files changed

+15
-20
lines changed

5 files changed

+15
-20
lines changed

.scalafmt.conf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
# ThisBuild / laserdiscScalaFmtGenOn := false
1111
# -----------------------------------------------------------------------
1212

13-
version=3.8.3
13+
version=3.9.4
1414

1515
maxColumn = 140
1616
style = default

mysql-binlog-stream-shared/src/test/scala/io/laserdisc/mysql/binlog/config/BinLogConfigSpec.scala

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -36,12 +36,9 @@ class BinLogConfigSpec extends AnyWordSpec with Matchers {
3636
)
3737
}
3838

39-
"not expose password on toString" in {
40-
39+
"not expose password on toString" in
4140
(template.copy(password = "TOPSECRET").toString should not).include("TOPSECRET")
4241

43-
}
44-
4542
}
4643

4744
}

project/Dependencies.scala

Lines changed: 11 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -2,29 +2,29 @@ import sbt._
22
import sbt.Keys.libraryDependencies
33

44
object Dependencies {
5-
val cirisVersion = "3.6.0"
6-
val doobieVersion = "1.0.0-RC6"
5+
val cirisVersion = "3.7.0"
6+
val doobieVersion = "1.0.0-RC8"
77
val circeVersion = "0.14.10"
88

99
val TestLib = libraryDependencies ++= Seq(
10-
"org.scalamock" %% "scalamock" % "6.0.0" % Test,
10+
"org.scalamock" %% "scalamock" % "6.2.0" % Test,
1111
"org.scalatest" %% "scalatest" % "3.2.19" % Test,
12-
"com.dimafeng" %% "testcontainers-scala" % "0.41.4" % Test,
13-
"org.testcontainers" % "mysql" % "1.20.4" % Test,
14-
"org.testcontainers" % "testcontainers" % "1.20.4" % Test
12+
"com.dimafeng" %% "testcontainers-scala" % "0.43.0" % Test,
13+
"org.testcontainers" % "mysql" % "1.20.6" % Test,
14+
"org.testcontainers" % "testcontainers" % "1.20.6" % Test
1515
)
1616

1717
val Config = libraryDependencies ++= Seq(
1818
"is.cir" %% "ciris-enumeratum" % cirisVersion,
1919
"is.cir" %% "ciris-refined" % cirisVersion,
20-
"eu.timepit" %% "refined" % "0.11.2"
20+
"eu.timepit" %% "refined" % "0.11.3"
2121
)
2222

2323
val Logging = libraryDependencies ++= Seq(
24-
"ch.qos.logback" % "logback-classic" % "1.5.12",
25-
"ch.qos.logback" % "logback-core" % "1.5.12",
26-
"org.slf4j" % "jcl-over-slf4j" % "2.0.16",
27-
"org.slf4j" % "jul-to-slf4j" % "2.0.16",
24+
"ch.qos.logback" % "logback-classic" % "1.5.17",
25+
"ch.qos.logback" % "logback-core" % "1.5.17",
26+
"org.slf4j" % "jcl-over-slf4j" % "2.0.17",
27+
"org.slf4j" % "jul-to-slf4j" % "2.0.17",
2828
"org.typelevel" %% "log4cats-slf4j" % "2.7.0"
2929
)
3030

@@ -43,8 +43,6 @@ object Dependencies {
4343
"io.circe" %% "circe-optics" % "0.15.0" % Test
4444
)
4545

46-
// val Cats = libraryDependencies ++= Seq("org.typelevel" %% "cats-effect" % "3.5.6")
47-
4846
val XML = libraryDependencies ++= Seq(
4947
"javax.xml.bind" % "jaxb-api" % "2.3.1",
5048
"com.sun.xml.bind" % "jaxb-impl" % "4.0.5",

project/build.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,4 +10,4 @@
1010
# ThisBuild / laserdiscSBTVersionGenOn := false
1111
# -----------------------------------------------------------------------
1212

13-
sbt.version = 1.10.5
13+
sbt.version = 1.10.10

project/plugins.sbt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
addSbtPlugin("org.scoverage" % "sbt-coveralls" % "1.3.11")
22
addSbtPlugin("org.scoverage" % "sbt-scoverage" % "2.2.2")
3-
addSbtPlugin("io.laserdisc" % "sbt-laserdisc-defaults" % "0.2.0")
3+
addSbtPlugin("io.laserdisc" % "sbt-laserdisc-defaults" % "0.3.0")
44
addSbtPlugin("com.github.sbt" % "sbt-ci-release" % "1.9.0")

0 commit comments

Comments
 (0)
0