You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This commit was created on GitHub.com and signed with GitHub’s verified signature.
Added
Support for array datatypes, i.e. INT8_ARRAY, INT16_ARRAY, INT32_ARRAY, INT64_ARRAY,
UINT8_ARRAY, UINT16_ARRAY, UINT32_ARRAY, UINT64_ARRAY, FLOAT_ARRAY, DOUBLE_ARRAY,
STRING_ARRAY, BOOLEAN_ARRAY, and DATETIME_ARRAY.
Changed
Payload metrics attribute is now type annotated and implemented as a tuple.
DATETIME datatypes are no longer all treated as UTC, instead properly converting
them to the UTC timezone. Naive datetime objects are thus treated as the local
timezone.
Unsupported datatypes now raise a NotImplementedError when attempting to encode/decode them instead of a ValueError.