From 69072a8e520cd3a1edbb4f0f497fba18bf31b109 Mon Sep 17 00:00:00 2001 From: Tiago Mota Date: Fri, 15 Mar 2024 11:23:05 +0000 Subject: [PATCH] Update slick and slick-pg --- .../persistence/postgres/db/ExtendedPostgresProfile.scala | 6 +++--- project/Dependencies.scala | 5 ++--- 2 files changed, 5 insertions(+), 6 deletions(-) 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"