V 1.13.x Upgrade Guide
This document covers the notable changes when upgrading from 1.12.x to 1.13.x.
Upgrade Requirements
- Spring Boot must be upgraded to 3.x. For migration steps, see Spring Boot 3.0 Migration Guide.
- JDK 17 is the minimum supported version.
- The primary-key generation strategy has changed; PostgreSQL < 10 and Oracle < 12c are no longer supported.
- The RESTful
deleteandputendpoints are officially removed and replaced withHTTP POST. Update your API calls after upgrading. Removed endpoints:delete /erupt-api/data/modify/{erupt}put /erupt-api/data/modify/{erupt}
- All node instances of an Erupt-Cloud cluster must be upgraded to 1.13.x.
- EruptDao removed deprecated
queryXXXAPIs — uselambdaQueryinstead. - The
@ShowByannotation has been renamed to@Dynamic. Update existing annotations:
yaml
showBy = @ShowBy
↓
dynamic = @Dynamic