-
Notifications
You must be signed in to change notification settings - Fork 19
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
What kinds of changes/additions are possible? #4
Comments
A possible solution to 1 is to add classes that are |
Overlapping question: what will the user experience be? Will individual extension methods need to be imported individually, or will we provide some sort of blanket import? |
Also: do we care about split packages? Either for OSGi or (probably more importantly) the Java module system? Suppose we go ahead and allow ourselves to use split packages, will module systems be able to opt-out by exempting our JARs, or is it viral/transitive somehow? |
When is the next full post-3.0 ecosystem reboot, when everything will need to rebuilt anyway so breaking bincompat everywhere is fair game? @sjrd says the next time might be 3.1 or 2.2 but in any case it will be the last reboot (since after that TASTy will take over) |
Rough consensus from the design meeting today (subject to revision if someone makes new arguments):
|
At some point the 3.x series, it will become permissible to add new classes and methods without requiring an ecosystem reboot. But those points where things get added will be e.g. 3.2, 3.3, ... which will be fairly far apart. So there will still be a role for scala-library-next, to provide additions in the shorter term. (Or?) |
If necessary, we can use calls on cast structural types to get access to stuff that we're not supposed to have access to: val x: Any = ???
def foo(x: Int): Int = ...
type HasFoo = { def foo(x: Int): Int }
x.asInstanceOf[HasFoo].foo(5) |
that doesn't work if it's fully |
regarding scala/bug#12132: we agreed that it should be possible to add an however, subsequent to the meeting, I tried out the following in a REPL and discovered that it doesn't work due to auto-tupling. scala> import scala.collection.mutable.Builder
import scala.collection.mutable.Builder
scala> implicit final class MapBuilderOps[K, V, M <: collection.Map[K, V]](val self: Builder[(K, V), M]) {
| def addOne(key: K, value: V): self.type = self.addOne(key -> value)
| }
class MapBuilderOps
scala> Map.newBuilder[Int, Int].addOne(1, 2).result() //print
scala.Predef.Map.newBuilder[scala.Int, scala.Int].addOne(scala.Tuple2.apply[Int, Int](1, 2)).result() // : scala.collection.immutable.Map[Int,Int] edit: suggested alternative name: |
That is unfortunate. We'd have to give it a different name, then, I guess. |
Not fatal, but also makes it (even) harder to evaluate if a mima exclusion in scala/scala is safe or not. We already have parallel collections... which you can take both ways 😄 : the horse has already bolted, we need to check; or: let's not add to the problem.. |
During a meeting later in the day, @dwijnand made the important point that accessing This can prevent improvements in the internals of the standard library, in case they are not binary compatible with existing releases of scala-library-next. Introducing additional restrictions on what we can change in minor releases of the standard library is the opposite of what scala-library-next is supposed to achieve. So we have to be very careful about what internals are actually accessed. |
Random googling suggests that there are ways for people that use the Java module system to depend on jars with split packages. From https://www.reddit.com/r/java/comments/9yexog/jdk_11_migration_how_to_deal_with_split_packages/
Using About OSGi: we gave up on including OSGi metadata in our other modules that have split packages and I'm not aware of any complaints (scala/scala-collection-compat#321, scala/scala-parallel-collections#99, scala/scala-collection-contrib#72). I think it's fine to do the same here. If someone ever contributes a reliable way of doing OSGi for these modules that would be accepted of course. My conclusion: using the same package names makes things easier for the large majority, and I doubt this library would be the only one causing problems for people using JPMS or OSGi. So I'm for using the same packages. |
(I only saw some of the comments above mine just now, sorry for missing that context) |
some notes from a team discussion a few weeks ago:
|
Shouldn't that be moot at this point (or soon), due to the Scala 2 compiler being able to handle Tasty? |
As time passes, we should try to migrate conclusions and guidelines from this ticket to README.md. For now, the readme just links here. |
What is the correct way of implementing changes for abstract classes within the scope of this repo? I would like to make a PR that adds to |
scala
package and outside of thescala.next
package, what procedure should be followed? Do we pursue such changes at all? (If not, the scope of this library is drastically reduced.)The text was updated successfully, but these errors were encountered: