Skip to content

Vaadin Flow 23.3.2

Choose a tag to compare

@vaadin-bot vaadin-bot released this 22 Dec 19:51
· 157 commits to 23.3 since this release
9bb7728

Changes since 23.3.1

All changes

Fixes

  • Session resynchronization for embedded webcomponents (#15421)
    Commit · Pull request · Issue

  • Flush all changes for events that triggers event listeners (#14035)
    Commit · Pull request · Issue

    This patch fixes timing issues that may cause events to happen in wrong order on the server side.

  • Remove Serializable interface from AuthenticationContext (#15497)
    Commit · Pull request

    The component is Serializable because the idea was to potentially inject it into Vaadin views, but this may cause several issues: deserializating views we may end up with many of them Spring beans and we do not provide a simple way to inject them upon deserialization Kubernetes Kit This change removes the implementation of Serializable interface and updates javadocs.

  • Collect changes until UI is not dirty (#15517)
    Commit · Pull request · Issue

    When UidlWriter collects changes to send to the client, it may happen that UI is still dirty because features may enqueue additional changes. As a side effect, if UI is still dirty after UIDL response is written, a useless PUSH action is performed. This change performs changes collection until the UI is no more dirty.