0.4.3-RC2 (2022-01-11)¶
We’re happy to announce the release of Scala Native v0.4.3-RC2, which brings support for Scala 3, and multiple bugfixes found since previous release candidate.
This release does also contain performance-critical bug fixes to performing operations on Strings, leading to significant improvement of regexes throughput.
Due to multiple internal changes and to ensure compatibility with libraries published using Scala 2.13, we’ve decided that the 0.4.3 will be preceded by release candidates. If no new bugs will be discovered until 21st January 2022 it would be promoted to a full release.
Breaking changes in release 0.4.3¶
The minimal version of Scala 3 supported by Scala Native is 3.1.0, due to fatal blockers in Scala 3.0.x.
Changes to the main method resolving¶
In the previous versions of Scala Native main entry point was always resolved based on the companion object defining the main method.
This behaviour however lead to multiple issues in situations when an actual main method was introduced via inheritance. Because of that issue,
build tools needed to always add $
suffix to actual main class to make sure that entry method would be found.
With the 0.4.3 release, Scala Native does generate static method forwarders in the same way as it is done in JVM and Scala.js.
Build tools should make sure to no longer add $
to the discovered main class name.
Source compatibity of stackalloc[T]
and alloc[T]
methods¶
No-param methods scalanative.unsafe.stackalloc[T]
and scalanative.unsafe.alloc[T]
were removed from Scala 3 unsafe
package.
In Scala 2 these methods have been deprecated and it is recommended to use empty-param variants of these methods instead, eg. scalanative.unsafe.stackalloc[T]()
.
This change was introduced due to changes of how does Scala 3 interpret source code as it could lead to dangerous, hard to debug, runtime errors.
As an example call to stackalloc[Byte](10)
in Scala 2 would result in allocating memory of size 10 * sizeof(Byte)
. In Scala 3 however,
the given snippet would be interpreted as stackalloc[Byte].apply(10)
which is still valid, but leads to allocating 1 * sizeof(Byte)
chunk of memory and
accessing its 10th element, which would lead to undefined behaviour.
More information can be found in #2480
Known issues¶
Cannot create documentation using scaladoc in Scala Native sbt project¶
When trying to generate documentation using Scaladoc for projects using Scala Native compilation would fail with an exception.
This issue is common for most of the compiler plugins and was already fixed in Scala 3.1.1-RC2 compiler. As a workaround in Scala 3.1.0 we would recomend adjusting sbt build, by filtering out all -Xplugin
settings from Compile / doc / scalacOptions
. Workaround can be find in this discussion
Commits since last release | 17 |
Merged PRs | 16 |
Contributors | 3 |
Contributors¶
Big thanks to everybody who contributed to this release or reported an issue!
$ git shortlog -sn --no-merges v0.4.3-RC1..v0.4.3-RC2
14 Wojciech Mazur
2 Eric K Richardson
1 Kamil Podsiadło
Merged PRs¶
v0.4.3-RC2 (2022-01-11)¶
Merged pull requests:
Compiler plugin¶
Fix #2504 - Use correct self value when generating Apply trees #2509 (WojciechMazur)
Fix off by 1
nir.Positions
produced in Scala 3 #2510 (WojciechMazur)Fix compilation errors when using lazy vals in quoted macros #2511 (WojciechMazur)
Better error messages for
CFuncPtr.fromScalaFunction
#2512 (WojciechMazur)When enabling reflective instantiation check base classess instead of parents #2521 (WojciechMazur)
Standard Java library¶
Allign implemenation of UTF-8 and UTF-16 charsets with Scala.js #2515 (WojciechMazur)
ProcessMonitor should not busy wait if there are no active processess #2518 (WojciechMazur)
sbt plugin¶
Store config cached fingerprints seperetly for each version of Scala #2516 (WojciechMazur)
Add
-test
suffix to artifact path of test executables #2524 (WojciechMazur)
Misc¶
Add missing
Show
implementation forInst.LinktimeIf
#2513 (WojciechMazur)Add Scala 2.13.8 to the build #2525 (WojciechMazur)