From b2b7500e0e58bac6054256d23c0f19f726b3421b Mon Sep 17 00:00:00 2001 From: Constantine Nathanson <35217733+const-cloudinary@users.noreply.github.com> Date: Mon, 24 Feb 2025 13:01:45 +0200 Subject: [PATCH 1/2] Bump vulnerable sample project dependencies --- samples/photo_album/build.sbt | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/samples/photo_album/build.sbt b/samples/photo_album/build.sbt index c3005b1..052b5bb 100644 --- a/samples/photo_album/build.sbt +++ b/samples/photo_album/build.sbt @@ -6,9 +6,9 @@ scalaVersion := Common.scalaVersion libraryDependencies ++= Seq( - "com.h2database" % "h2" % "1.4.188", - "com.typesafe.play" %% "play-slick" % "3.0.4", - "com.typesafe.play" %% "play-slick-evolutions" % "3.0.4", + "com.h2database" % "h2" % "latest.release", + "com.typesafe.play" %% "play-slick" % "latest.release", + "com.typesafe.play" %% "play-slick-evolutions" % "latest.release" evolutions ) @@ -20,4 +20,4 @@ includeFilter in (Assets, LessKeys.less) := "*.less" excludeFilter in (Assets, LessKeys.less) := "_*.less" -routesGenerator := InjectedRoutesGenerator \ No newline at end of file +routesGenerator := InjectedRoutesGenerator From 56cafe868c9b092e5e7503e3def2c7fee9a9b190 Mon Sep 17 00:00:00 2001 From: Constantine Nathanson <35217733+const-cloudinary@users.noreply.github.com> Date: Mon, 24 Feb 2025 13:12:43 +0200 Subject: [PATCH 2/2] Fix syntax --- samples/photo_album/build.sbt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/samples/photo_album/build.sbt b/samples/photo_album/build.sbt index 052b5bb..fa6fa61 100644 --- a/samples/photo_album/build.sbt +++ b/samples/photo_album/build.sbt @@ -8,7 +8,7 @@ libraryDependencies ++= Seq( "com.h2database" % "h2" % "latest.release", "com.typesafe.play" %% "play-slick" % "latest.release", - "com.typesafe.play" %% "play-slick-evolutions" % "latest.release" + "com.typesafe.play" %% "play-slick-evolutions" % "latest.release", evolutions )