Changes since 24.7.0.alpha5
New features
-
Queue message payloads
Commit · Pull request · IssueAdd sent payloads to message queue and resend if no response to message inside MaxMessageSuspendTimeout format server clear queue for push messaging.
-
Add interfaces for CRUD services
Commit · Pull request · IssueSimilar interfaces were previously in Hilla but are equally useful in Flow applications
Fixes
-
Fix setReadonly when using binder with records
Commit · Pull request · IssueWhen Binder is used with record, calling setReadonly method does not have any effect because the logic only considers bindings with a proper setter. This change fixes the setReadonly logic to take care of all bindings when Binder is using a record.
-
Make route config errors more prominent
Commit · Pull request · IssueWhen route configuration errors happen, make sure to output the actual error message as the first output at ERROR level. When this is detected at startup, we can't prevent printing out the stack trace too since the container does that when initialization throws. Also checked all the messages for different route misconfiguration cases, and they seem to be fine.
-
Store the exception and not an array with the exception for uncaught promise exceptions
Commit · Pull request