-
Notifications
You must be signed in to change notification settings - Fork 185
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
full support for JDK21 via scalameta 4.8.13 #1810
Conversation
8b9a886
to
9220df4
Compare
Regressions seem to be related to looking up JDK symbols from class files with scalameta, specifically:
|
Seq(scala213, scala212).flatMap(sv => previousVersions(sv).map(prev => (sv, prev))) ++ | ||
Seq(scala213, scala212).map(sv => (sv, scala3)) | ||
|
||
all.filter { | ||
case (_, v) if System.getProperty("java.version") == "21" => | ||
!Seq("2.12.16", "2.12.17", "2.13.10").contains(v) |
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.
support for JDK21 was introduced in 2.12.18 and 2.13.11
@@ -28,7 +36,7 @@ object Dependencies { | |||
val metaconfigV = "0.12.0" | |||
val nailgunV = "0.9.1" | |||
val scalaXmlV = "2.2.0" | |||
val scalametaV = "4.8.12" | |||
val scalametaV = "4.8.13" |
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.
No description provided.