dlehammer commented on issue #14703: URL: https://github.com/apache/grails-core/issues/14703#issuecomment-3448660694
Hi Grails enthusiasts, In celebration of the long-awaited [Grails 7 release](https://grails.apache.org/blog/2025-10-18-introducing-grails-7.html), I thought I'd revisit this old issue. ``` $ grails -version | Grails Version: 7.0.0 | JVM Version: 21.0.8 ``` Executing "Steps to Reproduce" for Grails 7 produces the following output 1. create a Grails app ``` ~$ grails create-app my-app | Application created at /home/name/my-app ``` 2. commit `create-app` to version control, ex. using Git. ``` my-app$ git init my-app$ git add . my-app$ git commit --message="grails create-app my-app" ``` 3. execute a Gradle/Grails command, ex. `-version` where side-effects are unexpected ``` my-app$ ./grailsw -version Updating Grails wrapper, allowed versions to update to are [RELEASE]... ... 96% (33.33 MiB/s) ...Moving remotely downloaded jar to: /home/dleh/.grails/wrapper/7.0.0/grails-cli-7.0.0-all.jar Updated wrapper to version: 7.0.0 | Grails Version: 7.0.0 | JVM Version: 21.0.8 ``` 4. symptom present **?** ``` my-app$ git status On branch master nothing to commit, working tree clean ``` Closing issue, as the previous undesired side-effect isn't present 🤓 -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: [email protected] For queries about this service, please contact Infrastructure at: [email protected]
