Skip to content

Releases: vaadin/spring

Vaadin Spring Add-on 18.0 for Vaadin 21

06 Sep 18:45
feeba00
Compare
Choose a tag to compare

This is a release version for the Vaadin Spring add-on, built on top of Flow 8.0.0 for Vaadin 21.

New Features since 17.0 (Vaadin 20)

RouteScope implementation

  • With this feature, you can share beans/component-state inside a route between different UI subparts/fragments, so that you can use DI to inject the beans to the route classes and control when state is shared and when cleaned up
  • It is possible to keep your RouteScoped beans to be the same after refresh (together with PreserveOnRefresh)
  • Make it easier for migrating your Vaadin 8 app to Latest.
  • For more information please refer to route scope documentation

Spring Security helpers

  • With improved helpers in vaadin-flow and vaadin-spring, we should make it easier, faster, and safer for Vaadin developers to utilize Spring security in their web apps.
  • For more information please refer to view-based access control documentation.

No changes since 18.0.0.rc2.

List of all changes compared to 17.0

Vaadin Spring Add-on 18.0.0.rc2 for Vaadin 21

27 Aug 15:07
Compare
Choose a tag to compare

This is a pre-release version for the Vaadin Spring add-on, built on Flow 8.0.0.rc2, targeted for Vaadin 21.

No user-facing changes since 18.0.0.rc1.

List of all changes compared to 18.0.0.rc1

19.0.0.alpha1

26 Aug 12:34
91eaefc
Compare
Choose a tag to compare
19.0.0.alpha1 Pre-release
Pre-release

Prerelease for Vaadin 22 on top of Flow 9.0.0.alpha3

To see what is included, take a look at the changes since version 18

Vaadin Spring Add-on 18.0.0.rc1 for Vaadin 21

23 Aug 06:22
Compare
Choose a tag to compare

This is a pre-release version for the Vaadin Spring add-on, built on Flow 8.0.0.rc1, targeted for Vaadin 21.

No user-facing changes since 18.0.0.beta2.

List of all changes compared to 18.0.0.beta2

Vaadin Spring Add-on 18.0.0.beta2 for Vaadin 21

10 Aug 11:39
83bf2f4
Compare
Choose a tag to compare

This is a pre-release version for the Vaadin Spring add-on, built on Flow 8.0.0.beta2, targeted for Vaadin 21.

No user-facing changes since 18.0.0.beta1.

List of all changes compared to 18.0.0.beta1

Vaadin Spring Add-on 18.0.0.beta1 for Vaadin 21

29 Jul 08:36
9a62a4d
Compare
Choose a tag to compare

This is a pre-release version for the Vaadin Spring add-on, built on Flow 8.0.0.beta1, targeted for Vaadin 21.

No changes since 18.0.0.alpha4.

List of all changes compared to 18.0.0.alpha4

Another alpha for Vaadin 21

05 Jul 17:10
9a62a4d
Compare
Choose a tag to compare
Pre-release

Fixes since 18.0.0.alpha3

  • fix: Make all public views available without login (#853)

    Previously only a root mapped ("") view was available. Fixes vaadin/flow#11355

17.0.2 - Maintenance release for Vaadin 20.0

01 Jul 06:25
74858ef
Compare
Choose a tag to compare

Fixes since 17.0.1

  • fix: avoid NPE in SpringApplicationConfigurationFactory (#850) (#852)

Vaadin Spring Add-on 18.0.0.alpha3 for Vaadin 21

25 Jun 08:31
fe05e3d
Compare
Choose a tag to compare

This is a pre-release version for the Vaadin Spring add-on, built on Flow 8.0.0.alpha8, targeted for Vaadin 21.

Bug Fixes since 18.0.0.alpha2 (Vaadin 21)

  • Put and use app context as a servlet context attribute (#740)
  • Avoid NPE in SpringApplicationConfigurationFactory (#850)

List of all changes compared to 18.0.0.alpha2

Vaadin Spring Add-on 17.0.1

07 Jun 10:52
16b7426
Compare
Choose a tag to compare

Vaadin Spring Add-on 17.0.1 is a maintenance release for Vaadin 20.

Fixes since 17.0.0

  • fix: annotate default error handler (#815) (#827)
    • Annotate SpringRouteNotFoundError with DefaultErrorHandler so that users can make custom error views for NotFoundException. Fixes #661
  • fix: put and use app context as a servlet context attribute (#838)
    • Fixes a regression in Vaadin 19 + 20 with Vaadin & SpringMVC applications. This fix was originally done to Vaadin 14 but was not forward ported to latest version until now.