Skip to content

Vaadin Flow 24.7.6

Compare
Choose a tag to compare
@vaadin-bot vaadin-bot released this 12 May 12:55
· 10 commits to 24.7 since this release
72c1d11

Changes since 24.7.5

All changes

Fixes

  • Prevent potential errors by checking for module.forHMROnly before assignment (#21374)
    Commit · Pull request

  • Prevent file watcher threads from slowing down JVM shutdown (#21365)
    Commit · Pull request

    FileWatcher was using an executor that creates non-daemon threads to watch for file changes. This caused a delay in JVM shutdown, as it would wait at least 60 seconds for all threads in the executor pool to be evicted. This change provides a custom thread factory that creates daemon threads for the executor to prevent JVM shutdown delays.