Skip to content

v3.4.0

Choose a tag to compare

@github-actions github-actions released this 25 Nov 11:58
· 117 commits to main since this release
f6ede42

Added

  • Introduced support for the @Core.AcceptableMediaTypes annotation, allowing specification of permitted MIME types for attachment uploads:
    annotate my.Books.attachments with {
        content @Core.AcceptableMediaTypes: ['image/jpeg'];
    }
  • Added support for the @Validation.Maximum annotation to define the maximum allowed file size for attachments:
    annotate my.Books.attachments with {
        content @Validation.Maximum: '2MB';
    }

Fixed

  • Removed the previous hard limit of 400 MB for file uploads. Files exceeding this size may still fail during malware scanning and will be marked with a Failed status.
  • Resolved issues with generic handler registration, enabling services to intercept the attachments plugin using middleware.