From aeff244a4b718d968a0e9305f11a1c4cff385ce4 Mon Sep 17 00:00:00 2001 From: Emily Bourke Date: Mon, 21 Oct 2024 14:39:08 +0100 Subject: [PATCH] Ignore scrooge updates past 21.8.0 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit We use some thrift reserved words in our thrift definitions, and as of [scrooge version 21.9.0](https://github.com/twitter/scrooge/releases/tag/scrooge-21.9.0), scrooge throws errors when it encounters these reserved words. Until we’ve worked out how to get around this problem, this commit configures Scala Steward not to update scrooge past the version we’re currently on (21.8.0). For more information, see: - https://github.com/guardian/content-api/issues/2903 - https://github.com/guardian/content-api-models/pull/231 --- .scala-steward.conf | 4 ++++ 1 file changed, 4 insertions(+) create mode 100644 .scala-steward.conf diff --git a/.scala-steward.conf b/.scala-steward.conf new file mode 100644 index 0000000..5982e62 --- /dev/null +++ b/.scala-steward.conf @@ -0,0 +1,4 @@ +updates.ignore = [ + { groupId = "com.twitter", artifactId = "scrooge-core" }, + { groupId = "com.twitter", artifactId = "scrooge-sbt-plugin" } +]