github grails/grails-core v3.2.8
Grails 3.2.8

latest releases: v6.2.0, v4.1.4, v6.1.2...
7 years ago

Release Information

Quick Links

Release Notes

Groovy 2.4.10

This release includes Groovy 2.4.10, which has been used to build the latest version of Grails and GORM. Groovy 2.4.10 should be compatible with all existing compiled code, however some source code may need to be adjusted as static compilation is more strict in Groovy 2.4.10.

Asset Pipeline Dependency

If you get a resolve error for the org.grails.plugins:asset-pipeline you should replace it with the following dependency in build.gradle:

runtime "com.bertramlabs.plugins:asset-pipeline-grails:2.14.1"

Easily Configure the version of GORM

You can now easily configure the version of GORM to use via the gormVersion setting in gradle.properties. For example to use GORM 6.1 RC2 simply define:

gormVersion=6.1.0.RC2

GORM Reactor Events Disabled for New Applications

New applications created with Grails 3.2.8 have autowiring of entities and reactor events disabled by default due to the performance impact these features have. You can re-enable these as needed in application.yml:

---
grails:
    gorm:
        autowire: true # enable autowiring
        reactor:
            events: true #enable reactor events

Don't miss a new grails-core release

NewReleases is sending notifications on new releases.