Vaadin Flow 7.0.0.alpha5
Changes in Flow from 7.0.0.alpha4
-
Fixes:
-
⧉ Do not use hardcoded target directory. PR:10569. Ticket:10335
Any code writing to the build directory should not depend on a hardcoded
target
directory. For instance, Gradle usesbuild
and it may be configured also in Maven. -
⧉ Store spring csrf to bootstrap page. PR:10577
Stores spring CSRF token into meta tags into the bootstrap page, which is used for
login()
andlogout()
helpers. It has the benefit that login and logout are now Spring CSRF protected, we no longer need to ignore Spring CSRF protection for login likehttp.csrf().ignoringAntMatchers("/login");
-