Monthly Update - 2025-11
ยท One min read
A focused update this month improving the validation checker logic.
Changesโ
teaql-spring-boot-starterโ
๐ง Checker needCheck updatedโ
Refined the needCheck logic in the validation checker. This determines whether a property or entity needs to go through validation before persistence. The update improves accuracy by reducing unnecessary validation passes and ensuring the right fields are checked at the right time.
+ Updated needCheck condition logic in Checker
+ Reduces unnecessary validation overhead
+ More accurate determination of which fields require validation
Context
TeaQL's checker system validates domain objects before they are persisted. The needCheck method determines if a particular field or object requires validation. Previously, some fields that didn't need validation were still being checked, adding unnecessary overhead. This update tightens the logic.
