Vaadin Flow 24.6.0.rc1
Pre-releaseChanges since 24.6.0.beta8
Fixes
-
Fix redirect URL for PUSH with websocket transport (#20666)
Commit · Pull request · Issue -
Appended path on fast navigate (#20673)
Commit · Pull request · IssueWhen 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 · IssueCompleting 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 · IssueWhen 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 requestGenerated 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.