Changes since 23.2.0
New features
-
Log why Vite recompiles using debug level and a separate logger (#14489)
Commit · Pull requestMakes it more clear why Vite recompilations happens and helps to debug related anomalies.
Fixes
-
Set load-on-startup for automatically registered Vaadin servlet (#14501)
Commit · Pull requestWhen using Vite, DevModeInitializer blocks dev-server startup until a VaadinServlet is deployed because it needs to get the servlet path to use. If the container lazily loads servlets, Vite will not start until the first HTTP request for the Vaadin servlet is received. This change sets load-on-startup feature for automatically deployed Vaadin servlet, to ensure that the servlet and Vite are loaded on the startup of the Web application Part of #14479
-
Hide elements with 'hidden' attribute via CSS (#14496)
Commit · Pull request · IssueAdds a global CSS to the page to always apply display: none to the elements with hidden attribute. Needed for Component:setVisible to work properly.
-
Add ?inline for CSSimports so they do not end up in the document
Commit · Pull request · Issue -
Make Lit import rewrites lazy
Commit · Pull requestThe import rewrites must only match one row and not a similar import on the following row