-
Notifications
You must be signed in to change notification settings - Fork 1.1k
[build] Use up-to-date sources of Scala 2.13 stdlib when patching Scala 3 bytecode #24855
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Conversation
| Build.mimaPreviousDottyVersion -> Seq.empty, // We should never break backwards compatibility | ||
| Build.mimaPreviousDottyVersion -> Seq( | ||
| // scala/scala3#24855 - copied from Scala 2.13.16 by ScalaLibraryPlugin, to be removed when Scala 3.8.0 is released | ||
| ProblemFilters.exclude[MissingClassProblem]("scala.collection.immutable.LazyList$State*"), |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Is this safe? Are we not breaking the binary compatibility here?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
It's the same in Scala 2, it was also adds in their MiMa scala/scala#10937 it was removed when they've started to work on 2.13.18 scala/scala@2f929e8 (Scala 2 checks MiMa only against previous version)
We're de facto synchronized with Scala 2.13.18, LazyList.State is a private sealed trait
tgodzik
left a comment
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
LGTM
Build.stdlibBootstrappedVersion