home / github

Menu
  • GraphQL API

commits

Table actions
  • GraphQL API for commits

6 rows where "author_date" is on date 2019-04-21 sorted by raw_committer

✎ View and edit SQL

This data as json, CSV (advanced)

Suggested facets: committer_date (date)

author_date (date) 1 ✖

  • 2019-04-21 · 6 ✖
sha message author_date committer_date raw_author raw_committer ▼ repo author committer
bac4e01f40ae7bd19d1eab1fb9349452c18de8f5 Ensure sqlite_timelimit correctly clears handler If an error occurred inside the block the progress handler (used to enforce a time limit) was not being correctly cleared, resulting in timeout errors potentially occurring during subsequent SQL queries. The fix is described here: https://docs.python.org/3/library/contextlib.html#contextlib.contextmanager 2019-04-21T19:02:24Z 2019-04-21T19:02:24Z Simon Willison 13ae486343ea6454a93114c6f558ffea2f2c6874 Simon Willison 13ae486343ea6454a93114c6f558ffea2f2c6874 datasette 107914493 simonw 9599 simonw 9599
11b352b4d52fd02a422776edebb14f12e4994d3b Fix for Python 3.5, refs #435 2019-04-21T18:20:20Z 2019-04-21T18:20:20Z Simon Willison 13ae486343ea6454a93114c6f558ffea2f2c6874 Simon Willison 13ae486343ea6454a93114c6f558ffea2f2c6874 datasette 107914493 simonw 9599 simonw 9599
9d73e3c8bd5f3aae24a75b62c420de166992b30c Note that trace data format is very likely to change, refs #435 2019-04-21T17:53:28Z 2019-04-21T17:53:28Z Simon Willison 13ae486343ea6454a93114c6f558ffea2f2c6874 Simon Willison 13ae486343ea6454a93114c6f558ffea2f2c6874 datasette 107914493 simonw 9599 simonw 9599
e4e73a537add40b92a02e55af004b0d26a3ccdce Test for ?_trace=1, refs #435 2019-04-21T17:46:56Z 2019-04-21T17:46:56Z Simon Willison 13ae486343ea6454a93114c6f558ffea2f2c6874 Simon Willison 13ae486343ea6454a93114c6f558ffea2f2c6874 datasette 107914493 simonw 9599 simonw 9599
58a862cee4a065d463da0a08b87134efb6b6e18d ?_trace=1 now adds SQL trace info to JSON/HTML response Also added documentation for it. Refs #435 2019-04-21T17:41:16Z 2019-04-21T17:41:16Z Simon Willison 13ae486343ea6454a93114c6f558ffea2f2c6874 Simon Willison 13ae486343ea6454a93114c6f558ffea2f2c6874 datasette 107914493 simonw 9599 simonw 9599
7d01ca34a10b5f8a993859cfd05790eb2870b94e Added ?_trace=1 option to trace SQL Currently just dumps all SQL statements out on the console. 2019-04-21T05:28:15Z 2019-04-21T05:34:34Z 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 83.835ms · About: simonw/datasette-graphql