github vaadin/platform 25.1.0-beta1
Vaadin 25.1.0-beta1

pre-release4 hours ago

Upgrading · Docs · Get Started

This is a pre-release for the Vaadin 25.1. We appreciate if you give it a try and report any issues you notice. You can get this version from Maven Central directly.

Notable Changes in Vaadin 25.1

1. UI State Management with Signals (Flow)

Vaadin 25.1 introduces Signals to handle UI state in Flow. This enables cleaner code with a single source of truth for each component property.

Versatile Signal Types

Signal instances hold UI state values and automatically track which components need updating when a signal value changes.

  • Local signals: For a view’s or component’s internal state.
  • Shared signals: For sharing state with other users in real time.
  • Computed signals: For deriving values based on other signals.

Signal Bindings

New bindXyz methods are available for all components to automatically update properties based on signal changes. Examples include:

  • Generic features: bindVisible
  • Component-specific properties: bindMin in Date Picker
  • Two-way bindings: bindValue for all input fields

2. New UI Components (Preview)

Note

These components are preview releases and can be enabled using feature flags.

Slider & RangeSlider

New slider input components for selecting:

  • A single value (Slider)
  • Two values from a range (RangeSlider)

Badge

A new component for displaying statuses and notification indicators. Visual variants include:

  • Icon-only, Number-only, and Dot
  • Multiple color options

AI Integration

New Flow features for integrating AI-powered functionality into Vaadin apps:

  • AIOrchestrator: Manages interactions between UI components and LLMs.
  • LLM Providers: Out-of-the-box implementations for Spring AI and LangChain4j.

Upload Components

New standalone components for flexible file upload UIs:

  • UploadButton
  • UploadDropZone
  • UploadFileList (includes a thumbnail-bar style variant)

3. Aura Theme Enhancements

The new Aura theme, introduced in V25, receives major updates in this beta, including previously missing component style variants and a refreshed default color palette.


4. Component Enhancements

Common Variant Entries

Component style variants that work in both Aura and Lumo themes now have common, unprefixed entries in the *Variant classes.

  • Example: ButtonVariant.PRIMARY

Key Updates by Component

Component New Feature / Improvement
Message List Support for file attachments and automatic "snap to bottom" scrolling.
Map Support for drawing lines and a configurable scale indicator.
Spreadsheet Support for text colors in custom number formats.
Dialog New keepInViewport option to prevent dragging outside the visible area.
Grid New scrollToColumn API.

5. 🎨 Major Vaadin Copilot Redesign

Vaadin Copilot has been completely overhauled with a streamlined look and improved workflow.

New Toolbar & Working Modes

The traditional Vaadin button and drawers have been replaced with a modern toolbar featuring four operational modes:

  • Play Mode: Copilot is idle and does not affect the running application.
  • Inspect Mode: Read-only tools for inspecting application structure.
  • Test Mode: Tools for accessibility checks and UI test generation.
  • Edit Mode: Drag-and-drop UI modification, copy-paste, and AI-powered features.

Redesigned Panels & Settings

  • Modern Aesthetic: Most internal panels now feature a consistent look for improved usability.
  • Settings Panel: Copilot is now customizable via a new dedicated Settings interface.

Expanded Access

All premium features—including source code manipulation and AI—are now available to any user with an active Vaadin.com account. Users simply need to log in via the toolbar to unlock these capabilities.

Changelogs

Official add-ons and plugins:

Supported technologies

Desktop browser
  • Chrome (evergreen).
  • Firefox (evergreen).
    • Firefox Extended Support Release (ESR).
  • Safari 17 or newer (latest minor version in each major series).
  • Edge (Chromium, evergreen).
Mobile browser
  • Chrome (evergreen) for Android (4.4 or newer).
  • Safari 17 for iOS or newer (latest minor version in each major series).
Development OS
  • Windows
  • macOS
  • Linux
IDE

Any IDE or editor that works with the language of your choice should work well. Our teams often use IntelliJ, Eclipse, VS Code among others.

Vaadin IDE plugins (IntelliJ and VS Code) support the IDE versions released during the last 12 months

Vaadin Designer supports the following IDEs (Note, Vaadin Designer has been deprecated since Vaadin 25):

  • Eclipse from Photon and upwards

  • JetBrains IntelliJ IDEA from 2017 upwards

Java Version 21 of any JDK or JRE
Maven Version 3.8 or newer
Gradle Version 8.14 or newer
Application server

Vaadin Flow requires Java Servlet API 6.1 and Java 21 or newer. It is tested on:

  • Apache Tomcat 11

  • Open Liberty 23

  • RedHat JBoss EAP 8.1

    • To work with RedHat JBoss EAP 8.0, the following content needs to be added under WEB-INF folder as jboss-deployment-structure.xml
    Workaround for supporting RedHat JBoss EAP 8.0
     <jboss-deployment-structure>
       <deployment>
         <exclude-subsystems>
           <subsystem name="jaxrs" />
         </exclude-subsystems>
       </deployment>
     </jboss-deployment-structure>
  • WildFly 36 +

    • WildFly 39 is compatible with Vaadin 25. But WildFly 36.x, 37.x, 38.x are using a conflict version of Jackson 2, in order to work with Vaadin 25, the following content needs to be added under WEB-INF folder as jboss-deployment-structure.xml
    Workaround for supporting WildFly 36
     <jboss-deployment-structure>
       <deployment>
         <exclude-subsystems>
           <subsystem name="jaxrs" />
         </exclude-subsystems>
       </deployment>
     </jboss-deployment-structure>
    Workaround for supporting WildFly 37-38
     <jboss-deployment-structure>
       <deployment>
         <exclusions>
             <module name="com.fasterxml.jackson.core.jackson-annotations"/>
         </exclusions>
       </deployment>
     </jboss-deployment-structure>
  • Jetty 12

  • Payara Server 6

  • Payara Micro 6

Node.js Version 24
Spring Boot Version 4.0
Quarkus latest LTS (3.27) or newer

Don't miss a new platform release

NewReleases is sending notifications on new releases.