diff --git a/core/src/main/scala/org/apache/pekko/persistence/postgres/db/ExtendedPostgresProfile.scala b/core/src/main/scala/org/apache/pekko/persistence/postgres/db/ExtendedPostgresProfile.scala index 25fb41c0..bbdc9706 100644 --- a/core/src/main/scala/org/apache/pekko/persistence/postgres/db/ExtendedPostgresProfile.scala +++ b/core/src/main/scala/org/apache/pekko/persistence/postgres/db/ExtendedPostgresProfile.scala @@ -23,13 +23,13 @@ trait ExtendedPostgresProfile override protected def computeCapabilities: Set[Capability] = super.computeCapabilities + JdbcCapabilities.insertOrUpdate - override val api = MyAPI + override val api: MyAPI.type = MyAPI trait MyAPI - extends API + extends ExtPostgresAPI with ArrayImplicits with SimpleArrayPlainImplicits - with DateTimeImplicits + with Date2DateTimeImplicitsDuration with NetImplicits with LTreeImplicits with RangeImplicits diff --git a/project/Dependencies.scala b/project/Dependencies.scala index cae0efcd..e228ae14 100644 --- a/project/Dependencies.scala +++ b/project/Dependencies.scala @@ -7,9 +7,8 @@ object Dependencies { val PekkoVersion = "1.0.2" val ScaffeineVersion = "5.2.1" val ScalaTestVersion = "3.2.18" - val SlickVersion = "3.4.1" - val SlickPgVersion = "0.21.1" - val SslConfigVersion = "0.6.1" + val SlickVersion = "3.5.0" + val SlickPgVersion = "0.22.0" val LogbackVersion = "1.5.3" val PostgresqlVersion = "42.7.3"