home / content

releases

6 rows where repo = 142967347

✎ 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
14760894 https://github.com/simonw/datasette-json-html/releases/tag/0.4.0 simonw 9599 MDc6UmVsZWFzZTE0NzYwODk0 0.4.0 master 0.4.0 - <pre> support 0 0 2019-01-02T04:10:17Z 2019-01-02T04:17:15Z You can use `{"pre": "text"}` to render text in a `<pre>` HTML tag: { "pre": "This\nhas\nnewlines" } Produces: <pre>This has newlines</pre> If the value attached to the `"pre"` key is itself a JSON object, that JSON will be pretty-printed: { "pre": { "this": { "object": ["is", "nested"] } } } Produces: <pre>{ &#34;this&#34;: { &#34;object&#34;: [ &#34;is&#34;, &#34;nested&#34; ] } }</pre> datasette-json-html 142967347    
17987324 https://github.com/simonw/datasette-json-html/releases/tag/0.5 simonw 9599 MDc6UmVsZWFzZTE3OTg3MzI0 0.5 master 0.5 - tooltips and demos 0 0 2019-06-14T01:29:34Z 2019-06-14T01:33:44Z Links can now have tooltips (#2): ``` { "href": "https://simonwillison.net/", "label": "Simon Willison", "title": "My blog" } ``` Also added [a live demo](https://datasette-json-html.datasette.io/demo?sql=select+%27%7B%0D%0A++++%22href%22%3A+%22https%3A%2F%2Fsimonwillison.net%2F%22%2C%0D%0A++++%22label%22%3A+%22Simon+Willison%22%2C%0D%0A++++%22title%22%3A+%22My+blog%22%0D%0A%7D%27) and linked to it throughout the README (#3, #1) datasette-json-html 142967347    
29493201 https://github.com/simonw/datasette-json-html/releases/tag/0.6 simonw 9599 MDc6UmVsZWFzZTI5NDkzMjAx 0.6 main 0.6 0 0 2020-01-22T20:18:00Z 2020-08-09T22:47:21Z - Optional description key for links, closes #5 (Actually released January 22nd 2020) datasette-json-html 142967347    
29493220 https://github.com/simonw/datasette-json-html/releases/tag/0.6.1 simonw 9599 MDc6UmVsZWFzZTI5NDkzMjIw 0.6.1 main 0.6.1 0 0 2020-08-09T22:46:19Z 2020-08-09T22:48:46Z - Switched CI to GitHub Actions datasette-json-html 142967347    
47096510 https://github.com/simonw/datasette-json-html/releases/tag/1.0 simonw 9599 MDc6UmVsZWFzZTQ3MDk2NTEw 1.0 main 1.0 0 0 2021-07-31T19:09:32Z 2021-07-31T19:10:13Z - 1.0 release reflecting the stability of this plugin - Extremely minor documentation improvements datasette-json-html 142967347    
47096749 https://github.com/simonw/datasette-json-html/releases/tag/1.0.1 simonw 9599 MDc6UmVsZWFzZTQ3MDk2NzQ5 1.0.1 main 1.0.1 0 0 2021-07-31T19:21:12Z 2021-07-31T19:22:20Z - Now also tested against Python 3.9. - Fixed Jinja2 deprecation warnings. [#7](https://github.com/simonw/datasette-json-html/issues/7) datasette-json-html 142967347    

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