home / content

releases

13 rows where repo = 234825790

✎ View and edit SQL

This data as json, CSV (advanced)

Suggested facets: target_commitish, created_at (date), published_at (date)

id ▼ html_url author node_id tag_name target_commitish name draft prerelease created_at published_at body repo reactions mentions_count
23398303 https://github.com/simonw/datasette-upload-csvs/releases/tag/0.1a simonw 9599 MDc6UmVsZWFzZTIzMzk4MzAz 0.1a master 0.1a 0 0 2020-01-19T02:12:30Z 2020-02-05T06:07:31Z Initial alpha release. datasette-upload-csvs 234825790    
23557130 https://github.com/simonw/datasette-upload-csvs/releases/tag/0.2a simonw 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. datasette-upload-csvs 234825790    
23989146 https://github.com/simonw/datasette-upload-csvs/releases/tag/0.3 simonw 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/). datasette-upload-csvs 234825790    
24154982 https://github.com/simonw/datasette-upload-csvs/releases/tag/0.4 simonw 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 datasette-upload-csvs 234825790    
29737615 https://github.com/simonw/datasette-upload-csvs/releases/tag/0.5 simonw 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 datasette-upload-csvs 234825790    
33311893 https://github.com/simonw/datasette-upload-csvs/releases/tag/0.6 simonw 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 datasette-upload-csvs 234825790    
44219660 https://github.com/simonw/datasette-upload-csvs/releases/tag/0.6.1 simonw 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 datasette-upload-csvs 234825790    
68565904 https://github.com/simonw/datasette-upload-csvs/releases/tag/0.7 simonw 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 datasette-upload-csvs 234825790    
69096069 https://github.com/simonw/datasette-upload-csvs/releases/tag/0.7.1 simonw 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) datasette-upload-csvs 234825790    
71155536 https://github.com/simonw/datasette-upload-csvs/releases/tag/0.7.2 simonw 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) datasette-upload-csvs 234825790    
76620288 https://github.com/simonw/datasette-upload-csvs/releases/tag/0.8 simonw 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) datasette-upload-csvs 234825790    
76637702 https://github.com/simonw/datasette-upload-csvs/releases/tag/0.8.1 simonw 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) datasette-upload-csvs 234825790    
76640013 https://github.com/simonw/datasette-upload-csvs/releases/tag/0.8.2 simonw 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. datasette-upload-csvs 234825790    

Advanced export

JSON shape: default, array, newline-delimited, object

CSV options:

CREATE TABLE [releases] (
   [html_url] TEXT,
   [id] INTEGER PRIMARY KEY,
   [author] INTEGER REFERENCES [users]([id]),
   [node_id] TEXT,
   [tag_name] TEXT,
   [target_commitish] TEXT,
   [name] TEXT,
   [draft] INTEGER,
   [prerelease] INTEGER,
   [created_at] TEXT,
   [published_at] TEXT,
   [body] TEXT,
   [repo] INTEGER REFERENCES [repos]([id])
, [reactions] TEXT, [mentions_count] INTEGER);
CREATE INDEX [idx_releases_repo]
    ON [releases] ([repo]);
CREATE INDEX [idx_releases_author]
    ON [releases] ([author]);
Powered by Datasette · Queries took 20.053ms