Skip to content

Releases: apache/grails-core

Grails 4.0.5

25 Oct 19:58

Choose a tag to compare

Release Information

Grails 4.1.0.M2

23 Sep 10:03

Choose a tag to compare

Grails 4.1.0.M2 Pre-release
Pre-release

Release Information

Notes

Please update the Grails Testiing Support library manually by defining the following property in gradle.properties file as:

testingSupport.version=2.2.0.M2

Grails 4.0.4

15 Jul 16:58

Choose a tag to compare

Release Information

NOTE:

There a known bug where the GORM version is still pointing to 7.0.7.RELEASE so update the gorm.version in the gradle.properties file as follows:

gorm.version=7.0.7.RELEASE

Grails 4.1.0.M1

21 May 16:59

Choose a tag to compare

Grails 4.1.0.M1 Pre-release
Pre-release

Release Information

Known Issues

Grails 4.1.0.M1 has been shipped with a version of Groovy (3.0.3) that is causing applications to fail to start with Java 8. Please check #11557 for more details about the exception. In order to test this milestone, use Java 11.

Grails 4.0.3

03 Apr 20:37

Choose a tag to compare

Grails 4.0.2

21 Feb 18:49

Choose a tag to compare

Release Information

Hot Reloading with JDK8

Support for spring-loaded was added back for JDK8 #11441. To enable:

build.gradle

dependencies {
    // Remove dev-tools from classpath
    // developmentOnly("org.springframework.boot:spring-boot-devtools") 
    // Add springloaded as a jvm agent
    agent "org.springframework:springloaded:1.2.8.RELEASE"
    // (Optional) Native OSX file watcher
    runtimeOnly "io.methvin:directory-watcher:0.9.6"
    //...
}

NOTE: While spring-loaded continues to function - it has not been actively maintained for years.

Detect spring-dev-tools reload

A flag was added to detect if a restart was due to dev-tools or not

if (Environment.isDevtoolsRestart()) {
    println "Caused By Dev Tools Restart"
} else {
    println "Not A Dev Tools Restart"
}

Updates

  • Spring Boot 2.1.12
  • Update to Micronaut 1.2.9
  • Update to Spock 1.3
  • Add flag to detect when a restart is due to spring-dev-tools or not. #11454

Grails 3.3.11

15 Oct 18:29

Choose a tag to compare

Release Information

Issues fixed

Dependencies upgraded

  • Spring Boot 1.5.22.RELEASE
  • Spring Framework 4.3.25.RELEASE
  • Tomcat 8.5.43

Grails 4.0.1

14 Oct 18:43

Choose a tag to compare

Grails 4.0.0

11 Jul 13:35

Choose a tag to compare

Grails 4.0.0 RC2

04 Jun 15:08

Choose a tag to compare