From 41c24540d26f7354a720ad1e23b4e7d4e4a32a4f Mon Sep 17 00:00:00 2001 From: puneetbehl Date: Mon, 13 Feb 2023 19:11:34 +0000 Subject: [PATCH 1/2] Release v5.2.6 docs --- gradle.properties | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gradle.properties b/gradle.properties index 135b280aac..d661b028b4 100644 --- a/gradle.properties +++ b/gradle.properties @@ -1,4 +1,4 @@ -grails.version=5.2.5 +grails.version=5.2.6 githubSlug=grails/grails-doc githubBranch=master springBootVersion=2.5.2 From 18c8edc3a1f2c80b50d4b0cbfe6ff74b5e292c7c Mon Sep 17 00:00:00 2001 From: Z i c e c k Date: Mon, 8 May 2023 00:18:16 -0600 Subject: [PATCH 2/2] Update Grails version & add Gradle 7.2 (#854) grailsVersion=5.2.0 instead of grailsVersion=5.1.1 Add information about update Gradle version in Grails 5. --- src/en/guide/upgrading/upgrading40x.adoc | 21 ++++++++++++++++++++- 1 file changed, 20 insertions(+), 1 deletion(-) diff --git a/src/en/guide/upgrading/upgrading40x.adoc b/src/en/guide/upgrading/upgrading40x.adoc index 73c13cc639..193782e72b 100644 --- a/src/en/guide/upgrading/upgrading40x.adoc +++ b/src/en/guide/upgrading/upgrading40x.adoc @@ -6,7 +6,7 @@ You will need to upgrade your Grails version defined in `gradle.properties` as: .gradle.properties ---- ... -grailsVersion=5.1.1 +grailsVersion=5.2.0 ... ---- @@ -38,6 +38,25 @@ gormVersion=7.2.0 ... ---- +### Bump up gradle version + +Grails 5.2.x uses gradle 7.2 + +[source, properties] +.gradle-wrapper.properties +---- +... +distributionUrl=https\://services.gradle.org/distributions/gradle-7.2-bin.zip +... +---- + +Also you can run this command + +[source, properties] +---- +./gradlew wrapper --gradle-version 7.2 +---- + ### GORM for MonogDB Sync Driver The GORM for MongoDB is updated to support latest mongodb-driver-sync. If you are using GORM for MongoDB and doing something specific to MongoDB Driver or low level Mongo API then you might want to take a look at https://mongodb.github.io/mongo-java-driver/4.0/upgrading/[Upgrading to the 4.0 Driver]