Skip to content

Vaadin Flow 24.5.1

Compare
Choose a tag to compare
@vaadin-bot vaadin-bot released this 23 Oct 12:24
· 79 commits to 24.5 since this release
e15bb33

Changes since 24.5.0

All changes

New features

Fixes

  • Use capture for dragLeave (#20291)
    Commit · Pull request

  • Support client route parameters in auto layout path matching (#20284)
    Commit · Pull request · Issue

    Improves 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 · Issue

    Commands 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