The release notes from the new version 1.2.3.0 of SpringBot.
Features
No new features were included.
Improvements
- Forms behaviour now has the correct casing for the added attributes
- Both client and server-side now have a number of new protected regions.
- Cookies now set the SameSite attribute in preparation for planned Google Chrome and Firefox updates.
-
npm run buildProd
now is enabled withoptimization
resulting in an approximately 66% reduction in the size of the output static files. - Build budgets have been increased to support larger applications.
- Improved styling options for customising buttons using map variables.
- Various styling maintenance fixes for inputs and crud filter.
- Changes are just loops made to make it easier to customise buttons as easy as changing map variables. maintenance fixes such as wrapping inputs in the crud filter when there’s multiple and styling buttons
Resolved Defects
- Angular client-side now compiles for empty models
- Security no longer blocks the client-side for production builds
- Validation now will alert users of entities without names.
Migration Path
Renamed/Merged Protected Regions
Server-side
File | ID | New ID |
---|---|---|
CustomAuthenticationSuccessHandler.java | Add any additional loginSuccessHandler logic before the main body here | Override the onAuthenticationSuccess method here |
CustomAuthenticationSuccessHandler.java | Add any additional loginSuccessHandler logic before modifying the response here | Override the onAuthenticationSuccess method here |
CustomAuthenticationSuccessHandler.java | Add any additional loginSuccessHandler logic after the main body here | Override the onAuthenticationSuccess method here |
Client-side
File | ID | New ID |
---|---|---|
login.component.html | Add any additional form buttons here | Override the login form here |
;ogin.component.ts | Add any additional onSubmit logic before sending requests here |