Changes since 23.1.9
Fixes
-
AbstractDataProvider serialization (#14870)
Commit · Pull request · IssueReplace lambda with anonymous inner class in AbstractDataProvider to fix serialization issue(s). Test available in flow-components project since the issue only happens when the data provider is used with a grid.
-
Synchronize pwa handler on map (#14838)
Commit · Pull requestSynchronize pwa handler on the requestHandlerMap instead of locking the session. Locking and unlocking session may fire a push event that might make the server client sync faulty. touches #14797
-
Locking on FeatureFlags instead of VaadinContext (#13962) (#14741)
Commit · Pull request · IssueOnly lock on FeatureFlags when checking for wrapper and initializing
-
Defer location and query tracking (#14742)
Commit · Pull request · IssueTrack of location and query string after response from server happens too early when handling server side navigation, because history.pushState is executed within a setTimeout. This change defers the tracking to the next event loop cycle in order to get the correct values.
-
Redirect if refresh token is in push response also (#14777)
Commit · Pull request · Issue -
Ignore nonexistent nodes during resync (#14749)
Commit · Pull request · Issues 14232, 14470Ignore changes for nodes that are not available in the tree when a resync is underway. This will get the page to a working condition after a resync as all changes for existing nodes are executed.
-
Attach polymer binding callback to a promise that always resolves (#14729)
Commit · Pull request · IssuePolymer binding callback was attached to the promise returned by customElements.whenDefined, but this promise may never complete if the input element is not a custom element, causing memory leaks on browser because of element capture. This change introduces a new promise that completes either when whenDefined is fulfilled or after a fixed timeout, allowing the garbage collector to clean resources.