Features
No new features were included in this release.
Improvements
- Update the launch joyride copy to be more descriptive.
- Upgraded to Spring Boot version 2.4.0.
- Added protected regions to multiple files.
- Added additional protected regions.
Resolved Defects
- Fixed issue causing UI validation to be skipped.
- Fixed issue causing UI elements to be added with whitespace from model file.
- Removed conflicting SMTP Configuration details from the default properties file. These configuration details are now only found in the test properties file. The protected region has not been removed, so any custom details will not be removed.
- Renamed duplicate protected regions.
Migration path
Upgrading from Spring Boot 2.3
The application-default.properties
file has merged with application.properties
to support the new profile loader added in v2.4.0.
All other migration from version 2.3 has been completed by the bots for all bot written code. In the event that migration is required for custom written code, please see the official migration documentation.
Protected Regions
There were some duplicate protected regions present in the codebase which have been renamed.
File | ID | New ID | Notes |
---|---|---|---|
clientside/src/app/models/[EntityName]/[EntityName].model.reducer.ts | Add any additional CreateModelOK logic before main logic here | Add any additional CreateAllModelsOK logic before main logic here | Modifying protected region name to remove a duplicate |
clientside/src/app/models/[EntityName]/[EntityName].model.reducer.ts | Add any additional UpdateModelOK logic before main logic here | Add any additional UpdateAllModelsOK logic before main logic here | Modifying protected region name to remove a duplicate |
clientside/src/app/models/[EntityName]/[EntityName].model.reducer.ts | Add any additional logic before ending CreateAllModelsOK action here | Add any additional logic before ending UpdateAllModelsOK action here | Modifying protected region name to remove a duplicate |
clientside/src/app/models/[EntityName]/[EntityName].model.reducer.ts | Add any additional FetchModelsWithQueryOK logic after main logic here | Add any additional FetchLastModelWithQueryOK logic after main logic here | Modifying protected region name to remove a duplicate |