When working with the GitHub statuses API, it appears that IDs that surpass the 32-bit mark it throws the following exception:
com.fasterxml.jackson.core.JsonParseException: Numeric value (x) out of range of int.
I haven't checked if it goes all the way to the jackson-core project, but the status IDs now generated have gone past 4294967295, which is the maximum uint value.
It'd be great if we could fix this, and I'd be happy to do the pull request if given some pointers and pairing. Thanks beforehand.
When working with the GitHub statuses API, it appears that IDs that surpass the 32-bit mark it throws the following exception:
com.fasterxml.jackson.core.JsonParseException: Numeric value (x) out of range of int.I haven't checked if it goes all the way to the jackson-core project, but the status IDs now generated have gone past 4294967295, which is the maximum uint value.
It'd be great if we could fix this, and I'd be happy to do the pull request if given some pointers and pairing. Thanks beforehand.