home / content

releases

4 rows where repo = 501303242

✎ View and edit SQL

This data as json, CSV (advanced)

Suggested facets: 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
69103390 https://github.com/simonw/datasette-socrata/releases/tag/0.1 simonw 9599 RE_kwDOHeFHys4EHm8e 0.1 main 0.1 0 0 2022-06-09T21:24:07Z 2022-06-09T21:24:37Z - Initial release. Adds a `/-/import-socrata` page which can be used to import data by providing the URL to a dataset on Socrata. [#1](https://github.com/simonw/datasette-socrata/issues/1) datasette-socrata 501303242    
69184891 https://github.com/simonw/datasette-socrata/releases/tag/0.1.1 simonw 9599 RE_kwDOHeFHys4EH617 0.1.1 main 0.1.1 0 0 2022-06-10T18:53:37Z 2022-06-10T18:54:22Z - Fixed bug where error messages relating to incorrect configuration were served as 403 forbidden. [#9](https://github.com/simonw/datasette-socrata/issues/9) datasette-socrata 501303242    
69219203 https://github.com/simonw/datasette-socrata/releases/tag/0.2 simonw 9599 RE_kwDOHeFHys4EIDOD 0.2 main 0.2 0 0 2022-06-11T15:54:03Z 2022-06-11T15:54:55Z - Table metadata in Datasette now reflects metadata imported from Socrata. [#11](https://github.com/simonw/datasette-socrata/issues/11) datasette-socrata 501303242    
69746182 https://github.com/simonw/datasette-socrata/releases/tag/0.3 simonw 9599 RE_kwDOHeFHys4EKD4G 0.3 main 0.3 0 0 2022-06-17T20:25:42Z 2022-06-17T20:29:53Z - Any errors that occur during an import are now stored in the `errors` column of the `socrata_imports` table, and displayed by the JavaScript progress indicator. [#12](https://github.com/simonw/datasette-socrata/issues/12) - CSV imports with long field values no longer trigger an error. [#13](https://github.com/simonw/datasette-socrata/issues/13) - Progress bars now show the number of records imported and remaining, and hint to refresh the page when the import is complete. [#10](https://github.com/simonw/datasette-socrata/issues/10) - Checks for low disk space using the plugin hook provided by [datasette-low-disk-space-hook](https://github.com/simonw/datasette-low-disk-space-hook). [#4](https://github.com/simonw/datasette-socrata/issues/4) datasette-socrata 501303242    

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 21.239ms