-
Notifications
You must be signed in to change notification settings - Fork 320
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add Scala 3.5.1 release notes (#1694)
* Fix typos in filenames for downloads 3.5.0 and 3.4.3 * Add release notes for Scala 3.5.1 * Update _downloads/2024-06-16-3.4.2.md Co-authored-by: Jamie Thompson <[email protected]> * Adjust release dates * Adjust remaining release date in scala-releases.yml --------- Co-authored-by: Jamie Thompson <[email protected]>
- Loading branch information
1 parent
94985a0
commit 185ca40
Showing
5 changed files
with
29 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes.
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
--- | ||
title: Scala 3.5.1 | ||
start: 20 September 2024 | ||
layout: downloadpage | ||
release_version: 3.5.1 | ||
release_date: "September 20, 2024" | ||
permalink: /download/3.5.1.html | ||
license: <a href="https://www.scala-lang.org/license/">Apache License, Version 2.0</a> | ||
api_docs: https://www.scala-lang.org/api/3.5.1/ | ||
--- |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
--- | ||
category: announcement | ||
permalink: /news/3.5.1 | ||
title: "Scala 3.5.1 is now available!" | ||
--- | ||
Scala 3.5.1 is now available! | ||
|
||
This release focused mostly on fixes to bugs, however, it also included some DX improvements. | ||
You can now use `-language:help` to see the list of available language features. The compiler would now also reject incorrect values passed to the `-language` setting. | ||
The compiler would now generate better source positions for synthetic `Unit` expressions - these were previously leading to incorrect behaviour of JVM debuggers. | ||
|
||
For a full list of changes and contributor credits, please refer to the [release notes](https://github.com/scala/scala3/releases/tag/3.5.1). | ||
|
||
## Known Issues | ||
|
||
Scala 3.5.1 corrects generic signatures emitted in the JVM bytecode for value classes and aligns it with Scala 2.13 semantics. | ||
The previously generated signatures for value classes were invalid - they contained underlying value class type instead of boxed type. This change would lead to MiMa errors when signature checks are enabled and could lead to issues when trying to refer to value class methods using reflection API. It would not affect the normal usage of value classes in Scala code compiled with the previous version of the compiler. |