Skip to content

Vaadin Flow 24.6.0.alpha1

Pre-release
Pre-release
Compare
Choose a tag to compare
@vaadin-bot vaadin-bot released this 17 Oct 06:20
· 4 commits to main since this release
1937249

Changes since 24.5.0

All changes

Breaking changes

  • Wrap each enum on a separate line when there are many of them
    Commit · Pull request

  • Upgrade minimum supported Gradle version to 8.7
    Commit · Pull request

    Jackson 2.18 is incompatible with Gradle 8.4 because it contains classes compiled with Java 22. This change bumps Gradle minumum supported version to 8.7 that supports Java 22.

New features

  • Add drag image for DragSource
    Commit · Pull request · Issue

    Adds DragSource#setDragImage(ComponentdragImage ) and DragSource#setDragImage(Component dragImage, int offsetX, int offsetY). API is used to set image component as a drag image for drag source component. Follows specification of HTML Drag and Drop API for DataTransfer#setDragImage() method.