Skip to content

Commit 43e9414

Browse files
authored
Merge branch 'main' into mima-signature-checks
2 parents 9bd48bd + 3d723a7 commit 43e9414

File tree

9 files changed

+33
-117
lines changed

9 files changed

+33
-117
lines changed

.circleci/config.yml

+4-9
Original file line numberDiff line numberDiff line change
@@ -10,9 +10,6 @@ executors:
1010
scala_jdk16_executor:
1111
docker:
1212
- image: circleci/openjdk:16-buster
13-
scala_native_executor:
14-
machine:
15-
image: ubuntu-1604:202004-01
1613

1714
commands:
1815
sbt_cmd:
@@ -77,7 +74,7 @@ jobs:
7774
scala_version: << parameters.scala_version >>
7875
sbt_tasks: xmlJS/update xmlJS/compile xmlJS/Test/compile xmlJS/test xmlJS/doc xmlJS/package
7976
scalanative_job:
80-
executor: scala_native_executor
77+
executor: scala_jdk8_executor
8178
parameters:
8279
scala_version:
8380
description: "Scala version"
@@ -94,12 +91,10 @@ jobs:
9491
- run:
9592
name: Install dependencies
9693
command: |
97-
echo "deb https://dl.bintray.com/sbt/debian /" | sudo tee -a /etc/apt/sources.list.d/sbt.list
98-
curl -sL "https://keyserver.ubuntu.com/pks/lookup?op=get&search=0x2EE0EA64E40A89B84B2DF73499E82A75642AC823" | sudo apt-key add
9994
sudo apt-get update
100-
sudo apt-get install -y sbt clang-8 openjdk-8-jdk
101-
sudo ln -s /usr/lib/llvm-8/bin/clang /usr/bin/clang
102-
sudo ln -s /usr/lib/llvm-8/bin/clang++ /usr/bin/clang++
95+
sudo apt-get install -y clang-7
96+
sudo ln -s /usr/lib/llvm-7/bin/clang /usr/local/bin/clang
97+
sudo ln -s /usr/lib/llvm-7/bin/clang++ /usr/local/bin/clang++
10398
- sbt_cmd:
10499
scala_version: << parameters.scala_version >>
105100
sbt_tasks: xmlNative/update xmlNative/compile xmlNative/test:compile xmlNative/test xmlNative/doc xmlNative/package

build.sbt

+6-1
Original file line numberDiff line numberDiff line change
@@ -32,6 +32,7 @@ lazy val xml = crossProject(JSPlatform, JVMPlatform, NativePlatform)
3232
.jvmSettings(ScalaModulePlugin.scalaModuleOsgiSettings)
3333
.settings(
3434
name := "scala-xml",
35+
scalaModuleAutomaticModuleName := Some("scala.xml"),
3536
scalacOptions ++= (CrossVersion.partialVersion(scalaVersion.value) match {
3637
case Some((3, _)) =>
3738
Seq("-language:Scala2")
@@ -55,6 +56,7 @@ lazy val xml = crossProject(JSPlatform, JVMPlatform, NativePlatform)
5556
|additional information regarding copyright ownership.
5657
|""".stripMargin)),
5758

59+
// Note: See discussion on Mima in https://github.com/scala/scala-xml/pull/517
5860
scalaModuleMimaPreviousVersion := (CrossVersion.partialVersion(scalaVersion.value) match {
5961
// pending resolution of https://github.com/scalacenter/sbt-version-policy/issues/62
6062
case Some((3, _)) => None
@@ -65,8 +67,12 @@ lazy val xml = crossProject(JSPlatform, JVMPlatform, NativePlatform)
6567
import com.typesafe.tools.mima.core._
6668
import com.typesafe.tools.mima.core.ProblemFilters._
6769
Seq(
70+
// Deprecated in 2.0.0-RC2
71+
exclude[MissingClassProblem]("scala.xml.factory.LoggedNodeFactory"),
72+
exclude[DirectMissingMethodProblem]("scala.xml.parsing.MarkupHandler.log"),
6873
// because we reverted #279
6974
exclude[DirectMissingMethodProblem]("scala.xml.Utility.escapeText"),
75+
exclude[MissingClassProblem]("scala.xml.Properties*"),
7076
// afaict this is just a JDK 8 vs 16 difference, producing a false positive when
7177
// we compare classes built on JDK 16 (which we only do on CI, not at release time)
7278
// to previous-version artifacts that were built on 8. see scala/scala-xml#501
@@ -121,7 +127,6 @@ lazy val xml = crossProject(JSPlatform, JVMPlatform, NativePlatform)
121127
)
122128
.jsConfigure(_.enablePlugins(ScalaJSJUnitPlugin))
123129
.nativeSettings(
124-
scalaModuleMimaPreviousVersion := None, // No such release yet
125130
// Scala Native cannot run forked tests
126131
Test / fork := false,
127132
libraryDependencies += "org.scala-native" %%% "junit-runtime" % nativeVersion % Test,

jvm/src/test/scala-2.x/scala/xml/CompilerErrors.scala

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ class CompilerErrors extends CompilerTesting {
88
// the error message here differs a bit by Scala version
99
import util.Properties.versionNumberString
1010
val thing =
11-
if (versionNumberString.startsWith("2.11") || versionNumberString.startsWith("2.12")) "method value"
11+
if (versionNumberString.startsWith("2.12")) "method value"
1212
else "method"
1313
expectXmlError(s"""|overloaded $thing apply with alternatives:
1414
| (f: scala.xml.Node => Boolean)scala.xml.NodeSeq <and>

project/build.properties

+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
sbt.version=1.5.0
1+
sbt.version=1.5.2

project/plugins.sbt

+2-2
Original file line numberDiff line numberDiff line change
@@ -4,10 +4,10 @@ val scalaJSVersion =
44
val scalaNativeVersion =
55
Option(System.getenv("SCALANATIVE_VERSION")).filter(_.nonEmpty).getOrElse("0.4.0")
66

7-
addSbtPlugin("org.scala-lang.modules" % "sbt-scala-module" % "2.2.4")
7+
addSbtPlugin("org.scala-lang.modules" % "sbt-scala-module" % "2.3.0")
88
addSbtPlugin("org.portable-scala" % "sbt-scalajs-crossproject" % "1.0.0")
99
addSbtPlugin("org.portable-scala" % "sbt-scala-native-crossproject" % "1.0.0")
1010
addSbtPlugin("org.scala-js" % "sbt-scalajs" % scalaJSVersion)
1111
addSbtPlugin("org.scala-native" % "sbt-scala-native" % scalaNativeVersion)
1212
addSbtPlugin("de.heikoseeberger" % "sbt-header" % "5.6.0")
13-
addSbtPlugin("ch.epfl.scala" % "sbt-version-policy" % "1.0.0-RC5")
13+
addSbtPlugin("ch.epfl.scala" % "sbt-version-policy" % "1.0.0")

shared/src/main/scala/scala/xml/XML.scala

-5
Original file line numberDiff line numberDiff line change
@@ -118,8 +118,3 @@ object XML extends XMLLoader[Elem] {
118118
w.write(Utility.serialize(node, minimizeTags = minimizeTags).toString)
119119
}
120120
}
121-
122-
object Properties extends scala.util.PropertiesTrait {
123-
protected def propCategory = "scala-xml"
124-
protected def pickJarBasedOn = classOf[scala.xml.Node]
125-
}

shared/src/main/scala/scala/xml/factory/LoggedNodeFactory.scala

-95
This file was deleted.

shared/src/main/scala/scala/xml/parsing/MarkupHandler.scala

-3
Original file line numberDiff line numberDiff line change
@@ -129,7 +129,4 @@ abstract class MarkupHandler {
129129
def unparsedEntityDecl(name: String, extID: ExternalID, notat: String): Unit = ()
130130
def notationDecl(notat: String, extID: ExternalID): Unit = ()
131131
def reportSyntaxError(pos: Int, str: String): Unit
132-
133-
@deprecated("This method and its usages will be removed. Use a debugger to debug code.", "2.11")
134-
def log(msg: String): Unit = {}
135132
}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
/*
2+
* Scala (https://www.scala-lang.org)
3+
*
4+
* Copyright EPFL and Lightbend, Inc.
5+
*
6+
* Licensed under Apache License 2.0
7+
* (http://www.apache.org/licenses/LICENSE-2.0).
8+
*
9+
* See the NOTICE file distributed with this work for
10+
* additional information regarding copyright ownership.
11+
*/
12+
13+
package scala
14+
package xml
15+
16+
object Properties extends util.PropertiesTrait {
17+
protected def propCategory = "scala-xml"
18+
protected def pickJarBasedOn = classOf[scala.xml.Node]
19+
}

0 commit comments

Comments
 (0)