Skip to content

Releases: grails/grails-core

Grails 3.2.0 RC2

15 Sep 13:53
Compare
Choose a tag to compare

Grails 3.1.11

02 Sep 09:14
Compare
Choose a tag to compare

Grails 3.2.0 RC1

01 Sep 14:36
Compare
Choose a tag to compare

Grails 3.1.10

28 Jul 17:04
Compare
Choose a tag to compare

Grails 3.2.0 Milestone 2

22 Jul 08:14
Compare
Choose a tag to compare

Grails 3.1.9

29 Jun 06:44
Compare
Choose a tag to compare

Release Notes

Integration Test Port

Integration and functional tests now run on a random port instead of the same port as the application by default. This is to avoid port conflict problems when the application is already running. Integration tests that hard code the port will need to be altered to use the serverPort property of tests marked with @Integration

Grails 2.5.5

24 Jun 14:57
Compare
Choose a tag to compare

Grails 3.2 Milestone 1

31 May 13:42
Compare
Choose a tag to compare

Grails 3.1.8

31 May 14:30
Compare
Choose a tag to compare

Grails 3.1.7

19 May 10:16
Compare
Choose a tag to compare

Release Notes

REST API plugin profile

This release includes a new rest-api-plugin profile for creating plugins designed to serve REST APIs:

$ grails create-plugin foobar --profile rest-api-plugin
Hibernate 5.1

This release includes GORM 5.0.6 which includes support for Hibernate 5.1

Plugin Application Classes

The Application class of plugins should now be annotated with grails.plugins.metadata.PluginSource to avoid an issue where duplicate ApplicationLoader classes are generated. See issue #9904 for reference.