github grails/grails-core v2.5.1
Grails 2.5.1

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

Update Notes

Recommended plugin versions

If you are upgrading from previous versions and you use the hibernate4 plugin, you will need to update the version in BuildConfig:

runtime ':hibernate4:4.3.10' // or ':hibernate:3.6.10.19'

recommended tomcat, asset-pipeline, cache and scaffolding plugin versions for Grails 2.5.x :

build ':tomcat:7.0.55.3'
compile ':cache:1.1.8'
compile ':scaffolding:2.1.2'
compile ':asset-pipeline:2.1.5'

For plugins, the recommended release plugin version is 3.1.1:

    plugins {
        build(":release:3.1.1",
              ":rest-client-builder:2.1.1") {
            export = false
        }
    }

If you are using MongoDb GORM, the recommended plugin version is 3.0.3

compile ':mongodb:3.0.3'

Groovy Upgrade

Grails 2.5.1 ships with Groovy 2.4.4 which includes some changes in behavior that may affect some applications. The following JIRA issues describe the changes in behavior.

Change In JSON Behavior

Prior to 2.5.1 something like JSON.parse("{'myList':null}").myList would evaluate to JSONObject.Null because of an implementation leak. In 2.5.1 this has been fixed to evaluate to null.

Don't miss a new grails-core release

NewReleases is sending notifications on new releases.