Skip to content

Vaadin Flow 23.3.14

Choose a tag to compare

@vaadin-bot vaadin-bot released this 26 Jun 10:43
· 72 commits to 23.3 since this release
97a5971

Changes since 23.3.13

All changes

Fixes

  • Store LastSeenServerSyncId in atmosphere resource session (#16996)
    Commit · Pull request

    Storing the header value in AtmosphereResource session should prevent issues with long polling and servlet container that recycles requests. This change stores in the resource session the value got from client during connection so that it will be available even if the underliyng request gets nullified. Part of #16968 Part of #16775

  • Add detach listener callback once for pending invocations
    Commit · Pull request · Issue

    Currently, 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.