v3.6.0
Added
-
Introduced support for
@Validation.MaxItemsand@Validation.MinItemsannotations, enabling you to define the minimum and maximum number of attachments that can be uploaded.Example: Limit to a Maximum of 2 Attachments
entity Incidents { @Validation.MaxItems: 2 attachments: Composition of many Attachments; }
Example: Require at Least 2 Attachments
entity Incidents { @Validation.MinItems: 2 attachments: Composition of many Attachments; }
-
Enhanced the
notefield to support multi-line input, improving readability for longer text entries.
Fixed
- Prevented unauthorized users from accessing attachments.
- Improved deletion logic for non-draft entities to ensure all associated attachments are reliably removed, preventing orphaned files and maintaining data consistency.
- Handling the use of nested POST requests in non-draft mode.
- Prevent overriding attachments using
/contenthandler.