home / content

releases

4 rows where repo = 346597557

✎ 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
39634435 https://github.com/simonw/tableau-to-sqlite/releases/tag/0.1 simonw 9599 MDc6UmVsZWFzZTM5NjM0NDM1 0.1 main 0.1 0 0 2021-03-11T06:11:38Z 2021-03-11T06:13:20Z First working version. tableau-to-sqlite 346597557    
39635012 https://github.com/simonw/tableau-to-sqlite/releases/tag/0.1.1 simonw 9599 MDc6UmVsZWFzZTM5NjM1MDEy 0.1.1 main 0.1.1 0 0 2021-03-11T06:36:25Z 2021-03-11T06:37:14Z - No longer produces tables with single quotes in the name, which can cause bugs when viewed in Datasette. [#1](https://github.com/simonw/tableau-to-sqlite/issues/1) tableau-to-sqlite 346597557    
39635378 https://github.com/simonw/tableau-to-sqlite/releases/tag/0.2 simonw 9599 MDc6UmVsZWFzZTM5NjM1Mzc4 0.2 main 0.2 0 0 2021-03-11T06:51:38Z 2021-03-11T06:52:22Z - Support importing data from a full URL to a Tableau dashboard hosted somewhere other than `public.tableau.com`. [#2](https://github.com/simonw/tableau-to-sqlite/issues/2) tableau-to-sqlite 346597557    
40137439 https://github.com/simonw/tableau-to-sqlite/releases/tag/0.2.1 simonw 9599 MDc6UmVsZWFzZTQwMTM3NDM5 0.2.1 main 0.2.1 0 0 2021-03-22T03:55:13Z 2021-03-22T03:56:03Z - Pin underlying version of TableauScraper library to avoid problems caused by breaking changes. [#4](https://github.com/simonw/tableau-to-sqlite/issues/4) tableau-to-sqlite 346597557    

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