scala3
scala3 copied to clipboard
The Scala 3 compiler, also known as Dotty.
Based on OpenCB failure in: - `darrenjw/scala-glm` - [build logs ](https://github.com/VirtusLab/community-build3/actions/runs/19978523736/job/57301614170) - `darrenjw/scala-smfsb` - [build logs](https://github.com/VirtusLab/community-build3/actions/runs/19978523736/job/57301614166) ## Compiler version Last good release: 3.8.0-RC1-bin-20251103-714f3b6-NIGHTLY First bad release: 3.8.0-RC1-bin-20251104-b83b3d9-NIGHTLY Bisect points to...
## Compiler version 3.7.4, 3.8.1-RC1-bin-20251203-b2850be-NIGHTL ## Minimized code ```scala $ cat gadt_contraint_implicit.scala trait Expr[T] object Expr { extension (lhs: Expr[Boolean]) infix def ||(rhs: Expr[Boolean]): Expr[Boolean] = ??? } object test...
## Compiler version 3.4.0-RC3 (probably also on 3.3.X) ## Minimized code ```Scala package foo package object G: private[foo] val valBinaryAPI2: Int = 1 package object H: inline def inlined =...
Make global object checker default to best-effort mode - In best-effort mode, the checker tries to be fast, useful and unobtrusive. - In the aggressive mode, the checker tries to...
A similar issue to https://github.com/scala/scala3/issues/24553 but with a different cause that remains after that other one was fixed. Encountered when trying to update Mill's codebase to 3.8.0-RC3 in https://github.com/com-lihaoyi/mill/pull/6320 ##...
Previously, `javaSig0` only collected type parameter names from the immediate enclosing class when generating Java generic signatures for methods. However, this isn't enough with nested classes where outer class type...
Bumps [webrick](https://github.com/ruby/webrick) from 1.9.1 to 1.9.2. Release notes Sourced from webrick's releases. v1.9.2 What's Changed Remove usage of IO#nread by @osyoyu in ruby/webrick#181 Remove assert matching stderr output in test_sni....
Bumps [burnett01/rsync-deployments](https://github.com/burnett01/rsync-deployments) from 7.0.2 to 8.0.2. Release notes Sourced from burnett01/rsync-deployments's releases. 8.0.2 Full Changelog: https://github.com/Burnett01/rsync-deployments/compare/8.0.1...8.0.2 Contributors: @Burnett01 @JoshPiper 8.0.1 Full Changelog: https://github.com/Burnett01/rsync-deployments/compare/8.0.0...8.0.1 Contributors: @Burnett01 @JoshPiper v8 What's Changed Version...
Fixes #24072 When comparing overloaded methods where one is non-varargs with wildcard types (e.g., `Class[?
## Compiler version 3.7.4 ## Minimized example ```Scala object test { trait TC[X] { def notTrivial: Int } class C[T: TC]() { def mod: C[T] = new C() } }...