Hi all, we updated to the latest version and everything works smoothly.
A minor issue that we observed is that we get a lot of warning messages from DefaultActionMapper#cleanupActionName that our action didn't match the allowed names Our actions are named using camelCase e.g smsNotification, which I imagine is not unusual. The current regular expression used to match actions is "[a-z]*[A-Z]*[0-9]*[.\\-_!/]*" which doesn't allow camelCase. I think the authors meant something closer to [a-zA-Z0-9]*[.\\-_!/]* we have changed it through the constant and eliminated the warnings, so I'm just sending it as a suggestion. Regards, Antonios