Board IDs are now larger than the max integer size
January 18th, 2022
Today we hit a big milestone – board IDs for new boards are now larger than 2147483647. Our users are creating more boards and workflows than ever!
This also means they cannot be stored as integers. More specifically, they are too large to be stored as a 32-bit signed int.
If you are currently handling board and item IDs in your application as integers, you need to update your application to use another data type such as bigInt.
You will also need to run migrations on any databases that store board IDs as integers, as they will fail to store any new board IDs.