Changes since 24.1.3
Fixes
-
Prevent writing service worker on filesystem in dev mode (#17155)
Commit · Pull requestWhen running in dev mode, the service worker should be served from memory and not written to the filesystem, to avoid potential endless restarts when Spring dev tools are in use. This change fixes a regression introduced when service worker compression was implemented, that causes sw.js to be written to the filesystem also in dev mode.
-
Prevent PWA registry lookup when VaadinServlet is not initialized (#17158)
Commit · Pull request · IssueWhen Java hot reload is enabled, it is possible that VaadinServlet will receive requests even if its destroy method has been invoked. When this happens, getting the PWA registry may fail with an NPE because of VaadinServlet optimizations for servlet initialization. This change prevents getting the PWA registry if the VaadinServlet is not initialized or has been destroyed
-
Use dark color scheme for dev tools (#17160)
Commit · Pull request -
Report exception if filewatcher fails to start (#17161)
Commit · Pull requestRelated to #17159