mirror of
https://github.com/status-im/sourcecred.git
synced 2025-01-13 14:14:57 +00:00
29c9229c28
When we took a dep on better-sqlite3 in #836, we used a fork, because better-sqlite3 did not yet support private in-memory databases via the `:memory:` filepath. As of better-sqlite3 v5, this has been added to mainline, so we no longer need the fork. The v4->v5 transition involves some breaking changes. The only ones that affected us were two field renames, from `lastUpdateROWID` to `lastUpdateRowid`, and `returnsData` to `reader`. Test plan: After updating the field accesses, `yarn test --full` passes. For added safety, I also blew away cache, loaded a nontrivial repository, and verified that the full cred workflow still works. cc @wchargin