Changes since 24.1.1
Fixes
-
Do not create a LiveReload instance in production mode (#17116)
Commit · Pull request · Issue -
Fix native compilation and runtime (#17088)
Commit · Pull request · IssueThis change fixes handling of resource in the native build and register hints for classes required for PWA icon generation at runtime.
-
Copy package-lock from bundle in hotdeploy (#17128)
Commit · Pull requestCopy the package-lock.json from the dev bundle in frontend hotdeploy mode if no package-lock is available. file to temp directory
-
Load theme after other styles in production mode (#17118)
Commit · Pull request · Issue -
Report imports missing from the bundle only once (#17119)
Commit · Pull request -
Ignore pending JS invocations for invisible node in UI dirty check (#17109)
Commit · Pull requestUI dirty check currently takes into account also pending JS invocation for invisible node, that however will not be sent to the client. This change updates the check to only consider JS invocation that should be effectively sent to the browser.
-
Add detach listener callback once for pending invocations (#17092)
Commit · Pull request · IssueCurrently, the detach listener callback is added to pending javascript invocation on every call to dumpPendingJavaScriptInvocations. This change will apply the callback only once, when the pending invocation is seen for the first time.
-
Detect correct protocol in browser launcher (#17094)
Commit · Pull request · IssueDetects correct protocol to use depending on application settings when opening the application in the browser
-
Add slot=label attribute as legit use-case for the deprecated Label (#17089)
Commit · Pull request -
Use correct path in Vite websocket requests (#17071)
Commit · Pull requestWhen the browser is using http://localhost:8888/context/view/VAADIN and Vite is running on http://localhost:60075/context/view/VAADIN/ then the WS proxy request must go to http://localhost:60075/context/view/VAADIN/ and not http://localhost:60075/VAADIN/
-
Do not build bundle size stats for a dev bundle (#17073)
Commit · Pull request