Skip to content

Releases: vaadin/flow

Vaadin Flow 24.8.0.alpha5

03 Apr 17:22
0ea9cf2
Compare
Choose a tag to compare
Pre-release

Changes since 24.8.0.alpha4

All changes

New features

  • Enable preserving partial view chain
    Commit · Pull request

    Make it possible to reuse only parts of the preserve on refresh chain instead of the full chain.

Vaadin Flow 24.8.0.alpha4

01 Apr 06:56
3b5a359
Compare
Choose a tag to compare
Pre-release

Changes since 24.8.0.alpha3

All changes

New features

  • Support scanning configuration in maven plugin
    Commit · Pull request · Issue

    Allows to fine tune scanning for frontend resources by defining inclusion and exclusion rules in the flow maven plugin configuration.

Fixes

  • Align npm package order between full and annotation scanners
    Commit · Pull request

    Using HashSet for the AtNpmPackage annotation values results in unreliable order. build-frontend has unexpected alpha5 version picked over before alpha4, whereas prepare-frontend is using alpha4 chosen by FQN sorted class order.

Vaadin Flow 24.6.9

02 Apr 09:47
09c1dfa
Compare
Choose a tag to compare

Changes since 24.6.8

All changes

Fixes

  • Prevent hot-reload failure caused by prepare-frontend task (#21174)
    Commit · Pull request · Issues 20831, 19748

    If the prepare-frontend task is invoked while the Vaadin application is running, it may happen that some generated files are mistakenly removed, causing the frontend compilation to fail and sometimes an infinite reload loop. This happens, for example, in Hilla projects based on Gradle and IntelliJ IDEA: when the IDE compiles a class, it runs Gradle, and the vaadinPrepareFrontend task is executed. Some generated files are then deleted for two reasons: Hilla is not detected because the check is done during the Gradle configuration phase, and it uses the plugin class loader, which does not have references to the project dependencies. The TaskRemoveOldFrontendGeneratedFiles is executed, but it fails to compare non-normalized paths. This change fixes the two issues by detecting Hilla from the project dependencies and normalizing paths before comparison. (cherry picked from commit 5fe0e3b)

  • Renavigation to same url (#21170)
    Commit · Pull request · Issue

    After initial navigation to same route when using postpone.

  • Add global click handler for navigation (#20990)
    Commit · Pull request · Issue

    When using React router, clicks on anchors are intercepted only if Flow client has been initialized. In Hilla or hybrid application, if a Flow view is never navigated, clicking on such links cause the browser to reload the page instead of navigating to the expected view. This change registers a global click handler that intercepts click events and triggers a router navigation if necessary. The new behavior is aligned with vaadin-router.

Vaadin Flow 24.8.0.alpha3

26 Mar 07:57
45e8735
Compare
Choose a tag to compare
Pre-release

Changes since 24.8.0.alpha2

All changes

New features

  • Allow forcing Hotswapper to reload the page
    Commit · Pull request · Issue

    By default, on class change, Hotswapper determines the best strategy to refresh the browser page. However, in some situations, a full page reload may be a better option. This change allows forcing Hotswapper to always trigger a full page reload if the vaadin.hotswap.forcePageReload system property is set to true. In addition, the Hotswapper.forcePageReload() method can be called to change the behavior at runtime instead of setting the system property.

  • ReactAdapter and element to support jackson
    Commit · Pull request

    Have ReactAdapter and elemnt use jackson. AbstractSinglePropertyField to support jackson type. part of #20741 DeaultRpcDecoder now handles elemental and jackson

Fixes

  • Prevent hot-reload failure caused by prepare-frontend task
    Commit · Pull request · Issues 20831, 19748

    If the prepare-frontend task is invoked while the Vaadin application is running, it may happen that some generated files are mistakenly removed, causing the frontend compilation to fail and sometimes an infinite reload loop. This happens, for example, in Hilla projects based on Gradle and IntelliJ IDEA: when the IDE compiles a class, it runs Gradle, and the vaadinPrepareFrontend task is executed. Some generated files are then deleted for two reasons: Hilla is not detected because the check is done during the Gradle configuration phase, and it uses the plugin class loader, which does not have references to the project dependencies. The TaskRemoveOldFrontendGeneratedFiles is executed, but it fails to compare non-normalized paths. This change fixes the two issues by detecting Hilla from the project dependencies and normalizing paths before comparison.

  • Renavigation to same url
    Commit · Pull request · Issue

    after initial navigation to same route when using postpone

  • Clean file-routes if hilla not in use
    Commit · Pull request · Issue

  • Add global click handler for navigation
    Commit · Pull request · Issue

    When using React router, clicks on anchors are intercepted only if Flow client has been initialized. In Hilla or hybrid application, if a Flow view is never navigated, clicking on such links cause the browser to reload the page instead of navigating to the expected view. This change registers a global click handler that intercepts click events and triggers a router navigation if necessary. The new behavior is aligned with vaadin-router.

  • Add allowInert support for synchronized properties
    Commit · Pull request · Issue

Vaadin Flow 24.7.1

26 Mar 14:32
b64d890
Compare
Choose a tag to compare

Changes since 24.7.0

All changes

New features

  • Allow forcing Hotswapper to reload the page (#21157)
    Commit · Pull request · Issue

    By default, on class change, Hotswapper determines the best strategy to refresh the browser page. However, in some situations, a full page reload may be a better option. This change allows forcing Hotswapper to always trigger a full page reload if the vaadin.hotswap.forcePageReload system property is set to true. In addition, the Hotswapper.forcePageReload() method can be called to change the behavior at runtime instead of setting the system property.

Fixes

  • Renavigation to same url (#21170)
    Commit · Pull request · Issue

    after initial navigation to same route when using postpone

  • Clean file-routes if hilla not in use (#21155)
    Commit · Pull request · Issue

  • Add global click handler for navigation (#20990)
    Commit · Pull request · Issue

    When using React router, clicks on anchors are intercepted only if Flow client has been initialized. In Hilla or hybrid application, if a Flow view is never navigated, clicking on such links cause the browser to reload the page instead of navigating to the expected view. This change registers a global click handler that intercepts click events and triggers a router navigation if necessary. The new behavior is aligned with vaadin-router.

Vaadin Flow 24.8.0.alpha2

17 Mar 13:45
ee26a22
Compare
Choose a tag to compare
Pre-release

Changes since 24.8.0.alpha1

All changes

New features

  • Add trees and transactions to signals module
    Commit · Pull request

    Still missing the topmost layer with the actual signal instances. The operation classes are leaking through from that layer even though they don't make much sense without the rest of that layer.

  • Add defaultAutoResponsiveFormLayout feature flag
    Commit · Pull request

    The PR introduces a new feature flag, defaultAutoResponsiveFormLayout, which enables auto-responsive mode for all form layouts by default. Part of vaadin/flow-components#7164

  • WebComponent more Jackson
    Commit · Pull request

    Change more parts of webComponent to use Jackson instead of elemental.

  • Use single scanner for plugin class scan
    Commit · Pull request · Issue

  • Router parts to jackson
    Commit · Pull request

    Use jackson for router and navigation.

  • Internals to jackson
    Commit · Pull request

    Change internal functions to use jackson. part of #20741

  • Jackson used in dev-server
    Commit · Pull request

    Use jackson instead of elemental in the dev-server. part of #20741

  • Add ignore version check to plugin params
    Commit · Pull request · Issue

  • Use jackson for setting up configuration
    Commit · Pull request

    Use jackson for setting up configuration settings. part of #20741

  • Change internal json handling to jackson
    Commit · Pull request

    Change internal json manipulation from elemental to jackson. part of #20741

  • Plugins to use jackson
    Commit · Pull request

    Update plugins to use jackson for json handling. part of #20741

Fixes

  • Ensure exported WebComponent adds absolute links to document.css
    Commit · Pull request · Issues 21120, 19620

    When using a development bundle, WebComponentBootstrapHandler adds a tag to the embedding document that references document.css for all used themes (application and parents). However, the URL is relative to the embedding document instead of being an absolute URL to the CSS resource. Additionally, the tag is added even if the theme does not provide a document.css file, potentially causing 404 errors at runtime. This change ensures that the link URL is calculated based on the request and that it only adds tags for existing CSS files.

  • Set page height to 100% instead of 100vh
    Commit · Pull request

    The PR modifies the page height from 100vh to 100% to prevent the content area from extending underneath the navbar on mobile devices: - body, #outlet { + html, body, #outlet { - height: 100vh; + height: 100%; width: 100%; margin: 0; }

  • Watch active project resources
    Commit · Pull request

  • Use add if not replacing
    Commit · Pull request

    Use add method if not replacing an old value.

  • Constant pool to jackson
    Commit · Pull request

    Use jackson in constant pool UidlWriter to handle response in jackson. Part of #20741

  • Prevent duplicated messages in client queue
    Commit · Pull request · Issue

    Messages sent by the Flow client are queued until the server acknowledges their reception. However, if there's a network fault, the Flow client immediately attempts to resend the message, resulting in duplicates in the queue. This change ensures that the same message is not added to the queue multiple times.

  • Fix equality check in NavigationAccessControl
    Commit · Pull request · Issue

  • Compute client-side feature flag values at runtime
    Commit · Pull request · Issue

    Activating a feature flag in the project does not work when a default bundle is used because the values of the flags sent to the client are hard-coded at bundle build time. Additionally, if a feature flag is active during bundle creation, it remains active on the client side even if the project does not activate it in the vaadin-featureflags.properties file. This change ensures that feature flags in the frontend bundle are always disabled initially and are activated on page load based on the current project settings.

Vaadin Flow 24.7.0

18 Mar 07:05
9f09f62
Compare
Choose a tag to compare

Changes since 24.6.0

All changes

Breaking changes

  • Change minimal supported Node.js from 18 to 20
    Commit · Pull request

    Node.js 20 is the active LTS version. Node.js 18 will be end of life soon and new libraries like React 19 only support Node.js 20+.

New features

  • Fault-tolerant messaging for server-client communication
    Docs · Issue

    Vaadin implements "Fault-tolerance messaging" against message loose due to various network errors by using message buffers on both sides. Server (Flow server) maintains a message buffer for UIDL messages that it sends upon request from browser. Browser (Flow client) maintains a similar message buffer for RPC messages that it sends upon end-user actions. This gives additional safe-guard level in applications on top of standard TCP/IP protocol and helps to avoid UI re-syncs.

    Includes the following commits:

    • Resend payload of reoccurring client request
      Commit · Pull request

      If the client request contains the previous id and exactly the same message content respond with the same payload as previously.

    • Queue message payloads
      Commit · Pull request · Issue

      Add sent payloads to message queue and resend if no response to message inside MaxMessageSuspendTimeout format server clear queue for push messaging.

  • Add support for native image build Quarkus-based applications
    Commit · Pull request

    Adds support for native image build in Quarkus-based application by registering classes for reflection and patching Atmosphere.
    Run mvn package -Pproduction -Dquarkus.native.enabled=true to build a native image, then execute the output file to start the application.

  • Documented common reverse proxy usages
    Docs
    A common guide and recommendations how to start configuring reverse proxy in front of Vaadin application.

  • React 19 support behind a feature flag
    Commit · Pull request

  • Add support for OAuth2 logout configuration
    Commit · Pull request · Issue

    Improves setOAuth2LoginPage method in order to configure an OIDC logout success handler capable of handling redirection for UIDL requests. Post logout URL is by default the application root, but a method overload allows to specify a custom URL.

  • Add IFrame::setSrc(AbstractStreamResource)
    Commit · Pull request

  • Mark full size components with data attribute
    Commit · Pull request

  • Add feature flag for layout improvements
    Commit · Pull request

  • Add accessibleDisabledButtons feature flag
    Commit · Pull request

  • DisabledUpdateMode for ShortcutRegistration
    Commit · Pull request

Code refactoring

Vaadin Flow 24.6.8

18 Mar 07:00
f5306e3
Compare
Choose a tag to compare

Changes since 24.6.7

All changes

Fixes

  • Add allowInert support for synchronized properties (#21119)
    Commit · Pull request · Issue

  • Ensure exported WebComponent adds absolute links to document.css (#21124)
    Commit · Pull request · Issues 21120, 19620

    When using a development bundle, WebComponentBootstrapHandler adds a tag to the embedding document that references document.css for all used themes (application and parents). However, the URL is relative to the embedding document instead of being an absolute URL to the CSS resource. Additionally, the tag is added even if the theme does not provide a document.css file, potentially causing 404 errors at runtime. This change ensures that the link URL is calculated based on the request and that it only adds tags for existing CSS files.

  • Watch active project resources (#21099)
    Commit · Pull request

  • Fix equality check in NavigationAccessControl (#21083)
    Commit · Pull request · Issue

Vaadin Flow 24.5.16

18 Mar 06:05
994675a
Compare
Choose a tag to compare

Changes since 24.5.15

All changes

Fixes

  • Add allowInert support for synchronized properties (#21119)
    Commit · Pull request · Issue

  • Ensure exported WebComponent adds absolute links to document.css (#21124)
    Commit · Pull request · Issues 21120, 19620

    When using a development bundle, WebComponentBootstrapHandler adds a tag to the embedding document that references document.css for all used themes (application and parents). However, the URL is relative to the embedding document instead of being an absolute URL to the CSS resource. Additionally, the tag is added even if the theme does not provide a document.css file, potentially causing 404 errors at runtime. This change ensures that the link URL is calculated based on the request and that it only adds tags for existing CSS files.

  • Watch active project resources (#21099)
    Commit · Pull request

  • Fix equality check in NavigationAccessControl (#21083)
    Commit · Pull request · Issue

Vaadin Flow 24.7.0.rc2

10 Mar 09:16
b293305
Compare
Choose a tag to compare
Pre-release

Changes since 24.7.0.rc1

All changes

Fixes

  • Prevent duplicated messages in client queue (#21103)
    Commit · Pull request · Issue

    Messages sent by the Flow client are queued until the server acknowledges their reception. However, if there's a network fault, the Flow client immediately attempts to resend the message, resulting in duplicates in the queue. This change ensures that the same message is not added to the queue multiple times.

  • Fix equality check in NavigationAccessControl (#21083)
    Commit · Pull request · Issue