home / github

Menu
  • GraphQL API

commits

Table actions
  • GraphQL API for commits

10 rows where "author_date" is on date 2018-07-24 sorted by raw_committer

✎ View and edit SQL

This data as json, CSV (advanced)

Suggested facets: raw_committer, committer, committer_date (date)

author_date (date) 1 ✖

  • 2018-07-24 · 10 ✖
sha message author_date committer_date raw_author raw_committer ▼ repo author committer
9b85c599079e7dc37e7be125839711c982afc526 Removed unnecessary print statements from tests 2018-07-24T16:04:06Z 2018-07-24T16:04:06Z Simon Willison 13ae486343ea6454a93114c6f558ffea2f2c6874 Simon Willison 13ae486343ea6454a93114c6f558ffea2f2c6874 datasette 107914493 simonw 9599 simonw 9599
bd1db56936d7aa09f5ee87ac8146e19b71ae8b42 'Usage: datasette', not 'Usage: cli' - refs #336 2018-07-24T16:03:07Z 2018-07-24T16:03:07Z Simon Willison 13ae486343ea6454a93114c6f558ffea2f2c6874 Simon Willison 13ae486343ea6454a93114c6f558ffea2f2c6874 datasette 107914493 simonw 9599 simonw 9599
74ad3ff4af4ebb499b07c6ce984def7d88fcbbb7 Ensure --help examples in docs are always up to date, closes #336 Unit tests now check that docs/*.txt help examples are all up-to-date. I ran into a problem here in that the terminal_width needed to be more accurately defined - so I replaced update-docs-help.sh with update-docs- help.py which hard-codes the terminal width. 2018-07-24T16:00:10Z 2018-07-24T16:01:23Z Simon Willison 13ae486343ea6454a93114c6f558ffea2f2c6874 Simon Willison 13ae486343ea6454a93114c6f558ffea2f2c6874 datasette 107914493 simonw 9599 simonw 9599
28872a1fa789f314b0342f4e6182f1c78d6e2bca Release notes for 0.24 release 2018-07-24T04:34:28Z 2018-07-24T04:34:38Z Simon Willison 13ae486343ea6454a93114c6f558ffea2f2c6874 Simon Willison 13ae486343ea6454a93114c6f558ffea2f2c6874 datasette 107914493 simonw 9599 simonw 9599
581b4c97ee3d8339b1866480375e20b2fd2f6818 URLify URLs in custom SQL queries, closes #298 2018-07-24T03:56:32Z 2018-07-24T03:56:32Z Simon Willison 13ae486343ea6454a93114c6f558ffea2f2c6874 Simon Willison 13ae486343ea6454a93114c6f558ffea2f2c6874 datasette 107914493 simonw 9599 simonw 9599
3955771feaf47ddb6d281bba28ca2d6281551ed7 Unit tests for advanced export box HTML, closes #320 2018-07-24T03:38:31Z 2018-07-24T03:38:31Z Simon Willison 13ae486343ea6454a93114c6f558ffea2f2c6874 Simon Willison 13ae486343ea6454a93114c6f558ffea2f2c6874 datasette 107914493 simonw 9599 simonw 9599
700d83d8adfeb3859ebc93828951e5048cb0e425 ?_json_infinity=1 for handling Infinity/-Infinity - fixes #332 2018-07-24T03:07:57Z 2018-07-24T03:07:57Z Simon Willison 13ae486343ea6454a93114c6f558ffea2f2c6874 Simon Willison 13ae486343ea6454a93114c6f558ffea2f2c6874 datasette 107914493 simonw 9599 simonw 9599
b320f58d13e510d51e07187c8a75db856205b88f 'publish now' uses force_https_urls:on - closes #333 2018-07-24T01:51:43Z 2018-07-24T01:51:43Z Simon Willison 13ae486343ea6454a93114c6f558ffea2f2c6874 Simon Willison 13ae486343ea6454a93114c6f558ffea2f2c6874 datasette 107914493 simonw 9599 simonw 9599
3a46d5e3c4278e74c3694f36995ea134bff800bc Removed docker -e flag docker -e flag is now deprecated: https://docs.docker.com/engine/deprecated/#-e-and---email-flags-on-docker-login 2018-07-24T04:48:36Z 2018-07-24T04:48:36Z Simon Willison 13ae486343ea6454a93114c6f558ffea2f2c6874 GitHub cd792325681cbad9f663f2879d8b69f1edbb678f datasette 107914493 simonw 9599 web-flow 19864447
2bdab66772dca51b0c729b4e1063610cb2edd890 Build and push new tagged releases to Docker Hub Based on method described in https://sebest.github.io/post/using-travis-ci-to-build-docker-images/ 2018-07-24T04:17:57Z 2018-07-24T04:17:57Z Simon Willison 13ae486343ea6454a93114c6f558ffea2f2c6874 GitHub cd792325681cbad9f663f2879d8b69f1edbb678f datasette 107914493 simonw 9599 web-flow 19864447

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 166.197ms · About: simonw/datasette-graphql