Skip to content

Commit

Permalink
Merge branch 'master' into update/postgresql-42.7.4
Browse files Browse the repository at this point in the history
  • Loading branch information
tminglei authored Dec 22, 2024
2 parents 3f9739c + a22cb2d commit 8a6505b
Show file tree
Hide file tree
Showing 4 changed files with 13 additions and 13 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ jobs:
strategy:
matrix:
java: [8, 21]
scala: [2.12.19, 2.13.14, 3.3.1]
scala: [2.12.20, 2.13.15, 3.3.1]
postgres: [11, 12, 13, 14]
name: Test (Postgres ${{ matrix.postgres }} Scala ${{ matrix.scala }} Java ${{ matrix.java }})
runs-on: ubuntu-latest
Expand Down
20 changes: 10 additions & 10 deletions build.sbt
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
val scala212 = "2.12.19"
val scala213 = "2.13.14"
val scala212 = "2.12.20"
val scala213 = "2.13.15"
val scala3 = "3.3.1"

lazy val commonSettings = Seq(
Expand Down Expand Up @@ -68,10 +68,10 @@ def mainDependencies(scalaVersion: String) = {
Seq (
"org.scala-lang.modules" %% "scala-parser-combinators" % (if (isScala3) "2.3.0" else "1.1.2"),
"dev.zio" %% "izumi-reflect" % "2.3.10",
"com.typesafe.slick" %% "slick" % "3.5.1",
"com.typesafe.slick" %% "slick" % "3.5.2",
"org.postgresql" % "postgresql" % "42.7.4",
"org.scala-lang.modules" %% "scala-collection-compat" % "2.12.0",
"org.slf4j" % "slf4j-simple" % "2.0.13" % "provided",
"org.slf4j" % "slf4j-simple" % "2.0.16" % "provided",
"org.scalatest" %% "scalatest" % "3.2.19" % "test",
"com.dimafeng" %% "testcontainers-scala-scalatest" % "0.41.3" % "test",
"com.dimafeng" %% "testcontainers-scala-postgresql" % "0.41.3" % "test"
Expand Down Expand Up @@ -102,7 +102,7 @@ lazy val slickPgJoda = (project in file("./addons/joda-time"))
name := "slick-pg_joda-time",
description := "Slick extensions for PostgreSQL - joda time module",
libraryDependencies := mainDependencies(scalaVersion.value) ++ Seq(
"joda-time" % "joda-time" % "2.12.7"
"joda-time" % "joda-time" % "2.13.0"
)
)
.dependsOn (slickPgCore % "test->test;compile->compile")
Expand Down Expand Up @@ -137,7 +137,7 @@ lazy val slickPgJtsLt = (project in file("./addons/jts_lt"))
name := "slick-pg_jts_lt",
description := "Slick extensions for PostgreSQL - (locationtech) jts module",
libraryDependencies := mainDependencies(scalaVersion.value) ++ Seq(
"org.locationtech.jts" % "jts-core" % "1.19.0"
"org.locationtech.jts" % "jts-core" % "1.20.0"
)
)
.dependsOn (slickPgCore % "test->test;compile->compile")
Expand Down Expand Up @@ -174,9 +174,9 @@ lazy val slickPgCirceJson = (project in file("./addons/circe-json"))
description := "Slick extensions for PostgreSQL - circe module",
libraryDependencies := mainDependencies(scalaVersion.value) ++
Seq(
"io.circe" %% "circe-core" % "0.14.9",
"io.circe" %% "circe-generic" % "0.14.9",
"io.circe" %% "circe-parser" % "0.14.9"
"io.circe" %% "circe-core" % "0.14.10",
"io.circe" %% "circe-generic" % "0.14.10",
"io.circe" %% "circe-parser" % "0.14.10"
)
)
.dependsOn (slickPgCore % "test->test;compile->compile")
Expand All @@ -197,7 +197,7 @@ lazy val slickPgArgonaut = (project in file("./addons/argonaut"))
name := "slick-pg_argonaut",
description := "Slick extensions for PostgreSQL - argonaut module",
libraryDependencies := mainDependencies(scalaVersion.value) ++
Seq("io.argonaut" %% "argonaut" % "6.3.10")
Seq("io.github.argonaut-io" %% "argonaut" % "6.3.11")
)
.dependsOn (slickPgCore % "test->test;compile->compile")

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.10.1
sbt.version=1.10.6
2 changes: 1 addition & 1 deletion project/plugins.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -5,4 +5,4 @@ logLevel := Level.Warn
resolvers += "Typesafe repository" at "https://repo.typesafe.com/typesafe/releases/"

// Add sbt PGP Plugin
addSbtPlugin("com.github.sbt" % "sbt-pgp" % "2.2.1")
addSbtPlugin("com.github.sbt" % "sbt-pgp" % "2.3.1")

0 comments on commit 8a6505b

Please sign in to comment.