home / content

releases

2 rows where repo = 174715153

✎ 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
37438690 https://github.com/simonw/datasette-jellyfish/releases/tag/1.0 simonw 9599 MDc6UmVsZWFzZTM3NDM4Njkw 1.0 main 1.0 0 0 2021-02-06T02:00:15Z 2021-02-06T02:00:51Z Renamed two functions for compatibility with the latest Jellyfish - see [their documentation](https://jellyfish.readthedocs.io/en/latest/comparison.html#jaro-similarity) for details. * `jaro_distance(a, b)` is now `jaro_similarity(a, b)` * `jaro_winkler(a, b)` is now `jaro_winkler_similarity(a, b)` datasette-jellyfish 174715153    
37439175 https://github.com/simonw/datasette-jellyfish/releases/tag/1.0.1 simonw 9599 MDc6UmVsZWFzZTM3NDM5MTc1 1.0.1 main 1.0.1 0 0 2021-02-06T02:33:43Z 2021-02-06T02:34:18Z - Updated README examples to reflect function name changes in version 1.0. [#3](https://github.com/simonw/datasette-jellyfish/issues/3) datasette-jellyfish 174715153    

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