From 4491644bcd102ec2ff5b5794e21559d161e7419e Mon Sep 17 00:00:00 2001 From: Quentin Caillard Date: Mon, 21 Oct 2024 13:29:54 +0200 Subject: [PATCH] Ignore doobie 1.0.0-RC6 This release must be avoided according the changelog: https://github.com/typelevel/doobie/releases/tag/v1.0.0-RC6 --- modules/core/src/main/resources/default.scala-steward.conf | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/modules/core/src/main/resources/default.scala-steward.conf b/modules/core/src/main/resources/default.scala-steward.conf index b148e4518..c7b4a57b5 100644 --- a/modules/core/src/main/resources/default.scala-steward.conf +++ b/modules/core/src/main/resources/default.scala-steward.conf @@ -225,4 +225,11 @@ updates.ignore = [ // https://github.com/circe/circe-yaml/issues/402 { groupId = "io.circe", artifactId="circe-yaml", version="1.15.0" }, + + // https://github.com/typelevel/doobie/issues/2104 + { groupId = "org.tpolecat", artifactId="doobie-core", version="1.0.0-RC6" }, + { groupId = "org.tpolecat", artifactId="doobie-postgres", version="1.0.0-RC6" }, + { groupId = "org.tpolecat", artifactId="doobie-scalatest", version="1.0.0-RC6" }, + { groupId = "org.tpolecat", artifactId="doobie-hikari", version="1.0.0-RC6" }, + { groupId = "org.tpolecat", artifactId="doobie-postgres-circe", version="1.0.0-RC6" }, ]