home / github

Menu
  • GraphQL API

releases

Table actions
  • GraphQL API for releases

4 rows where "published_at" is on date 2020-08-12

✎ View and edit SQL

This data as json, CSV (advanced)

Suggested facets: repo, created_at (date), published_at (date)

id ▼ html_url node_id tag_name target_commitish name draft author prerelease created_at published_at body repo reactions
29585154 https://github.com/simonw/datasette/releases/tag/0.47 MDc6UmVsZWFzZTI5NTg1MTU0 0.47 main 0.47 0 simonw 9599 0 2020-08-12T00:42:47Z 2020-08-12T00:44:52Z - Datasette now has [a GitHub discussions forum](https://github.com/simonw/datasette/discussions) for conversations about the project that go beyond just bug reports and issues. - Datasette can now be installed on macOS using Homebrew! Run `brew install simonw/datasette/datasette`. See [Using Homebrew](https://datasette.readthedocs.io/en/stable/installation.html#installation-homebrew). ([#335](https://github.com/simonw/datasette/issues/335)) - Two new commands: `datasette install name-of-plugin` and `datasette uninstall name-of-plugin`. These are equivalent to `pip install` and `pip uninstall` but automatically run in the same virtual environment as Datasette, so users don't have to figure out where that virtual environment is - useful for installations created using Homebrew or `pipx`. See [Installing plugins](https://datasette.readthedocs.io/en/stable/plugins.html#plugins-installing). ([#925](https://github.com/simonw/datasette/issues/925)) - A new command-line option, `datasette --get`, accepts a path to a URL within the Datasette instance. It will run that request through Datasette (without starting a web server) and print out the repsonse. See [datasette --get](https://datasette.readthedocs.io/en/stable/getting_started.html#getting-started-datasette-get) for an example. ([#926](https://github.com/simonw/datasette/issues/926)) datasette 107914493  
29587652 https://github.com/simonw/datasette/releases/tag/0.47.1 MDc6UmVsZWFzZTI5NTg3NjUy 0.47.1 main 0.47.1 0 simonw 9599 0 2020-08-12T02:37:24Z 2020-08-12T02:38:00Z - Fixed a bug where the `sdist` distribution of Datasette was not correctly including the template files. ([#930](https://github.com/simonw/datasette/issues/930)) datasette 107914493  
29616454 https://github.com/simonw/sqlite-utils/releases/tag/2.15.1 MDc6UmVsZWFzZTI5NjE2NDU0 2.15.1 main 2.15.1 0 simonw 9599 0 2020-08-12T16:59:48Z 2020-08-12T17:00:27Z - Now available as a `sdist` package on PyPI in addition to a wheel. ([#133](https://github.com/simonw/sqlite-utils/issues/133)) sqlite-utils 140912432  
29625082 https://github.com/simonw/datasette/releases/tag/0.47.2 MDc6UmVsZWFzZTI5NjI1MDgy 0.47.2 main 0.47.2 0 simonw 9599 0 2020-08-12T20:54:33Z 2020-08-12T20:55:28Z - Fixed an issue with the Docker image [published to Docker Hub](https://hub.docker.com/r/datasetteproject/datasette). ([#931](https://github.com/simonw/datasette/issues/931)) datasette 107914493  

Advanced export

JSON shape: default, array, newline-delimited, object

CSV options:

CREATE TABLE [releases] (
   [html_url] TEXT,
   [id] INTEGER PRIMARY KEY,
   [node_id] TEXT,
   [tag_name] TEXT,
   [target_commitish] TEXT,
   [name] TEXT,
   [draft] INTEGER,
   [author] INTEGER REFERENCES [users]([id]),
   [prerelease] INTEGER,
   [created_at] TEXT,
   [published_at] TEXT,
   [body] TEXT,
   [repo] INTEGER REFERENCES [repos]([id])
, [reactions] TEXT);
CREATE INDEX [idx_releases_repo]
                ON [releases] ([repo]);
CREATE INDEX [idx_releases_author]
                ON [releases] ([author]);
Powered by Datasette · Queries took 35.03ms · About: simonw/datasette-graphql