home / content

releases

3 rows where repo = 474176116

✎ 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
62820557 https://github.com/simonw/datasette-packages/releases/tag/0.1 simonw 9599 RE_kwDOHENadM4DvpDN 0.1 main 0.1 0 0 2022-03-25T22:04:04Z 2022-03-25T22:05:51Z - Initial release. `/-/packages` shows a list of installed Python packages, `/-/packages.json` returns that same list as JSON. datasette-packages 474176116    
62820996 https://github.com/simonw/datasette-packages/releases/tag/0.1.1 simonw 9599 RE_kwDOHENadM4DvpKE 0.1.1 main 0.1.1 0 0 2022-03-25T22:16:17Z 2022-03-25T22:17:21Z - Fixed bug where plugin would raise a 500 error when installed with some other plugins. [#2](https://github.com/simonw/datasette-packages/issues/2) datasette-packages 474176116    
71136592 https://github.com/simonw/datasette-packages/releases/tag/0.2 simonw 9599 RE_kwDOHENadM4EPXVQ 0.2 main 0.2 0 0 2022-07-03T02:27:31Z 2022-07-03T02:29:02Z - Now exposes a `packages` GraphQL field if you also have version 2.1 or higher of the [datasette-graphql plugin](https://datasette.io/plugins/datasette-graphql) installed. [#4](https://github.com/simonw/datasette-packages/issues/4) datasette-packages 474176116    

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