The Filepicker component now also supports selecting multiple files, and parsing them. You can select multiple files by holding either the Ctrl, Cmd, or Shift modifier keys while choosing your files.
The Filepicker component also now supports uploading entire directories.
All of this can be enabled or disabled in the settings of the Filepicker.
SQL Server queries that comprise of multiple queries now have a more consistent behavior.
For example, in the following SQL query, the .data property will contain the result of the first select statement. On the other hand, to get the result of the 2nd select statement, you can use the .dataArray property. (e.g. {{ query1.dataArray[1] }})
select from SalesLT.Customer;
select from SalesLT.Address;