Skip to content

Releases: apache/grails-core

Grails 3.1.6

28 Apr 14:09

Choose a tag to compare

Release Notes

Hibernate 5.1

This release includes GORM 5.0.5 which includes support for Hibernate 5.1

Plugin Application Classes

The Application class of plugins should now implement the grails.boot.GrailsPluginApplication interface to avoid an issue where duplicate ApplicationLoader classes are generated. See issue #9904 for reference.

Grails 3.0.17

28 Apr 13:20

Choose a tag to compare

Grails 3.1.5

14 Apr 14:15

Choose a tag to compare

Grails 3.0.16

14 Apr 13:40

Choose a tag to compare

Grails 3.1.4

16 Mar 17:12

Choose a tag to compare

Grails 3.1.3

03 Mar 09:01

Choose a tag to compare

Grails 2.5.4

03 Mar 08:28

Choose a tag to compare

Grails 3.1.2

01 Mar 16:44

Choose a tag to compare

Grails 3.0.15

01 Mar 16:08

Choose a tag to compare

Grails 3.1.1

04 Feb 12:50

Choose a tag to compare

Release Notes

Subproject reloading of plugins is now available when plugins are declared in the new plugins block:

grails {
    plugins {
        compile ":hibernate"
        compile project(':myplugin')
    }
}

When running your application with grails run-app the plugin myplugin will be reloadable. See Graeme's blog post for more information.