Skip to content

Commit

Permalink
Bump scala version to 2.13.9
Browse files Browse the repository at this point in the history
To mitigate security vulnerability in scala-library
  • Loading branch information
spenes committed Sep 26, 2022
1 parent ef957d9 commit c5b1de6
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -42,8 +42,8 @@ class GZipSerializerSpec extends Specification {
cleanup()

val binaryInputs = List(
List("A", "B", 1000, "a", "b").mkString("\t").getBytes.asRight,
List("X", "Y", 2000, "x", "y").mkString("\t").getBytes.asRight
(List("A", "B", 1000, "a", "b"):List[Any]).mkString("\t").getBytes.asRight,
(List("X", "Y", 2000, "x", "y"):List[Any]).mkString("\t").getBytes.asRight
)

val serializationResult =
Expand Down
2 changes: 1 addition & 1 deletion project/BuildSettings.scala
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ object BuildSettings {
// Basic settings for our app
lazy val basicSettings = Seq(
organization := "com.snowplowanalytics",
scalaVersion := "2.13.6",
scalaVersion := "2.13.9",
description := "Load the contents of a Kinesis stream topic to S3",
resolvers ++= Dependencies.resolvers,
ThisBuild / dynverVTagPrefix := false,
Expand Down

0 comments on commit c5b1de6

Please sign in to comment.