home / content

releases

6 rows where repo = 195145678

✎ 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
18402821 https://github.com/simonw/sqlite-diffable/releases/tag/0.1 simonw 9599 MDc6UmVsZWFzZTE4NDAyODIx 0.1 master 0.1 0 0 2019-07-04T01:25:33Z 2019-07-04T02:00:23Z Initial release. $ sqlite-diffable dump fixtures.db out/ facetable sqlite-diffable 195145678    
18402901 https://github.com/simonw/sqlite-diffable/releases/tag/0.2 simonw 9599 MDc6UmVsZWFzZTE4NDAyOTAx 0.2 master 0.2 0 0 2019-07-04T02:05:30Z 2019-07-04T02:07:54Z Added `--all` option: $ sqlite-diffable dump fixtures.db out/ --all sqlite-diffable 195145678    
60011518 https://github.com/simonw/sqlite-diffable/releases/tag/0.2.1 simonw 9599 RE_kwDOC6Gvzs4Dk7P- 0.2.1 main 0.2.1 0 0 2022-02-21T02:28:25Z 2022-02-21T02:29:45Z - README now includes a description of the file format and a link to a demo. [#5](https://github.com/simonw/sqlite-diffable/issues/5) sqlite-diffable 195145678    
71608095 https://github.com/simonw/sqlite-diffable/releases/tag/0.3 simonw 9599 RE_kwDOC6Gvzs4ERKcf 0.3 main 0.3 0 0 2022-07-08T23:15:59Z 2022-07-08T23:33:16Z - New `sqlite-diffable load` command for restoring a previously dumped database. [#3](https://github.com/simonw/sqlite-diffable/issues/3) sqlite-diffable 195145678    
71721880 https://github.com/simonw/sqlite-diffable/releases/tag/0.4 simonw 9599 RE_kwDOC6Gvzs4ERmOY 0.4 main 0.4 0 0 2022-07-11T16:47:58Z 2022-07-11T16:48:46Z - `sqlite-diffable load ... --replace` option to replace tables that already exist in the destination database file. [#6](https://github.com/simonw/sqlite-diffable/issues/6) sqlite-diffable 195145678    
74783383 https://github.com/simonw/sqlite-diffable/releases/tag/0.5 simonw 9599 RE_kwDOC6Gvzs4EdRqX 0.5 main 0.5 0 0 2022-08-18T22:47:58Z 2022-08-18T22:49:30Z - `sqlite-diffable objects path-to/table.ndjson` command for converting a newline-delimited file of JSON arrays into a sequence of JSON objects. [#7](https://github.com/simonw/sqlite-diffable/issues/7) sqlite-diffable 195145678    

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.37ms