Skip to content
This repository has been archived by the owner on Jun 19, 2023. It is now read-only.

Releases: ipfs/go-ipfs-blockstore

v1.3.1

25 May 14:16
Compare
Choose a tag to compare

What's Changed

New Contributors

Full Changelog: v1.2.0...v1.3.1

v1.3.0

08 Mar 10:48
Compare
Choose a tag to compare

What's Changed

New Contributors

Full Changelog: v1.2.0...v1.3.0

v1.2.0

18 Mar 23:21
ffd43a8
Compare
Choose a tag to compare

What's Changed

Full Changelog: v1.1.2...v1.2.0

v1.1.2

09 Dec 17:05
Compare
Choose a tag to compare

What's Changed

Full Changelog: v1.1.1...v1.1.2

v1.1.1

09 Dec 17:04
Compare
Choose a tag to compare

What's Changed

v1.1.0 was broken

  • Had an extra context where it shouldn't have as well as an unreleased version of go-datastore fixed by @guseggert in #93

Full Changelog: v1.0.4...v1.1.1

v1.0.4

18 Jun 18:14
Compare
Choose a tag to compare
  • Actually use the bloom filter for GetSize in the bloom filter blockstore #78
  • Striped locking and benchmarking for arc cache (#67, #70)
  • Updated CI #74 and dependencies

v0.1.6

18 Jun 18:11
Compare
Choose a tag to compare
  • Actually use the bloom filter for GetSize in the bloom filter blockstore #79

Note: v0.1.5 is a bugged release so the tag has been deleted

v1.0.3

16 Nov 15:18
7adc396
Compare
Choose a tag to compare

make IdStore implement io.Closer.

v1.0.2

10 Nov 16:31
3e8fd89
Compare
Choose a tag to compare
  • introduces new Viewer interface, which can be optionally implemented by blockstores to allow zero-copy access to block values.
  • ARC, bloom and ID stores now implement blockstore.Viewer, and delegate to the inner store if it also supports blockstore.Viewer. If not, they bridge those calls to blockstore.Get, for full backwards compatibility.