Skip to content

Commit

Permalink
Merge pull request #59 from guardian/upgrade-to-panda-v5
Browse files Browse the repository at this point in the history
Upgrade to Panda v5
  • Loading branch information
rtyley authored Aug 9, 2024
2 parents 201c54b + 6a19c90 commit 0a80001
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 5 deletions.
3 changes: 2 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -5,4 +5,5 @@ target/
node_modules
.DS_Store
.metals
.vscode
.vscode
.bsp/
3 changes: 2 additions & 1 deletion app/lib/PanAuth.scala
Original file line number Diff line number Diff line change
Expand Up @@ -2,10 +2,11 @@ package lib


import com.gu.pandomainauth.model.{Authenticated, AuthenticatedUser, AuthenticationStatus, User}
import com.gu.pandomainauth.{PanDomain, PublicKey, PublicSettings}
import com.gu.pandomainauth.{PanDomain, PublicSettings}
import play.api.Logging
import play.api.mvc._

import java.security.PublicKey
import scala.concurrent.{ExecutionContext, Future}

class UserRequest[A](val user: User, request: Request[A]) extends WrappedRequest[A](request)
Expand Down
4 changes: 2 additions & 2 deletions build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ import PlayKeys._

name := "s3-uploader"
version := "1.0"
scalaVersion := "2.13.10"
scalaVersion := "2.13.14"

scalacOptions := Seq(
"-unchecked",
Expand All @@ -14,7 +14,7 @@ scalacOptions := Seq(
libraryDependencies ++= Seq(
ws, filters,
"com.amazonaws" % "aws-java-sdk-s3" % "1.12.761",
"com.gu" %% "pan-domain-auth-verification" % "4.0.0"
"com.gu" %% "pan-domain-auth-verification" % "5.0.0"
)

lazy val root = (project in file("."))
Expand Down
2 changes: 1 addition & 1 deletion project/build.properties
Original file line number Diff line number Diff line change
@@ -1 +1 @@
sbt.version=1.9.6
sbt.version=1.10.1

0 comments on commit 0a80001

Please sign in to comment.