Skip to content

Parsing ISO8601 timestamps with milliseconds

Sam Sehnert requested to merge hotfix/js_date_milliseconds into master

Added millisecond compatibility when parsing ISO8601 longform timestamps.

E.g.,

When using an ISO8601 timestamp like this:

2016-03-16T10:05:35.234Z

The date plugin wasn't correctly recognising the timezone, and thus parsed the date as the users local time, rather than UTC and then converting to local time.

Merge request reports