Skip to content

Vaadin Flow 24.1.6

Choose a tag to compare

@ZheSun88 ZheSun88 released this 08 Aug 13:20
· 3271 commits to main since this release
6383247

Changes since 24.1.5

All changes

Fixes

  • Upgrade pnpm version to latest 8.6.11
    Pull request

  • Reject emails with double dot between domain and tld (#17353)
    Commit · Pull request · Issue

    This changes updates the validation pattern of an email address by invalidating the dot-dot in the domain name. The pattern is now public, in order to reference it in EmaiField and remove duplicate code

  • Prevent adding query string for empty parameters in router link href (#17290)
    Commit · Pull request · Issue

    When an empty query parameters object is given to a RouterLink the computed href contains an empty query string. This change prevents the addition of the query string to the href attribute when query parameters object is empty. It also fixes parsing to return an empty query parameters object for blank string.

  • Handle spring boot relative path for static resource (#17305)
    Commit · Pull request · Issue

    StaticFileServer fails to handle missing static resources on Linux when relative paths are used to configure Spring Boot static locations for resources. This change checks that the resource effectively exists and converts relative path to abdsolute form if required.

  • Update jandex-maven-plugin for JDK 21 (#17291)
    Commit · Pull request

  • Pre-compile visitable classes regex pattern (#17280)
    Commit · Pull request

    Pre compiles the regex pattern to improve build frontend performance during the bytecode scan and collection of reachable classes. Also adds some package exclusions for well knonw libraries that should not be visited. Part of #17234