Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 10 additions & 0 deletions grails-doc/src/en/guide/upgrading/upgrading60x.adoc
Original file line number Diff line number Diff line change
Expand Up @@ -62,6 +62,16 @@ In your gradle file, you can force a dependency upgrade via this code:
}
----

5. By default, Groovy 4 switches away from callsite optimizations and uses invokedynamic instead. This can result in performance regressions compared to Grails 6. Groovy 5 will remove the ability to disable invokedynamic, but to disable it for Groovy 4, modify your `build.gradle` to include the following:

[source,groovy]
.build.gradle
----
tasks.withType(GroovyCompile).configureEach {
groovyOptions.optimizationOptions.indy = false
}
----

==== 3. Unified Project Version

Grails 7 moved to a mono repository.
Expand Down
Loading