Skip to content

Releases: apache/grails-core

Grails 2.1.3

16 Jan 10:18
Compare
Choose a tag to compare

Grails 2.1.2

16 Jan 10:15
Compare
Choose a tag to compare

Grails 2.1.1

16 Jan 10:12
Compare
Choose a tag to compare

Grails 2.1.0

16 Jan 10:10
Compare
Choose a tag to compare

Grails 2.0.4

16 Jan 10:05
Compare
Choose a tag to compare

This release contains bug fixes and improvements.

For information about Grails 2.0 see the following links:

For information about Grails 2.0 see the following links:

v2.0.3

16 Jan 10:02
Compare
Choose a tag to compare

This release contains bug fixes and improvements.

For information about Grails 2.0 see the following links:

For information about Grails 2.0 see the following links:

Grails 2.0.2

16 Jan 09:59
Compare
Choose a tag to compare

This release contains bug fixes and improvements.

In addition there are important improvements to data binding. See Jeff's blog on the topic for details.

In Grails 2.0.2 the data binding mechanism will by default exclude all properties which are static, transient or dynamically typed. You may need to specify "bindable:true" in your constraints block in order to upgrade. Example presented below:

 class User {
     String email
     String passwordHash

     static transients = ['password']

     def setPassword(password) {
         passwordHash = email + password
     }
     static constraints = {
         password bindable:true
     }
 }

For information about Grails 2.0 see the following links:

For information about Grails 2.0 see the following links:

Grails 1.3.8

16 Jan 09:34
Compare
Choose a tag to compare

For information about Grails 1.3.8, see the following links:

Grails 2.0.1

16 Jan 09:56
Compare
Choose a tag to compare

Release Information

This release contains bug fixes and improvements.

For information about Grails 2.0 see the following links:

Grails 2.0.0

16 Jan 09:53
Compare
Choose a tag to compare