html_url,id,author,node_id,tag_name,target_commitish,name,draft,prerelease,created_at,published_at,body,repo,reactions,mentions_count https://github.com/simonw/datasette-upload-csvs/releases/tag/0.1a,23398303,9599,MDc6UmVsZWFzZTIzMzk4MzAz,0.1a,master,0.1a,0,0,2020-01-19T02:12:30Z,2020-02-05T06:07:31Z,Initial alpha release.,234825790,, https://github.com/simonw/datasette-upload-csvs/releases/tag/0.2a,23557130,9599,MDc6UmVsZWFzZTIzNTU3MTMw,0.2a,master,0.2a,0,0,2020-02-05T06:07:09Z,2020-02-11T06:54:22Z,"Now uses templates for the UI, which looks much nicer.",234825790,, https://github.com/simonw/datasette-upload-csvs/releases/tag/0.3,23989146,9599,MDc6UmVsZWFzZTIzOTg5MTQ2,0.3,master,0.3,0,0,2020-02-26T06:55:54Z,2020-02-26T07:01:29Z,"Now depends on Datasette 0.37 for the new `.execute_write_fn()` method. First version I've considered ""production ready"". See [Weeknotes: Datasette Writes](https://simonwillison.net/2020/Feb/26/weeknotes-datasette-writes/).",234825790,, https://github.com/simonw/datasette-upload-csvs/releases/tag/0.4,24154982,9599,MDc6UmVsZWFzZTI0MTU0OTgy,0.4,master,0.4,0,0,2020-03-03T04:03:20Z,2020-03-03T04:06:31Z,"* Support for dragging and dropping a CSV onto the upload page #3 * Upload progress bar #4 * Server-side processing of CSV now happens in a background thread #6 * Progress bar showing server-side processing of CSV #7",234825790,, https://github.com/simonw/datasette-upload-csvs/releases/tag/0.5,29737615,9599,MDc6UmVsZWFzZTI5NzM3NjE1,0.5,main,0.5,0,0,2020-08-15T19:25:36Z,2020-08-15T19:27:40Z,"- Now protected by the `upload-csvs` permission. Run `datasette --root` to sign in as the `root` actor which is automatically granted that permission. #10 - `/-/upload-csv` renamed to `/-/upload-csvs` (with a redirect). #13 - Now compatible with Datasette 0.44+ thanks to upgraded CSRF protection. #11 ",234825790,, https://github.com/simonw/datasette-upload-csvs/releases/tag/0.6,33311893,9599,MDc6UmVsZWFzZTMzMzExODkz,0.6,main,0.6,0,0,2020-10-31T22:44:46Z,2020-10-31T22:45:20Z,"- Adds link to Datasette's new navigation menu, added in Datasette 0.51. #15",234825790,, https://github.com/simonw/datasette-upload-csvs/releases/tag/0.6.1,44219660,9599,MDc6UmVsZWFzZTQ0MjE5NjYw,0.6.1,main,0.6.1,0,0,2021-06-07T16:36:41Z,2021-06-07T16:41:25Z,- Fixed bug using this plugin with Datasette 0.54 or higher. #19,234825790,, https://github.com/simonw/datasette-upload-csvs/releases/tag/0.7,68565904,9599,RE_kwDODf8oPs4EFjuQ,0.7,main,0.7,0,0,2022-06-03T15:28:57Z,2022-06-03T15:30:55Z,"- Now requires and is compatible with `datasette>=0.61`. [#21](https://github.com/simonw/datasette-upload-csvs/issues/21) - Dropped support for Python 3.6",234825790,, https://github.com/simonw/datasette-upload-csvs/releases/tag/0.7.1,69096069,9599,RE_kwDODf8oPs4EHlKF,0.7.1,main,0.7.1,0,0,2022-06-09T19:38:14Z,2022-06-09T19:40:01Z,"- Fixed bug where request would block while upload was being processed. [#22](https://github.com/simonw/datasette-upload-csvs/issues/22) - CSV files that use an encoding other than `utf-8` are now supported. [#23](https://github.com/simonw/datasette-upload-csvs/issues/23) - Errors during import are now displayed to the user. [#24](https://github.com/simonw/datasette-upload-csvs/issues/24)",234825790,, https://github.com/simonw/datasette-upload-csvs/releases/tag/0.7.2,71155536,9599,RE_kwDODf8oPs4EPb9Q,0.7.2,main,0.7.2,0,0,2022-07-03T20:58:03Z,2022-07-03T20:59:48Z,- 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](https://github.com/simonw/datasette-upload-csvs/issues/25),234825790,, https://github.com/simonw/datasette-upload-csvs/releases/tag/0.8,76620288,9599,RE_kwDODf8oPs4EkSIA,0.8,main,0.8,0,0,2022-09-08T17:04:08Z,2022-09-08T17:07:41Z,"- The user now gets to confirm the name of the table to be created before uploading the file. [#17](https://github.com/simonw/datasette-upload-csvs/issues/17) - Column types are automatically detected based on the uploaded data. Previously all columns were TEXT columns. [#26](https://github.com/simonw/datasette-upload-csvs/issues/26) - If a table with the desired name already exists, a suffix of `_2` or higher is appended. [#29](https://github.com/simonw/datasette-upload-csvs/issues/29) - Fixed a bug where usage alongside a custom `base.html` template with `extra_head` content would be ignored. [#27](https://github.com/simonw/datasette-upload-csvs/issues/27)",234825790,, https://github.com/simonw/datasette-upload-csvs/releases/tag/0.8.1,76637702,9599,RE_kwDODf8oPs4EkWYG,0.8.1,main,0.8.1,0,0,2022-09-08T19:50:41Z,2022-09-08T19:51:53Z,- Fixed compatibility bug where running this plugin at the same time as [datasette-upload-dbs](https://datasette.io/plugins/datasette-upload-dbs) could trigger errors. [#30](https://github.com/simonw/datasette-upload-csvs/issues/30),234825790,, https://github.com/simonw/datasette-upload-csvs/releases/tag/0.8.2,76640013,9599,RE_kwDODf8oPs4EkW8N,0.8.2,main,0.8.2,0,0,2022-09-08T20:15:01Z,2022-09-08T20:15:33Z,- Removed debug print statement which would otherwise show up in log output.,234825790,,