home / github

Menu
  • GraphQL API

commits

Table actions
  • GraphQL API for commits

11 rows where "author_date" is on date 2020-10-09 sorted by raw_author

✎ View and edit SQL

This data as json, CSV (advanced)

Suggested facets: raw_committer, committer, committer_date (date)

author_date (date) 1 ✖

  • 2020-10-09 · 11 ✖
sha message author_date committer_date raw_author ▼ raw_committer repo author committer
549a007683e38fd13da72be7b2f5ee1adb1484c5 Clarify that datasette.client HTTP calls are simulated 2020-10-09T23:13:41Z 2020-10-09T23:13:41Z Simon Willison 13ae486343ea6454a93114c6f558ffea2f2c6874 GitHub cd792325681cbad9f663f2879d8b69f1edbb678f datasette 107914493 simonw 9599 web-flow 19864447
99488de329fa252f54db3166e46da468aa512388 Link to 0.50 annotated release notes 2020-10-09T21:50:19Z 2020-10-09T21:50:19Z Simon Willison 13ae486343ea6454a93114c6f558ffea2f2c6874 GitHub cd792325681cbad9f663f2879d8b69f1edbb678f datasette 107914493 simonw 9599 web-flow 19864447
ef76c9ea571eeefe136a18202f87ea8c4ef80ace Link to annotated release notes 2020-10-09T21:49:13Z 2020-10-09T21:49:13Z Simon Willison 13ae486343ea6454a93114c6f558ffea2f2c6874 GitHub cd792325681cbad9f663f2879d8b69f1edbb678f datasette 107914493 simonw 9599 web-flow 19864447
1bdbc8aa7f4fd7a768d456146e44da86cb1b36d1 Datasette now supports Python 3.9 2020-10-09T17:57:55Z 2020-10-09T17:57:55Z Simon Willison 13ae486343ea6454a93114c6f558ffea2f2c6874 Simon Willison 13ae486343ea6454a93114c6f558ffea2f2c6874 datasette 107914493 simonw 9599 simonw 9599
a61f0e4e1588083c9fe4636b8fb7178477c4c4a1 Release 0.50 Refs #1001, #514, #891, #943, #969, #970, #978, #980, #996, #997 Closes #1002 2020-10-09T17:51:03Z 2020-10-09T17:52:44Z Simon Willison 13ae486343ea6454a93114c6f558ffea2f2c6874 Simon Willison 13ae486343ea6454a93114c6f558ffea2f2c6874 datasette 107914493 simonw 9599 simonw 9599
c12b7a5def7028845a54a9fdac4052a87a0a8bb8 Documentation for datasette.client, closes #1006 Refs #1000 2020-10-09T17:19:50Z 2020-10-09T17:20:25Z Simon Willison 13ae486343ea6454a93114c6f558ffea2f2c6874 Simon Willison 13ae486343ea6454a93114c6f558ffea2f2c6874 datasette 107914493 simonw 9599 simonw 9599
6421ca2b22a8ebd801ca17b2ea38a98d353f1faa Use actions/setup-python@v2 to deploy latest This should fix an error with Python 3.9. 2020-10-09T16:28:17Z 2020-10-09T16:28:17Z Simon Willison 13ae486343ea6454a93114c6f558ffea2f2c6874 GitHub cd792325681cbad9f663f2879d8b69f1edbb678f datasette 107914493 simonw 9599 web-flow 19864447
896cc2c6acfefa65c54a162831e7f09159603988 Replace MockRequest with Request.fake() Close #1004 2020-10-09T16:26:17Z 2020-10-09T16:26:17Z Simon Willison 13ae486343ea6454a93114c6f558ffea2f2c6874 Simon Willison 13ae486343ea6454a93114c6f558ffea2f2c6874 datasette 107914493 simonw 9599 simonw 9599
6e091b14b651d67e0ff41a353d36bbeb1d8ba235 Run tests against Python 3.9 2020-10-09T16:22:49Z 2020-10-09T16:22:49Z Simon Willison 13ae486343ea6454a93114c6f558ffea2f2c6874 GitHub cd792325681cbad9f663f2879d8b69f1edbb678f datasette 107914493 simonw 9599 web-flow 19864447
8f97b9b58e77f82fef1f10e9c9f6754b993544b6 datasette.client internal requests mechanism Closes #943 * Datasette now requires httpx>=0.15 * Support OPTIONS without 500, closes #1001 * Added internals tests for datasette.client methods * Datasette's own test mechanism now uses httpx to simulate requests * Tests simulate HTTP 1.1 now * Added base_url in a bunch more places * Mark some tests as xfail - will remove that when new httpx release ships: #1005 2020-10-09T16:11:24Z 2020-10-09T16:11:24Z Simon Willison 13ae486343ea6454a93114c6f558ffea2f2c6874 GitHub cd792325681cbad9f663f2879d8b69f1edbb678f datasette 107914493 simonw 9599 web-flow 19864447
7249ac5ca04b5ddc6517750326ee7e522cc49145 Support OPTIONS without 500, closes #1001 2020-10-09T01:43:53Z 2020-10-09T01:43:53Z 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 93.143ms · About: simonw/datasette-graphql