-
Notifications
You must be signed in to change notification settings - Fork 6
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Upgrade to Panda v7 - support key rotation
This upgrades Panda from v5 to v7, allowing us to use key rotation as introduced with guardian/pan-domain-authentication#150.
- Loading branch information
Showing
1 changed file
with
4 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -18,6 +18,7 @@ scalacOptions ++= Seq( | |
|
||
lazy val awsVersion = "1.12.403" | ||
|
||
val pandaVersion = "7.0.0" | ||
lazy val dependencies = Seq( | ||
"com.amazonaws" % "aws-java-sdk-dynamodb" % awsVersion, | ||
"com.amazonaws" % "aws-java-sdk-ec2" % awsVersion, | ||
|
@@ -26,7 +27,7 @@ lazy val dependencies = Seq( | |
"com.amazonaws" % "aws-java-sdk-sqs" % awsVersion, | ||
"com.amazonaws" % "aws-java-sdk-sts" % awsVersion, | ||
"com.amazonaws" % "amazon-kinesis-client" % "1.14.10", | ||
"com.gu" %% "pan-domain-auth-play_2-8" % "4.0.0", | ||
"com.gu" %% "pan-domain-auth-play_2-8" % pandaVersion, | ||
"com.gu" %% "editorial-permissions-client" % "2.15", | ||
ws, // for panda | ||
"ai.x" %% "play-json-extensions" % "0.42.0", | ||
|
@@ -37,7 +38,7 @@ lazy val dependencies = Seq( | |
"net.logstash.logback" % "logstash-logback-encoder" % "7.2", | ||
"org.slf4j" % "slf4j-api" % "1.7.12", | ||
"org.slf4j" % "jcl-over-slf4j" % "1.7.12", | ||
"com.gu" %% "panda-hmac-play_2-8" % "4.0.0", | ||
"com.gu" %% "panda-hmac-play_2-8" % pandaVersion, | ||
"com.gu" %% "content-api-client-aws" % "0.7.4", | ||
"com.beachape" %% "enumeratum" % "1.5.13", | ||
"org.scalatest" %% "scalatest" % "3.2.19" % Test, | ||
|
@@ -59,7 +60,7 @@ lazy val root = (project in file(".")).enablePlugins(PlayScala, SbtWeb, JDebPack | |
"-Dpidfile.path=/dev/null" | ||
), | ||
|
||
debianPackageDependencies := Seq("openjdk-8-jre-headless"), | ||
debianPackageDependencies := Seq("java11-runtime-headless"), | ||
maintainer := "digital tools team <[email protected]>", | ||
packageSummary := "tag manager", | ||
packageDescription := """manage tags""", | ||
|