Skip to content

kintone-java-client@v1.4.0

Compare
Choose a tag to compare
@tomohiro-okuyama tomohiro-okuyama released this 16 May 01:51
· 66 commits to master since this release
dfffd32

This release fixes a deserialization error on Calculated fields having the string value of Date, DateTime, or Time.
A CalcFieldValue now holds its value as a String, and provides a method to get the raw String value; String CalcFieldValue.getRawValue().

The original getters, like BigDecimal CalcFieldValue.getValue() and BigDecimal Record.getCalcFieldValue(),
keeps their signatures. You can use these methods as before for Calcurated fields with number formatted values.

Commits

feat: add methods to get the raw string value of Calculated fields (#36)
chore: add @AaronJRubin to the list of contributors (#35)
chore: add Author in README.md (#35)
fix!: Parse CALC values as a String instead of a BigDecimal so that there
is no error when the data represents a Date, DateTime, or Time (#34)