:tada: Gradle 8.11 is out! <https://docs.gradle.or...
# releases
c
🎉 7
party gradlephant 18
n
t
It's there now
👍 1
n
Thank you
a
tested on a side project - no problems, fast as well.
t
Ran into a unique issue with just updating to 8.11 on a settings plugin project. Tests via gradle test kit failing with a config cache error that seems entirely new. Guessing it has to do with the
kotlin-dsl
plugin using 2.0.20 now. Error looks like this:
Copy code
Caused by: org.gradle.internal.serialize.codecs.core.OperationException: Exception while loading configuration for :sub-project-7: Could not load the value of field `__buildFusService__` of task `:sub-project-7:compileKotlin` of type `org.jetbrains.kotlin.gradle.tasks.KotlinCompile`.	
at org.gradle.internal.serialize.codecs.core.WorkNodeCodecKt$asBuildOperation$1.run(WorkNodeCodec.kt:636)
Unclear to me if I should try and file an issue against kotlin or against gradle. Tests pass fine if I disable the FUS service via
kotlin.internal.collectFUSMetrics=false
https://youtrack.jetbrains.com/issue/KT-69078/Gradle-Add-option-to-disable-FUS-Service This happens when parallel config cache is enabled or disabled. Smells mostly like an issue between the kotlin plugin and config cache.
p
@TrevJonez, could you please report the issue to us (Gradle) with a reproducer so we can investigate what's the culprit?
t
Should be pretty simple to get a repro going. will post a link back here once its up
thank you 1
p
Perfect, thank you!
s
EDIT: Never mind, the below was a local problem, Gradle 8.11 is fine. I think I have noticed the up-to-date checks of Copy misbehaving. The task wasn’t executed because it was allegedly up to date but the files were not present in the destination directory. I don’t have a reproducer though so I’m not going to report this just yet, but I wanted to get this out there in case somebody else noticed something fishy too.