Skip to content

8.24.5

Choose a tag to compare

@github-actions github-actions released this 25 Jun 14:31
4ffb609

@comet/cms-api@8.24.5

Patch Changes

  • 0fd8103: Fix DAM file listing failing for files larger than ~2 GB

    The size field of DamFile and FileUpload was exposed as a GraphQL Int, which can only represent 32-bit signed integers (max ~2.1 GB). Files exceeding this size (e.g. large videos) caused the GraphQL response to fail with Int cannot represent non 32-bit signed integer value, breaking the DAM file list and the "Select files from DAM" dialog. The field is now exposed as BigInt, which represents the full range of file sizes stored in the database (bigint).