home / github

Menu
  • GraphQL API

commits

Table actions
  • GraphQL API for commits

6 rows where "author_date" is on date 2017-12-10

✎ View and edit SQL

This data as json, CSV (advanced)

Suggested facets: raw_author, raw_committer, committer, committer_date (date)

author_date (date) 1 ✖

  • 2017-12-10 · 6 ✖
sha ▼ message author_date committer_date raw_author raw_committer repo author committer
2edc652df6d786e4f2c3f073e3567002d248be09 Releasing v0.14 2017-12-10T01:33:24Z 2017-12-10T01:33:24Z Simon Willison 13ae486343ea6454a93114c6f558ffea2f2c6874 Simon Willison 13ae486343ea6454a93114c6f558ffea2f2c6874 datasette 107914493 simonw 9599 simonw 9599
68a34bc222af586c75daa5166c937f3f26cfefac Deploy to Heroku with Python 3.6.3 Heroku deploys are currently showing the following warning: The latest version of Python 3 is python-3.6.3 (you are using python-3.6.2, which is unsupported). We recommend upgrading by specifying the latest version (python-3.6.3). 2017-12-10T02:01:17Z 2017-12-10T02:01:17Z Simon Willison 13ae486343ea6454a93114c6f558ffea2f2c6874 Simon Willison 13ae486343ea6454a93114c6f558ffea2f2c6874 datasette 107914493 simonw 9599 simonw 9599
702829f808994d49f11612b35035cfa6842cd91b Added Datasette 0.14: customization edition to news 2017-12-10T02:10:30Z 2017-12-10T02:10:30Z Simon Willison 2946d096d0cdefdc017559e6b57e87658736e843 GitHub cd792325681cbad9f663f2879d8b69f1edbb678f datasette 107914493 simonw 9599 web-flow 19864447
794c3bfcfc03087bbebffb7b228e81aaa8b72183 Cleaned up row/column display logic, fixed bug Closes #167 2017-12-10T00:59:25Z 2017-12-10T00:59:25Z Simon Willison 13ae486343ea6454a93114c6f558ffea2f2c6874 Simon Willison 13ae486343ea6454a93114c6f558ffea2f2c6874 datasette 107914493 simonw 9599 simonw 9599
7db790fbf999d83275a5bde4563d935a58a3d787 Release notes for 0.14 Also updated "datasette serve" help in getting started docs. 2017-12-10T01:24:57Z 2017-12-10T01:26:32Z Simon Willison 13ae486343ea6454a93114c6f558ffea2f2c6874 Simon Willison 13ae486343ea6454a93114c6f558ffea2f2c6874 datasette 107914493 simonw 9599 simonw 9599
ae940068096ad9ff2f27f4e1784c87788d53eb3d No longer include database hash in hyperlinks It was making the unit tests unreliable. Also we do not do that for foreign key links. 2017-12-10T01:31:08Z 2017-12-10T01:31:08Z Simon Willison 13ae486343ea6454a93114c6f558ffea2f2c6874 Simon Willison 13ae486343ea6454a93114c6f558ffea2f2c6874 datasette 107914493 simonw 9599 simonw 9599

Advanced export

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

CSV options:

CREATE TABLE [commits] (
   [sha] TEXT PRIMARY KEY,
   [message] TEXT,
   [author_date] TEXT,
   [committer_date] TEXT,
   [raw_author] TEXT REFERENCES [raw_authors]([id]),
   [raw_committer] TEXT REFERENCES [raw_authors]([id]),
   [repo] INTEGER REFERENCES [repos]([id]),
   [author] INTEGER REFERENCES [users]([id]),
   [committer] INTEGER REFERENCES [users]([id])
);
CREATE INDEX [idx_commits_committer]
                ON [commits] ([committer]);
CREATE INDEX [idx_commits_author]
                ON [commits] ([author]);
CREATE INDEX [idx_commits_repo]
                ON [commits] ([repo]);
CREATE INDEX [idx_commits_raw_committer]
                ON [commits] ([raw_committer]);
CREATE INDEX [idx_commits_raw_author]
                ON [commits] ([raw_author]);
Powered by Datasette · Queries took 47.286ms · About: simonw/datasette-graphql