Scala 3.3.8 LTS release thread

Scala 3.3.8-RC1 is now available for testing.

This patch release backports most of the bugfixes and some of the improvements introduced in the Scala Next series up to the Scala 3.8.4 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.

Notable changes

  • Support for JDK 26 #24430
  • Multiple coverage improvement to make it on par with Scala 2 support including
    // $COVERAGE-OFF$ and // $COVERAGE-ON$ markers
  • New @uncheckedOverride annotation for definitions that might or might not override. (This can be useful when cross-building.)
    #24545
  • Trap Ctrl-C in the REPL: if no command is running clear the prompt, if some
    command is running ask for confirmation before exiting.
    #24127
  • Numerous linting and presentation compiler improvements and fixes.

For a full list of changes and contributor credits, please refer to the release notes.

The final release is planned for next month 7th June.

4 Likes

There is something I don’t understand. The number of failing projects has increased from 3.3.6 to 3.3.7, and again from 3.3.7 to 3.3.8. The “promise” of LTS was to see this number consistently drop, not rise.

We always check the failing projects and the reason for them to start failing.

There is a few reason why they can end up in that state:

  • project no longer exists and can’t be checked out
  • project started to use Scala 3.4.0+ and is no longer possible to compile with Scala 3.3.x
  • new projects that were never compiling
  • projects failing due to complexity of the build and it can’t be easily tested automatically

We usually check the latter ones manually and we make sure each failure is not due to changes in the compiler itself.

3 Likes

Is there tracking of why projects fail that’s public? I want try some automation to get the entire community build into a green state.

It seems to work nicely. I started from oldest Scala 3 version projects that are stuck on (3.2.2), and Claude already minimized three tickets. We’ll try to vibe code fixes as long as they are not too drastic.

Tracking progress here: [CB] Scala 3.9.0 nightly community-build triage — 0c8c581 (2026-05-01) · Issue #1 · soronpo/dottybug · GitHub

1 Like

Really nice! Already 11 projects have relevant tickets filed + a tentative PR to fix them.

1 Like