Skip to content

Vaadin Flow 23.3.1

Choose a tag to compare

@vaadin-bot vaadin-bot released this 19 Dec 08:19
· 164 commits to 23.3 since this release
8b49d4c

Changes since 23.3.0

All changes

New features

  • Added method to get authenticate principal name (#15487)
    Commit · Pull request · Issue

    Principal name usually refers to a user identifier that can be used to retrieve additional details.

Fixes

  • Correctly handle URL encoding in routes (#15414) (CP: 23.3)
    Commit · Pull request · Issues 10129, 7454

  • Avoid duplicate JS const declaration on license checker script (#15449)
    Commit · Pull request

    When adding license checker script a global constant name originalCustomElementDefineFn is declared. This produces browser errors in portlet addon, because the script may be added multiple times on the same page. This patch stores the originalCustomElementDefineFn reference under window.Vaadin container and adds a guard to set it only if not already present.

  • Added HasDynamicTitle checking in parent layouts (#15355)
    Commit · Pull request · Issue

    Checks the navigation targets including parent layouts and takes the page title from the one implementing HasDynamicTitle.