Add `MessagePackMapper#handleBigDecimalAsString` by komamitsu · Pull Request #745 · msgpack/msgpack-java
Context
We've received some issues that jackson-dataformat-msgpack fails to serialize large BigDecimal values. It's because the default internal type double can't store large BigDecimal values. We've found a workaround, but the same issue has been reported.
Changes
This PR introduces MessagePackMapper#handleBigDecimalAsString with which users can easily use the workaround, and recommends to use the new method in README