Skip to content

Commit

Permalink
feat(pollux): bump mercury version and fix queries (#357)
Browse files Browse the repository at this point in the history
  • Loading branch information
bvoiturier authored Feb 7, 2023
1 parent 835ad43 commit 28f779a
Show file tree
Hide file tree
Showing 3 changed files with 1 addition and 3 deletions.
2 changes: 1 addition & 1 deletion pollux/lib/project/Dependencies.scala
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ object Dependencies {
val prismSdk = "v1.4.1" // scala-steward:off
val iris = "0.1.0"
val shared = "0.2.0"
val mercury = "0.17.0"
val mercury = "0.18.0"
val flyway = "9.8.3"
val testContainersScalaPostgresql = "0.40.11"
val quill = "4.6.0"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -172,7 +172,6 @@ class JdbcCredentialRepository(xa: Transactor[Task]) extends CredentialRepositor
| issued_credential_raw
| FROM public.issue_credential_records
| WHERE $inClauseFragment
| LIMIT 50
""".stripMargin
.query[IssueCredentialRecord]
.to[Seq]
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -169,7 +169,6 @@ class JdbcPresentationRepository(xa: Transactor[Task]) extends PresentationRepos
| credentials_to_use
| FROM public.presentation_records
| WHERE $inClauseFragment
| LIMIT 50
""".stripMargin
.query[PresentationRecord]
.to[Seq]
Expand Down

0 comments on commit 28f779a

Please sign in to comment.