This is a bugfix release which also includes a few highly requested QOL features.
Timezone Date Support
Dataview now supports dates with milliseconds (HH:MM:ss.mmm
), as well as dates with
timezones (HH:MM:ssZ
or HH:MM:ss+6:30
).
Fixed CSV Support
Several performance issues and bugs related to csv support have been fixed; you can query from a csv file via
TABLE WITHOUT ID field1, field2, ... FROM csv("path/to/file.csv")
Removing the 'File' field
You can remove the default 'File' or 'GROUP' fields now using the 'WITHOUT ID' qualifier in a table query:
TABLE WITHOUT ID ... FROM
...
Custom Date Formats
You can now specify the default date format that dataview should use everywhere in the settings. You can also
use custom formatting inside of the query language with the new dateformat(date, "...format...")
function.
Index Fixes
Several issues with files not properly reloading due to renames or deletions have been fixed.