Skip to content

Vaadin Flow 2.7.12

Compare
Choose a tag to compare
@vaadin-bot vaadin-bot released this 23 Feb 20:13
· 60 commits to 2.7 since this release

Changes since 2.7.11

All changes

Fixes

  • Get boolean only if eventData has the key (#13021)
    Commit · Pull request

  • Cleanup url before resolving resource path in css-loader (#13005)
    Commit · Pull request

    URLs in CSS may contain a query string or fragment, that prevents a correct resolution of resource real path and, consequently, its inclusion in the output bundle. An example of this kind of url are SVG Fragment Identifiers, such ones in fontawesome css: url("../webfonts/fa-solid-900.svg#fontawesome") When this URL is present on CSS file, the svg file will not be available at runtime. With this change, incoming URLs are cleaned up by removing potential query string and fragment before resolving the real path against filesystem.