From bcd1066fa2015f660e24b9bc29bf391fd5aaf744 Mon Sep 17 00:00:00 2001 From: "scala-steward-projectglow[bot]" <159218053+scala-steward-projectglow[bot]@users.noreply.github.com> Date: Sun, 28 Jun 2026 00:40:12 +0000 Subject: [PATCH] Update snakeyaml to 2.6 --- build.sbt | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/build.sbt b/build.sbt index 882fdec5..81fb0f29 100644 --- a/build.sbt +++ b/build.sbt @@ -122,7 +122,10 @@ lazy val commonSettings = Seq( assembly / assemblyMergeStrategy := { case p if p.toLowerCase.contains("manifest.mf") => MergeStrategy.discard - case p if p.toLowerCase.endsWith(".sf") || p.toLowerCase.endsWith(".dsa") || p.toLowerCase.endsWith(".rsa") => + case p + if p.toLowerCase.endsWith(".sf") || p.toLowerCase.endsWith(".dsa") || p + .toLowerCase + .endsWith(".rsa") => MergeStrategy.discard case p if p.startsWith("com/fasterxml/jackson/") => MergeStrategy.discard @@ -140,7 +143,7 @@ lazy val commonSettings = Seq( if (sparkVersion.value.contains("SNAPSHOT")) Seq("Apache Snapshots" at "https://repository.apache.org/snapshots/") else Seq.empty - }, + } ) lazy val functionsYml = settingKey[File]("functionsYml") @@ -223,7 +226,7 @@ ThisBuild / coreDependencies := { "io.netty" % "netty-handler" % nettyVersion, "io.netty" % "netty-transport-native-epoll" % nettyVersion, "com.github.samtools" % "htsjdk" % "3.0.5", - "org.yaml" % "snakeyaml" % "2.2", + "org.yaml" % "snakeyaml" % "2.6", "com.univocity" % "univocity-parsers" % "2.9.1", "org.apache.avro" % "avro" % avroVersion )).map(_.exclude("com.google.code.findbugs", "jsr305"))