Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update postgresql to 42.7.1 #2969

Closed
wants to merge 3 commits into from
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
4 changes: 2 additions & 2 deletions build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -463,7 +463,7 @@ lazy val `quill-jdbc-zio` =
.settings(
libraryDependencies ++= Seq(
// Needed for PGObject in JsonExtensions but not necessary if user is not using postgres
"org.postgresql" % "postgresql" % "42.7.0" % "provided",
"org.postgresql" % "postgresql" % "42.7.1" % "provided",
"dev.zio" %% "zio-json" % "0.6.2"
),
Test / testGrouping := {
Expand Down Expand Up @@ -585,7 +585,7 @@ lazy val jdbcTestingLibraries = Seq(
"com.zaxxer" % "HikariCP" % "5.1.0" exclude ("org.slf4j", "*"),
"com.mysql" % "mysql-connector-j" % "8.3.0" % Test,
"com.h2database" % "h2" % "2.2.224" % Test,
"org.postgresql" % "postgresql" % "42.7.0" % Test,
"org.postgresql" % "postgresql" % "42.7.1" % Test,
"org.xerial" % "sqlite-jdbc" % "3.45.0.0" % Test,
"com.microsoft.sqlserver" % "mssql-jdbc" % "7.4.1.jre11" % Test,
"com.oracle.ojdbc" % "ojdbc8" % "19.3.0.0" % Test,
Expand Down