From ccfe869c376e7e96de053fab6f8975df492c0caa Mon Sep 17 00:00:00 2001 From: Roberto Tyley Date: Wed, 13 Sep 2023 16:22:56 +0100 Subject: [PATCH] Update to fapi-client v4.0.6 This is a small upgrade, catching up with the recent dependency updates of https://github.com/guardian/facia-scala-client/releases/tag/v4.0.6, before the more extensive update in https://github.com/guardian/facia-scala-client/pull/287 is introduced. This update has already been tested in Ophan's PromotionPoller with https://github.com/guardian/ophan/pull/5540, successfully deployed to Prodution. Note that as https://github.com/guardian/frontend is _already_ using Play 2.8, it should probably be using `fapi-client-play28`, rather than `fapi-client-play27`, so I've also updated that. --- project/Dependencies.scala | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/project/Dependencies.scala b/project/Dependencies.scala index accb73cf1a0d..6cd532273ce0 100644 --- a/project/Dependencies.scala +++ b/project/Dependencies.scala @@ -9,7 +9,7 @@ object Dependencies { val identityLibVersion = "3.255" val awsVersion = "1.12.205" val capiVersion = "19.4.0" - val faciaVersion = "4.0.5" + val faciaVersion = "4.0.6" val dispatchVersion = "0.13.1" val romeVersion = "1.0" val jerseyVersion = "1.19.4" @@ -36,7 +36,7 @@ object Dependencies { val cssParser = "net.sourceforge.cssparser" % "cssparser" % "0.9.23" val contentApiClient = "com.gu" %% "content-api-client" % capiVersion val dfpAxis = "com.google.api-ads" % "dfp-axis" % "5.2.0" - val faciaFapiScalaClient = "com.gu" %% "fapi-client-play27" % faciaVersion + val faciaFapiScalaClient = "com.gu" %% "fapi-client-play28" % faciaVersion val identityCookie = "com.gu.identity" %% "identity-cookie" % identityLibVersion val identityModel = "com.gu.identity" %% "identity-model" % identityLibVersion val identityAuthPlay = "com.gu.identity" %% "identity-auth-play" % identityLibVersion