0

According to the Grails project homepage version 3.3.4 is the latest release of Grails.

There are release notes for this release too but the refer to a GitHub milestone that contains no issues.

Does anyone know what in this latest release?

saw303
  • 8,051
  • 7
  • 50
  • 90

1 Answers1

0

The only change appears to be in how request params are included when redirecting:

https://github.com/grails/grails-core/compare/v3.3.3...v3.3.4

Original params are no longer included when redirecting from a controller action.

It's odd that there was no issue linked for that though!

Summarizing for simplicity per comments below with Jeff: nothing is actually fixed in 3.3.4. There were changes to fix one particular issue but they did not work and will instead be included as a fix in 3.3.5.

Daniel
  • 3,312
  • 1
  • 14
  • 31
  • 1
    "It's odd that there was no issue linked for that though!" - there is an issue linked for that. – Jeff Scott Brown Apr 16 '18 at 17:37
  • https://github.com/grails/grails-core/milestone/202?closed=1 shows issues closed in 3.3.4. Linked from: https://github.com/grails/grails-core/releases/tag/v3.3.4 Am I missing one? I do use these when deciding when to upgrade so if I'm not seeing the right links, I'd love to know where they are! – Daniel Apr 16 '18 at 18:13
  • Daniel - the reason the issue doesn't show up there is it was re-opened because it isn't fixed in 3.3.4 as was originally thought. It has been moved to 3.3.5. The issue is linked in the commit message that is included in the list of commits you will see at the link described in the answer above. – Jeff Scott Brown Apr 16 '18 at 19:13
  • The issue is https://github.com/grails/grails-core/issues/10965 and that is linked from the commit message at https://github.com/grails/grails-core/commit/aae76f4b58b30352ad4431f2b42bb29a1804b66f. – Jeff Scott Brown Apr 16 '18 at 19:15
  • Yep, I missed that. Thanks for the link! Is there any particular reason that's not in the release notes/closed issues/etc. for 3.3.4? I would have completely overlooked that if not for this question and your comments. – Daniel Apr 16 '18 at 19:46
  • " Is there any particular reason that's not in the release notes/closed issues/etc. for 3.3.4?" - Yes. It isn't fixed in 3.3.4. – Jeff Scott Brown Apr 16 '18 at 20:21
  • As I said in a comment above, it isn't fixed in 3.3.4 as was originally thought. It has been moved to 3.3.5. – Jeff Scott Brown Apr 16 '18 at 20:21
  • Well that explains the confusion then! Thanks again for clarifying. – Daniel Apr 16 '18 at 20:22