Skip to content

Vaadin Flow 24.3.0.alpha4

Pre-release
Pre-release

Choose a tag to compare

@vaadin-bot vaadin-bot released this 09 Nov 07:19
· 2801 commits to main since this release
284cdf7

Changes since 24.3.0.alpha3

All changes

New features

  • Reuse the production bundle if no changes
    Commit · Pull request · Issue

    Makes a copy of the production bundle in src/main/bundles/prod.bundle zip file to make it possible to reuse it without recreating same unchanged bundle again. When prod.bundle exists, it will be used as a primary source for stats.json file.

  • Use devBundle from build folder
    Commit · Pull request · Issue

    Move devBundle to build folder and create a single compressed file for devBundle that can be committed into the versioning system.

Fixes

  • Make TypeScriptBootstrapModifier work when building with Maven/Gradle
    Commit · Pull request

  • Sync property change properly using debouncer
    Commit · Pull request · Issue

    Previously, following events caused the first property change command to never run because the first command was cancelled in favor for the new command. New command is always a NO_OP due to the property not being changed again in this use case (#17931, it was detected as changed already for the first command). This change has effect only when using TRAILING debounce phase (default).

  • Do not try to write readme if no compression
    Commit · Pull request

    When not compressing the devBundle skip writing of readme.md as folder doesn't exist.

  • Expose Properties in VaadinFlowPluginExtension
    Commit · Pull request