8.24.5
@comet/cms-api@8.24.5
Patch Changes
-
0fd8103: Fix DAM file listing failing for files larger than ~2 GB
The
sizefield ofDamFileandFileUploadwas exposed as a GraphQLInt, 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 withInt 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 asBigInt, which represents the full range of file sizes stored in the database (bigint).