Skip to content

Commit 2d0254e

Browse files
committed
Update to Grails 5.2.2
1 parent c2aee42 commit 2d0254e

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

gradle.properties

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
version=2.2.0
2-
grailsVersion=5.2.1
2+
grailsVersion=5.2.2
33
viewsVersion=2.3.2
44
gradleGitPropertiesVersion=2.3.1
55
springBootVersion=2.7.0

src/integration-test/groovy/appgenerator/HomePageSpec.groovy

+2-2
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ class HomePageSpec extends GebSpec {
1313
def "if you select features and change name features changes are not lost"() {
1414
when:
1515
HomePage homePage = to HomePage
16-
homePage.version('5.2.1')
16+
homePage.version('5.2.2')
1717

1818
then:
1919
waitFor { homePage.curl == 'curl -O https://start.grails.org/myapp.zip' }
@@ -43,7 +43,7 @@ class HomePageSpec extends GebSpec {
4343
waitFor { homePage.curl.contains('app.zip') }
4444

4545
when:
46-
homePage.version('5.2.1')
46+
homePage.version('5.2.2')
4747

4848
then:
4949
waitFor { homePage.curl.contains 'curl -O https://start.grails.org/app.zip' }

src/integration-test/groovy/appgenerator/VersionsControllerIntegrationSpec.groovy

+1-1
Original file line numberDiff line numberDiff line change
@@ -53,6 +53,6 @@ class VersionsControllerIntegrationSpec extends Specification {
5353
List<String> versions = result.collect { it.version } as List<String>
5454

5555
then:
56-
versions.containsAll(['5.2.1'])
56+
versions.containsAll(['5.2.2'])
5757
}
5858
}

0 commit comments

Comments
 (0)