Skip to content

Releases: ipfs/go-ds-sql

v0.3.0

28 Jan 12:25
b21e52d
Compare
Choose a tag to compare

What's Changed

New Contributors

Full Changelog: v0.2.0...v0.3.0

v0.2.0

13 May 09:07
3edef88
Compare
Choose a tag to compare
  • Implements the Txn interface.
  • Fixes a deadlocking issue using the Batching interface with autobatch. Previously all batch statements were executed in a transaction. Using the datastore with autobatch could easily lead to deadlocks since the queries and their ordering cannot be controlled within a transaction. The batch interface now sends each query consecutively over a single connection when Commit is called. Batches are no longer executed in a single transaction. If you need transactions please use the Txn interface.
  • PostgreSQL Queries must now be constructed using NewQueries, passing the table name to use as a parameter.

v0.1.0

15 Apr 18:12
3616788
Compare
Choose a tag to compare

Initial public release.