Changes since 23.3.18
Breaking changes
-
Use servlet context path as the default logout url
Commit · Pull request · IssueWith 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/
withVaadinWebSecurity::setLoginView(http, LoginView.class, "/");
Fixes
-
Check for null resolvedPath (#17587)
Commit · Pull requestCheck that resolvedPath is not null.
-
Forward to should update url (#17576)
Commit · Pull request · IssueForward to should run even when targeting same target but with another URL
-
Check for null when handling exception (#17542)
Commit · Pull request · IssueFor errors in beforeClientResponse handle cases where any part to the errorHandler is null
-
Update UI if custom errorHandler (#17504)
Commit · Pull request · IssueEnable update of UI for beforeClientResponse execution when a custom ErrorHandler is set.
-
Update atmosphere version
Commit · Pull requestUpdate atmosphere version to next release. Closes #17326