Releases: simonw/datasette-upload-csvs
Releases · simonw/datasette-upload-csvs
0.9.1
- Fixed incorrect page title on the upload page. #40
- Added a description to the database action menu item for Datasette 1.0a13 and higher.
0.9
- User can now select which database to upload the CSV file to. This can also be accessed through the database action menu. #28
- Switched to a new concurrency mechanism, where rows are inserted into the database in batches of 100. #38
- Added compatibility with Datasette 1.0 alphas.
0.8.3
- Fixed bug where dragging a file onto the area could result in an error message that was not present when clicking to select a file. Thanks, Alex Garcia. #32
0.8.2
- Removed debug print statement which would otherwise show up in log output.
0.8.1
- Fixed compatibility bug where running this plugin at the same time as datasette-upload-dbs could trigger errors. #30
0.8
- The user now gets to confirm the name of the table to be created before uploading the file. #17
- Column types are automatically detected based on the uploaded data. Previously all columns were TEXT columns. #26
- If a table with the desired name already exists, a suffix of
_2
or higher is appended. #29
- Fixed a bug where usage alongside a custom
base.html
template with extra_head
content would be ignored. #27
0.7.2
- Fixed bug where encoding of file was not correctly detected if non-ASCII characters occurred after the first 2KB. The tool now inspects the first 2MB of content (as originally intended) and also upgrades ASCII to
latin-1
since ASCII is a complete subset of latin-1
and using latin-1
increases the chance of a successful import. #25
0.7.1
- Fixed bug where request would block while upload was being processed. #22
- CSV files that use an encoding other than
utf-8
are now supported. #23
- Errors during import are now displayed to the user. #24
0.7
- Now requires and is compatible with
datasette>=0.61
. #21
- Dropped support for Python 3.6
0.6.1
- Fixed bug using this plugin with Datasette 0.54 or higher. #19