Vaadin Flow 6.0.6
Changes in Flow from 6.0.5
-
Fixes:
-
⧉ Compare file content from stream. PR:10640
Compare jar file content and existing target file content before writing to disk.
-
⧉ Do not override user pinned versions with pnpm. PR:10635. Ticket:9793
Any user defined (package.json / NpmPackage-annotation) versions will not be overridden by based on the platform versions (versions.json file). This means that the users will have to remember to also remove their pins after those are not needed anymore or they will stay on using old versions, which is the same as with Maven overrides.
-
⧉ Include redirectUrl in the return value of login(). PR:10663
It includes the
redirectUrl
in the return value of thelogin()
helper. So that if the user has defined a request cache or a defaultSuccessUrl in the Spring Security configuration, the user can use theredirectUrl
inLoginResult
to redirect instead of maintaining areturnUrl
manually as in the current doc, which also doesn't work when a request cache or a defaultSuccessUrl is configured. -
⧉ Avoid extra events on route reinitialization. PR:10660. Ticket:10636
-
⧉ Cannot login to authentication protected view. PR:10634
The Vaadin security helper now has a request cache by default, which means that if a user tries to access an authentication protected view, the request will be saved and has it as a
redirectUrl
in the response. The logic in thelogin()
helper didn't take this request cache into account. -
⧉ Avoid log an error if frontend tool can't be found. PR:10631. Ticket:9212
-
⧉ Extract theme name from proper folder and skip generated files (#10622). PR:10647. Tickets:10451, 10544
Extracts the custom theme name from frontend generated folder and skips theme handling when the theme generated file is being created/updated.
-
⧉ Upper and lower case drive works in build. PR:10638. Ticket:8959
Update the directory-maven-plugin to not fail the build on windows when the CWD drive letter is lower case.
-