Skip to content

Vaadin Flow 23.3.19

Choose a tag to compare

@vaadin-bot vaadin-bot released this 12 Sep 08:39
· 46 commits to 23.3 since this release
18fa914

Changes since 23.3.18

All changes

Breaking changes

  • Use servlet context path as the default logout url
    Commit · Pull request · Issue

    With a root mapped servlet, this changes nothing. For a servlet with a context path, it assumes that you have the whole application in that context and logging out should take you to the root of that application.
    This is a breaking change for applications where you want the logout path to be / even if Vaadin is deployed as /something and you then need to set the logout path explicitly to / with VaadinWebSecurity::setLoginView(http, LoginView.class, "/");

Fixes

  • Check for null resolvedPath (#17587)
    Commit · Pull request

    Check that resolvedPath is not null.

  • Forward to should update url (#17576)
    Commit · Pull request · Issue

    Forward to should run even when targeting same target but with another URL

  • Check for null when handling exception (#17542)
    Commit · Pull request · Issue

    For errors in beforeClientResponse handle cases where any part to the errorHandler is null

  • Update UI if custom errorHandler (#17504)
    Commit · Pull request · Issue

    Enable update of UI for beforeClientResponse execution when a custom ErrorHandler is set.

  • Update atmosphere version
    Commit · Pull request

    Update atmosphere version to next release. Closes #17326