Vaadin Flow 24.5.1
Changes since 24.5.0
New features
- Enable easier override for SpringServlet (#20276)
Commit · Pull request · Issue
Fixes
-
Use capture for dragLeave (#20291)
Commit · Pull request -
Support client route parameters in auto layout path matching (#20284)
Commit · Pull request · IssueImproves navigation path matching with client route templates. Adds support for matching with route parameters to find automatic Flow main layout for client routes.
-
Check for client route conflicts (#20188)
Commit · Pull request · Issue -
Clear CurrentInstance before invoking new session tasks (#6349) (#20255)
Commit · Pull request · IssueCommands enqueued by VaadinSession.access() in general have nothing to do with each other. The only thing they have in common is they share the same VaadinSession (and, by implication, VaadinService). Therefore, if command №1 invoked UI.setCurrent() and command №2 invokes UI.getCurrent(), command №2 should read null, not the random UI from command №1 that it has nothing to do with.
-
Prevent possible error on embedded component disconnect (#20260)
Commit · Pull request