Skip to content

Vaadin Flow 24.6.0.rc1

Pre-release
Pre-release
Compare
Choose a tag to compare
@vaadin-bot vaadin-bot released this 11 Dec 13:04
· 9 commits to 24.6 since this release
60a9597

Changes since 24.6.0.beta8

All changes

Fixes

  • Fix redirect URL for PUSH with websocket transport (#20666)
    Commit · Pull request · Issue

  • Appended path on fast navigate (#20673)
    Commit · Pull request · Issue

    When navigating in quick succession check that path starts with / as else react wll append to current url.

  • Complete client websocket future on open (#20587)
    Commit · Pull request · Issue

    Completing the websocket future in onOpen event prevents the connection to hang indefintely when application run on low resources.

  • Wrap UI closing to catch exceptions (#20645)
    Commit · Pull request · Issue

    When session destroy is triggered, wraps each UI close/detach to catch exceptions, making sure session destroy listeners are called.

  • Prevent generated pwa icons to be added to manifest (#20639)
    Commit · Pull request

    Generated PWA icons are served at runtime by PwaHandler, that also takes care of adding a subset of them to the web manifest for caching. However, the Vite inject-manifest-to-sw plugin adds all generated icons to the manifest with /pwa-icons path prefix making them pre-cached by the browser and potentially breaking pre-defined security rules. This change prevents generated icons to be added to the manifest, preserving the previous behavior.