Hello all, I'm aware that Scala is not binary compatible between revisions. I have some Java code whose only Scala dependency is the transitive dependency through Spark. This code calls a Spark API which returns a Seq<Path>, which I then convert into a List<Path> with JavaConverters.seqAsJavaListConverter. Will this usage cause binary incompatibility if the jar is compiled in one Scala version and executed in another?
I tried grokking https://docs.scala-lang.org/overviews/core/binary-compatibility-of-scala-releases.html, and wasn't quite able to make heads or tails of this particular case. Thanks! Andrew