Any plans to support Java 25 now that gradle has released 9.1.0 with full support?
Looking forward for Java 25 support
ping me when Java 25 support is there
Probably will go out in 2.3.0 https://youtrack.jetbrains.com/issue/KT-81334/Add-support-for-JVM-25
Noob question here. Kotlin doesn’t need to support compiling to Java 25 bytecode in order to use a Java 25 JVM to run the compiled code, right? We would just be targeting a Java version that is supported and having the Java 25 JVM run that bytecode, and still benefiting from JVM runtime performance improvements in Java 25, right?
Correct. Compile your Kotlin to Java 24 bytecode, then run it on Java 25.
Tbh, I feel like Java versions matter very little for Kotlin, since Kotlin language features aren’t tied to the Java version. You might as well keep using Java 1.8 for Kotlin. xD
Yeah, right. But it’s tricky to keep things working fine when you have source compatibility properties and JvmTarget classes all over the place.
Ideally, supporting Java 25 will avoid workarounds during development, building and deployment.
Ideally, this is much needed because currently, nto having the 25 support is like giving someone a problematic feeling that something is not right. a small thing to fix to make a lot of people happy in being able to utilize the latest kotlin with latest java LTS.
Starting with Kotlin 2.3.0-Beta2, the compiler can generate classes containing Java 25 bytecode.