Skip to content

Commit 1c3d291

Browse files
authored
Merge pull request scala#10825 from SethTisue/merge-2.12-to-2.13-20240805
merge 2.12 to 2.13 20240805 [ci: last-only]
2 parents 4e5348e + 62a0174 commit 1c3d291

File tree

4 files changed

+8
-3
lines changed

4 files changed

+8
-3
lines changed

SECURITY.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
# Security Policy
2+
3+
The security policy of the Scala Programming Language organization can be found at [scala-lang.org/security](https://scala-lang.org/security).
4+
5+
To contact us about security issues or the policy, use [[email protected]](mailto:[email protected]).

build.sbt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ import scala.build._, VersionUtil._
3737
// Non-Scala dependencies:
3838
val junitDep = "junit" % "junit" % "4.13.2"
3939
val junitInterfaceDep = "com.github.sbt" % "junit-interface" % "0.13.3" % Test
40-
val scalacheckDep = "org.scalacheck" %% "scalacheck" % "1.17.0" % Test
40+
val scalacheckDep = "org.scalacheck" %% "scalacheck" % "1.18.0" % Test
4141
val jolDep = "org.openjdk.jol" % "jol-core" % "0.16"
4242
val asmDep = "org.scala-lang.modules" % "scala-asm" % versionProps("scala-asm.version")
4343
val jlineDep = "org.jline" % "jline" % versionProps("jline.version")

project/plugins.sbt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ scalacOptions ++= Seq(
66
"-Werror",
77
"-Wconf:msg=IntegrationTest .* is deprecated:s,msg=itSettings .* is deprecated:s")
88

9-
libraryDependencies += "org.apache.commons" % "commons-lang3" % "3.14.0"
9+
libraryDependencies += "org.apache.commons" % "commons-lang3" % "3.15.0"
1010

1111
libraryDependencies += "biz.aQute.bnd" % "biz.aQute.bndlib" % "6.1.0"
1212

src/compiler/scala/tools/nsc/transform/Erasure.scala

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -95,7 +95,7 @@ abstract class Erasure extends InfoTransform
9595
}
9696

9797
override protected def verifyJavaErasure = settings.Xverify.value || settings.isDebug
98-
private def needsJavaSig(sym: Symbol, tp: Type, throwsArgs: List[Type]) = !settings.Ynogenericsig.value && {
98+
def needsJavaSig(sym: Symbol, tp: Type, throwsArgs: List[Type]) = !settings.Ynogenericsig.value && {
9999
def needs(tp: Type) = NeedsSigCollector(sym.isClassConstructor).collect(tp)
100100
needs(tp) || throwsArgs.exists(needs)
101101
}

0 commit comments

Comments
 (0)