home / github

Menu
  • Search all tables
  • GraphQL API

commits

Table actions
  • GraphQL API for commits

10 rows where "committer_date" is on date 2023-11-04 and repo = 140912432 sorted by author_date descending

✖
✖
✖

✎ View and edit SQL

This data as json, CSV (advanced)

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

author 4

  • simonw 7
  • spookylukey 1
  • nezhar 1
  • MikeCoats 1

repo 1

  • sqlite-utils · 10 ✖
sha message author_date ▲ committer_date raw_author raw_committer repo author committer
9286c1ba432e890b1bb4b2a1f847b15364c1fa18 Fixed some markup bugs 2023-11-04T03:55:19Z 2023-11-04T03:55:19Z Simon Willison 13ae486343ea6454a93114c6f558ffea2f2c6874 GitHub cd792325681cbad9f663f2879d8b69f1edbb678f sqlite-utils 140912432 simonw 9599 web-flow 19864447
c64c7d1b8caec172c87a73154cc4da90fd3fae3b More 3.35.2 release notes Refs #433, #522, #596, #598 2023-11-04T01:03:42Z 2023-11-04T01:03:42Z Simon Willison 13ae486343ea6454a93114c6f558ffea2f2c6874 Simon Willison 13ae486343ea6454a93114c6f558ffea2f2c6874 sqlite-utils 140912432 simonw 9599 simonw 9599
78d8dd06d35d895416b73c2b5837633a2af278f5 Add 3.12 to PyPI metadata 2023-11-04T00:59:09Z 2023-11-04T00:59:09Z Simon Willison 13ae486343ea6454a93114c6f558ffea2f2c6874 Simon Willison 13ae486343ea6454a93114c6f558ffea2f2c6874 sqlite-utils 140912432 simonw 9599 simonw 9599
08c8bb7cfb4e88cec04d1443dadd79ac3624122f Test against Python 3.12 First tested in #591 2023-11-04T00:58:31Z 2023-11-04T00:58:31Z Simon Willison 13ae486343ea6454a93114c6f558ffea2f2c6874 Simon Willison 13ae486343ea6454a93114c6f558ffea2f2c6874 sqlite-utils 140912432 simonw 9599 simonw 9599
b2e0cd066d5eda2ccfd1d63cd07191a209978395 Test and docs for timedelta support, refs #522 2023-11-04T00:54:37Z 2023-11-04T00:56:34Z Simon Willison 13ae486343ea6454a93114c6f558ffea2f2c6874 Simon Willison 13ae486343ea6454a93114c6f558ffea2f2c6874 sqlite-utils 140912432 simonw 9599 simonw 9599
347fdc865e91b8d3410f49a5c9d5b499fbb594c1 Map datetime.timedelta to text columns, closes #522 2023-11-04T00:49:50Z 2023-11-04T00:49:50Z Harald Nezbeda c05f3ac9fd9e1c01f58129c9f0e6965fe888c4d8 GitHub cd792325681cbad9f663f2879d8b69f1edbb678f sqlite-utils 140912432 nezhar 4420927 web-flow 19864447
37273d7f63f08872aa1c90c4233a0580e384ac19 Fixed issue #433 - CLI eats cursor (#598) The issue is that underlying iterator is not fully consumed within the body of the `with file_progress()` block. Instead, that block creates generator expressions like `docs = (dict(zip(headers, row)) for row in reader)` These iterables are consumed later, outside the `with file_progress()` block, which consumes the underlying iterator, and in turn updates the progress bar. This means that the `ProgressBar.__exit__` method gets called before the last time the `ProgressBar.update` method gets called. The result is that the code to make the cursor invisible (inside the `update()` method) is called after the cleanup code to make it visible (in the `__exit__` method). The fix is to move consumption of the `docs` iterators within the progress bar block. (An additional fix, to make ProgressBar more robust against this kind of misuse, would to make it refusing to update after its `__exit__` method had been called, just like files cannot be `read()` after they are closed. That requires a in the click library). 2023-11-04T00:40:29Z 2023-11-04T00:40:29Z Luke Plant 189bbd99f415a97bb6554c438654cb35fc4c85ae GitHub cd792325681cbad9f663f2879d8b69f1edbb678f sqlite-utils 140912432 spookylukey 62745 web-flow 19864447
8d186d33c2faf82d76163f3ab8bb09f3c031f069 Release 3.35.2 Refs #599, #600 2023-11-04T00:38:52Z 2023-11-04T00:51:46Z Simon Willison 13ae486343ea6454a93114c6f558ffea2f2c6874 Simon Willison 13ae486343ea6454a93114c6f558ffea2f2c6874 sqlite-utils 140912432 simonw 9599 simonw 9599
b92ea4793ce4dcb73cf762aae634ab72f65ec50f Fixed spelling of wrappping 2023-11-04T00:25:02Z 2023-11-04T00:31:49Z Simon Willison 13ae486343ea6454a93114c6f558ffea2f2c6874 Simon Willison 13ae486343ea6454a93114c6f558ffea2f2c6874 sqlite-utils 140912432 simonw 9599 simonw 9599
4b3c83cd9f2619351359fa6b3b648f20ee07e0de Add spatialite arm64 linux path Issue: #599 2023-11-03T22:11:23Z 2023-11-04T00:31:49Z Mike Coats 0453683d7cdf7be9209d6e12bf71d2ffd3a6d702 Simon Willison 13ae486343ea6454a93114c6f558ffea2f2c6874 sqlite-utils 140912432 MikeCoats 37802088 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 49.926ms · About: github-to-sqlite
  • Sort ascending
  • Sort descending
  • Facet by this
  • Hide this column
  • Show all columns
  • Show not-blank rows