-
Notifications
You must be signed in to change notification settings - Fork 322
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
Scala LTS 3.3.5 announcement #1728
Merged
Merged
Changes from all commits
Commits
Show all changes
6 commits
Select commit
Hold shift + click to select a range
0a1faad
Add draft for Scala 3.3.5 release notes
WojciechMazur 7617cba
Apply improvements to release notes
WojciechMazur e90711f
Update release date to January 29
WojciechMazur cacdc49
Apply review comments fixes
WojciechMazur 116bcdd
Add notice explaining backporting policy (delays)
WojciechMazur add9b1f
Mention being an LTS in title
WojciechMazur File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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
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.3.5 LTS | ||
start: 29 January 2025 | ||
layout: downloadpage | ||
release_version: 3.3.5 | ||
release_date: "January 29, 2025" | ||
permalink: /download/3.3.5.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.3.5/ | ||
--- |
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,28 @@ | ||
--- | ||
category: announcement | ||
permalink: /news/3.3.5/ | ||
title: "Scala 3.3.5 LTS is now available!" | ||
--- | ||
Scala 3.3.5 LTS is now available! | ||
|
||
This patch release backports most of the improvements and bugfixes introduced in the Scala Next series up to the Scala 3.5.2 release. | ||
All of the backported changes were proven to not break either binary or source compatibility, by testing over 1500 projects in the [Scala 3 Open Community Build](https://github.com/VirtusLab/community-build3). | ||
|
||
# Breaking changes | ||
|
||
- Aligned `-Wconf` parsing order with Scala 2 semantics: `-Wconf:x,y` now means `-Wconf:x -Wconf:y`, with y overruling x, rather than the reverse to align with Scala 3.4+ and with user intuition [#21985](https://github.com/scala/scala3/pull/21985) | ||
|
||
# Notable changes | ||
|
||
- Scala 2 Standard Library upgraded to 2.13.15 | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. not sure if it's worth adding that 3.3.6 will have 2.13.16? maybe not |
||
- Support for JDK 23 | ||
- Added the `-Wall` option that enables all linting warnings | ||
|
||
For a full list of changes and contributor credits, please refer to the [release notes](https://github.com/scala/scala3/releases/tag/3.3.5). | ||
|
||
## Scala LTS Release Notice | ||
|
||
The Scala LTS series introduces a delay before backporting non-critical changes from the latest Scala Next stable releases. This delay helps minimize the risk of regressions that may be uncovered during testing. | ||
|
||
The next planned LTS release will include updates introduced until Scala 3.6.4, along with support for JDK 24 and the Scala 2.13.16 standard library. | ||
|
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
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.
3.5.2? not 3.6.x?
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.
3.5.2, it was the selected as cutoff. The reasoning here is that these changes had enough time to be tested out in a cases that are not covered by our tests or community build. The 3.5.6 would include backports introduced up to 3.6.4 (+ possibly some other changes like Scala 2 stdlib upgrade or JVM support)
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.
okay. might be worth mentioning in the notes? I think most readers will notice and wonder
(of course, there's also value in keeping notes short...)