ipfs / go-datastore

key-value datastore interfaces
MIT License
230 stars 65 forks source link

Bump version to 0.5.0 #183

Closed guseggert closed 3 years ago

github-actions[bot] commented 3 years ago

Suggested version: v0.5.0 Comparing to: v0.4.6 (diff)

Changes in go.mod file(s):

diff --git a/go.mod b/go.mod
index 87e8b02..89cf50d 100644
--- a/go.mod
+++ b/go.mod
@@ -11,4 +11,4 @@ require (
    gopkg.in/check.v1 v1.0.0-20190902080502-41f04d3bba15
 )

-go 1.15
+go 1.16diff --git a/fuzz/go.mod b/fuzz/go.mod
index 63f4b54..c0eb084 100644
--- a/fuzz/go.mod
+++ b/fuzz/go.mod
@@ -1,8 +1,6 @@
 module github.com/ipfs/go-datastore/fuzz

-go 1.14
-
-replace github.com/ipfs/go-datastore => ../
+go 1.16

 require (
    github.com/ipfs/go-datastore v0.4.4

gorelease says:

# github.com/ipfs/go-datastore
## incompatible changes
(*LogBatch).Commit: changed from func() error to func(context.Context) error
(*LogBatch).Delete: changed from func(Key) error to func(context.Context, Key) error
(*LogBatch).Put: changed from func(Key, []byte) error to func(context.Context, Key, []byte) error
(*LogDatastore).Batch: changed from func() (Batch, error) to func(context.Context) (Batch, error)
(*LogDatastore).Check: changed from func() error to func(context.Context) error
(*LogDatastore).CollectGarbage: changed from func() error to func(context.Context) error
(*LogDatastore).Delete: changed from func(Key) error to func(context.Context, Key) error
(*LogDatastore).DiskUsage: changed from func() (uint64, error) to func(context.Context) (uint64, error)
(*LogDatastore).Get: changed from func(Key) ([]byte, error) to func(context.Context, Key) ([]byte, error)
(*LogDatastore).GetSize: changed from func(Key) (int, error) to func(context.Context, Key) (int, error)
(*LogDatastore).Has: changed from func(Key) (bool, error) to func(context.Context, Key) (bool, error)
(*LogDatastore).Put: changed from func(Key, []byte) error to func(context.Context, Key, []byte) error
(*LogDatastore).Query: changed from func(github.com/ipfs/go-datastore/query.Query) (github.com/ipfs/go-datastore/query.Results, error) to func(context.Context, github.com/ipfs/go-datastore/query.Query) (github.com/ipfs/go-datastore/query.Results, error)
(*LogDatastore).Scrub: changed from func() error to func(context.Context) error
(*LogDatastore).Sync: changed from func(Key) error to func(context.Context, Key) error
(*MapDatastore).Batch: changed from func() (Batch, error) to func(context.Context) (Batch, error)
(*MapDatastore).Delete: changed from func(Key) error to func(context.Context, Key) error
(*MapDatastore).Get: changed from func(Key) ([]byte, error) to func(context.Context, Key) ([]byte, error)
(*MapDatastore).GetSize: changed from func(Key) (int, error) to func(context.Context, Key) (int, error)
(*MapDatastore).Has: changed from func(Key) (bool, error) to func(context.Context, Key) (bool, error)
(*MapDatastore).Put: changed from func(Key, []byte) error to func(context.Context, Key, []byte) error
(*MapDatastore).Query: changed from func(github.com/ipfs/go-datastore/query.Query) (github.com/ipfs/go-datastore/query.Results, error) to func(context.Context, github.com/ipfs/go-datastore/query.Query) (github.com/ipfs/go-datastore/query.Results, error)
(*MapDatastore).Sync: changed from func(Key) error to func(context.Context, Key) error
(*NullDatastore).Delete: changed from func(Key) error to func(context.Context, Key) error
(*NullDatastore).Get: changed from func(Key) ([]byte, error) to func(context.Context, Key) ([]byte, error)
(*NullDatastore).GetSize: changed from func(Key) (int, error) to func(context.Context, Key) (int, error)
(*NullDatastore).Has: changed from func(Key) (bool, error) to func(context.Context, Key) (bool, error)
(*NullDatastore).Put: changed from func(Key, []byte) error to func(context.Context, Key, []byte) error
(*NullDatastore).Query: changed from func(github.com/ipfs/go-datastore/query.Query) (github.com/ipfs/go-datastore/query.Results, error) to func(context.Context, github.com/ipfs/go-datastore/query.Query) (github.com/ipfs/go-datastore/query.Results, error)
(*NullDatastore).Sync: changed from func(Key) error to func(context.Context, Key) error
Batch.Commit: changed from func() error to func(context.Context) error
Batching.Batch: changed from func() (Batch, error) to func(context.Context) (Batch, error)
CheckedDatastore.Check: changed from func() error to func(context.Context) error
Datastore.Sync: changed from func(Key) error to func(context.Context, Key) error
DiskUsage: changed from func(Datastore) (uint64, error) to func(context.Context, Datastore) (uint64, error)
GCDatastore.CollectGarbage: changed from func() error to func(context.Context) error
GetBackedHas: changed from func(Read, Key) (bool, error) to func(context.Context, Read, Key) (bool, error)
GetBackedSize: changed from func(Read, Key) (int, error) to func(context.Context, Read, Key) (int, error)
PersistentDatastore.DiskUsage: changed from func() (uint64, error) to func(context.Context) (uint64, error)
Read.Get: changed from func(Key) ([]byte, error) to func(context.Context, Key) ([]byte, error)
Read.GetSize: changed from func(Key) (int, error) to func(context.Context, Key) (int, error)
Read.Has: changed from func(Key) (bool, error) to func(context.Context, Key) (bool, error)
Read.Query: changed from func(github.com/ipfs/go-datastore/query.Query) (github.com/ipfs/go-datastore/query.Results, error) to func(context.Context, github.com/ipfs/go-datastore/query.Query) (github.com/ipfs/go-datastore/query.Results, error)
ScrubbedDatastore.Scrub: changed from func() error to func(context.Context) error
TTL.GetExpiration: changed from func(Key) (time.Time, error) to func(context.Context, Key) (time.Time, error)
TTL.PutWithTTL: changed from func(Key, []byte, time.Duration) error to func(context.Context, Key, []byte, time.Duration) error
TTL.SetTTL: changed from func(Key, time.Duration) error to func(context.Context, Key, time.Duration) error
Txn.Commit: changed from func() error to func(context.Context) error
Txn.Discard: changed from func() to func(context.Context)
TxnDatastore.NewTransaction: changed from func(bool) (Txn, error) to func(context.Context, bool) (Txn, error)
Write.Delete: changed from func(Key) error to func(context.Context, Key) error
Write.Put: changed from func(Key, []byte) error to func(context.Context, Key, []byte) error

# github.com/ipfs/go-datastore/autobatch
## incompatible changes
(*Datastore).Delete: changed from func(github.com/ipfs/go-datastore.Key) error to func(context.Context, github.com/ipfs/go-datastore.Key) error
(*Datastore).DiskUsage: changed from func() (uint64, error) to func(context.Context) (uint64, error)
(*Datastore).Flush: changed from func() error to func(context.Context) error
(*Datastore).Get: changed from func(github.com/ipfs/go-datastore.Key) ([]byte, error) to func(context.Context, github.com/ipfs/go-datastore.Key) ([]byte, error)
(*Datastore).GetSize: changed from func(github.com/ipfs/go-datastore.Key) (int, error) to func(context.Context, github.com/ipfs/go-datastore.Key) (int, error)
(*Datastore).Has: changed from func(github.com/ipfs/go-datastore.Key) (bool, error) to func(context.Context, github.com/ipfs/go-datastore.Key) (bool, error)
(*Datastore).Put: changed from func(github.com/ipfs/go-datastore.Key, []byte) error to func(context.Context, github.com/ipfs/go-datastore.Key, []byte) error
(*Datastore).Query: changed from func(github.com/ipfs/go-datastore/query.Query) (github.com/ipfs/go-datastore/query.Results, error) to func(context.Context, github.com/ipfs/go-datastore/query.Query) (github.com/ipfs/go-datastore/query.Results, error)
(*Datastore).Sync: changed from func(github.com/ipfs/go-datastore.Key) error to func(context.Context, github.com/ipfs/go-datastore.Key) error

# github.com/ipfs/go-datastore/delayed
## incompatible changes
(*Delayed).Batch: changed from func() (github.com/ipfs/go-datastore.Batch, error) to func(context.Context) (github.com/ipfs/go-datastore.Batch, error)
(*Delayed).Delete: changed from func(github.com/ipfs/go-datastore.Key) error to func(context.Context, github.com/ipfs/go-datastore.Key) error
(*Delayed).DiskUsage: changed from func() (uint64, error) to func(context.Context) (uint64, error)
(*Delayed).Get: changed from func(github.com/ipfs/go-datastore.Key) ([]byte, error) to func(context.Context, github.com/ipfs/go-datastore.Key) ([]byte, error)
(*Delayed).GetSize: changed from func(github.com/ipfs/go-datastore.Key) (int, error) to func(context.Context, github.com/ipfs/go-datastore.Key) (int, error)
(*Delayed).Has: changed from func(github.com/ipfs/go-datastore.Key) (bool, error) to func(context.Context, github.com/ipfs/go-datastore.Key) (bool, error)
(*Delayed).Put: changed from func(github.com/ipfs/go-datastore.Key, []byte) error to func(context.Context, github.com/ipfs/go-datastore.Key, []byte) error
(*Delayed).Query: changed from func(github.com/ipfs/go-datastore/query.Query) (github.com/ipfs/go-datastore/query.Results, error) to func(context.Context, github.com/ipfs/go-datastore/query.Query) (github.com/ipfs/go-datastore/query.Results, error)
(*Delayed).Sync: changed from func(github.com/ipfs/go-datastore.Key) error to func(context.Context, github.com/ipfs/go-datastore.Key) error

# github.com/ipfs/go-datastore/examples
## incompatible changes
(*Datastore).Batch: changed from func() (github.com/ipfs/go-datastore.Batch, error) to func(context.Context) (github.com/ipfs/go-datastore.Batch, error)
(*Datastore).Delete: changed from func(github.com/ipfs/go-datastore.Key) error to func(context.Context, github.com/ipfs/go-datastore.Key) error
(*Datastore).DiskUsage: changed from func() (uint64, error) to func(context.Context) (uint64, error)
(*Datastore).Get: changed from func(github.com/ipfs/go-datastore.Key) ([]byte, error) to func(context.Context, github.com/ipfs/go-datastore.Key) ([]byte, error)
(*Datastore).GetSize: changed from func(github.com/ipfs/go-datastore.Key) (int, error) to func(context.Context, github.com/ipfs/go-datastore.Key) (int, error)
(*Datastore).Has: changed from func(github.com/ipfs/go-datastore.Key) (bool, error) to func(context.Context, github.com/ipfs/go-datastore.Key) (bool, error)
(*Datastore).Put: changed from func(github.com/ipfs/go-datastore.Key, []byte) error to func(context.Context, github.com/ipfs/go-datastore.Key, []byte) error
(*Datastore).Query: changed from func(github.com/ipfs/go-datastore/query.Query) (github.com/ipfs/go-datastore/query.Results, error) to func(context.Context, github.com/ipfs/go-datastore/query.Query) (github.com/ipfs/go-datastore/query.Results, error)
(*Datastore).Sync: changed from func(github.com/ipfs/go-datastore.Key) error to func(context.Context, github.com/ipfs/go-datastore.Key) error

# github.com/ipfs/go-datastore/failstore
## incompatible changes
(*FailBatch).Commit: changed from func() error to func(context.Context) error
(*FailBatch).Delete: changed from func(github.com/ipfs/go-datastore.Key) error to func(context.Context, github.com/ipfs/go-datastore.Key) error
(*FailBatch).Put: changed from func(github.com/ipfs/go-datastore.Key, []byte) error to func(context.Context, github.com/ipfs/go-datastore.Key, []byte) error
(*Failstore).Batch: changed from func() (github.com/ipfs/go-datastore.Batch, error) to func(context.Context) (github.com/ipfs/go-datastore.Batch, error)
(*Failstore).Delete: changed from func(github.com/ipfs/go-datastore.Key) error to func(context.Context, github.com/ipfs/go-datastore.Key) error
(*Failstore).DiskUsage: changed from func() (uint64, error) to func(context.Context) (uint64, error)
(*Failstore).Get: changed from func(github.com/ipfs/go-datastore.Key) ([]byte, error) to func(context.Context, github.com/ipfs/go-datastore.Key) ([]byte, error)
(*Failstore).GetSize: changed from func(github.com/ipfs/go-datastore.Key) (int, error) to func(context.Context, github.com/ipfs/go-datastore.Key) (int, error)
(*Failstore).Has: changed from func(github.com/ipfs/go-datastore.Key) (bool, error) to func(context.Context, github.com/ipfs/go-datastore.Key) (bool, error)
(*Failstore).Put: changed from func(github.com/ipfs/go-datastore.Key, []byte) error to func(context.Context, github.com/ipfs/go-datastore.Key, []byte) error
(*Failstore).Query: changed from func(github.com/ipfs/go-datastore/query.Query) (github.com/ipfs/go-datastore/query.Results, error) to func(context.Context, github.com/ipfs/go-datastore/query.Query) (github.com/ipfs/go-datastore/query.Results, error)
(*Failstore).Sync: changed from func(github.com/ipfs/go-datastore.Key) error to func(context.Context, github.com/ipfs/go-datastore.Key) error

# github.com/ipfs/go-datastore/keytransform
## incompatible changes
(*Datastore).Batch: changed from func() (github.com/ipfs/go-datastore.Batch, error) to func(context.Context) (github.com/ipfs/go-datastore.Batch, error)
(*Datastore).Check: changed from func() error to func(context.Context) error
(*Datastore).CollectGarbage: changed from func() error to func(context.Context) error
(*Datastore).Delete: changed from func(github.com/ipfs/go-datastore.Key) error to func(context.Context, github.com/ipfs/go-datastore.Key) error
(*Datastore).DiskUsage: changed from func() (uint64, error) to func(context.Context) (uint64, error)
(*Datastore).Get: changed from func(github.com/ipfs/go-datastore.Key) ([]byte, error) to func(context.Context, github.com/ipfs/go-datastore.Key) ([]byte, error)
(*Datastore).GetSize: changed from func(github.com/ipfs/go-datastore.Key) (int, error) to func(context.Context, github.com/ipfs/go-datastore.Key) (int, error)
(*Datastore).Has: changed from func(github.com/ipfs/go-datastore.Key) (bool, error) to func(context.Context, github.com/ipfs/go-datastore.Key) (bool, error)
(*Datastore).Put: changed from func(github.com/ipfs/go-datastore.Key, []byte) error to func(context.Context, github.com/ipfs/go-datastore.Key, []byte) error
(*Datastore).Query: changed from func(github.com/ipfs/go-datastore/query.Query) (github.com/ipfs/go-datastore/query.Results, error) to func(context.Context, github.com/ipfs/go-datastore/query.Query) (github.com/ipfs/go-datastore/query.Results, error)
(*Datastore).Scrub: changed from func() error to func(context.Context) error
(*Datastore).Sync: changed from func(github.com/ipfs/go-datastore.Key) error to func(context.Context, github.com/ipfs/go-datastore.Key) error

# github.com/ipfs/go-datastore/mount
## incompatible changes
(*Datastore).Batch: changed from func() (github.com/ipfs/go-datastore.Batch, error) to func(context.Context) (github.com/ipfs/go-datastore.Batch, error)
(*Datastore).Check: changed from func() error to func(context.Context) error
(*Datastore).CollectGarbage: changed from func() error to func(context.Context) error
(*Datastore).Delete: changed from func(github.com/ipfs/go-datastore.Key) error to func(context.Context, github.com/ipfs/go-datastore.Key) error
(*Datastore).DiskUsage: changed from func() (uint64, error) to func(context.Context) (uint64, error)
(*Datastore).Get: changed from func(github.com/ipfs/go-datastore.Key) ([]byte, error) to func(context.Context, github.com/ipfs/go-datastore.Key) ([]byte, error)
(*Datastore).GetSize: changed from func(github.com/ipfs/go-datastore.Key) (int, error) to func(context.Context, github.com/ipfs/go-datastore.Key) (int, error)
(*Datastore).Has: changed from func(github.com/ipfs/go-datastore.Key) (bool, error) to func(context.Context, github.com/ipfs/go-datastore.Key) (bool, error)
(*Datastore).Put: changed from func(github.com/ipfs/go-datastore.Key, []byte) error to func(context.Context, github.com/ipfs/go-datastore.Key, []byte) error
(*Datastore).Query: changed from func(github.com/ipfs/go-datastore/query.Query) (github.com/ipfs/go-datastore/query.Results, error) to func(context.Context, github.com/ipfs/go-datastore/query.Query) (github.com/ipfs/go-datastore/query.Results, error)
(*Datastore).Scrub: changed from func() error to func(context.Context) error
(*Datastore).Sync: changed from func(github.com/ipfs/go-datastore.Key) error to func(context.Context, github.com/ipfs/go-datastore.Key) error

# github.com/ipfs/go-datastore/retrystore
## incompatible changes
(*Datastore).DiskUsage: changed from func() (uint64, error) to func(context.Context) (uint64, error)
(*Datastore).Get: changed from func(github.com/ipfs/go-datastore.Key) ([]byte, error) to func(context.Context, github.com/ipfs/go-datastore.Key) ([]byte, error)
(*Datastore).GetSize: changed from func(github.com/ipfs/go-datastore.Key) (int, error) to func(context.Context, github.com/ipfs/go-datastore.Key) (int, error)
(*Datastore).Has: changed from func(github.com/ipfs/go-datastore.Key) (bool, error) to func(context.Context, github.com/ipfs/go-datastore.Key) (bool, error)
(*Datastore).Put: changed from func(github.com/ipfs/go-datastore.Key, []byte) error to func(context.Context, github.com/ipfs/go-datastore.Key, []byte) error
(*Datastore).Sync: changed from func(github.com/ipfs/go-datastore.Key) error to func(context.Context, github.com/ipfs/go-datastore.Key) error
Batching.Batch: changed from func() (github.com/ipfs/go-datastore.Batch, error) to func(context.Context) (github.com/ipfs/go-datastore.Batch, error)
Read.Query: changed from func(github.com/ipfs/go-datastore/query.Query) (github.com/ipfs/go-datastore/query.Results, error) to func(context.Context, github.com/ipfs/go-datastore/query.Query) (github.com/ipfs/go-datastore/query.Results, error)
Write.Delete: changed from func(github.com/ipfs/go-datastore.Key) error to func(context.Context, github.com/ipfs/go-datastore.Key) error

# github.com/ipfs/go-datastore/sync
## incompatible changes
(*MutexDatastore).Batch: changed from func() (github.com/ipfs/go-datastore.Batch, error) to func(context.Context) (github.com/ipfs/go-datastore.Batch, error)
(*MutexDatastore).Check: changed from func() error to func(context.Context) error
(*MutexDatastore).CollectGarbage: changed from func() error to func(context.Context) error
(*MutexDatastore).Delete: changed from func(github.com/ipfs/go-datastore.Key) error to func(context.Context, github.com/ipfs/go-datastore.Key) error
(*MutexDatastore).DiskUsage: changed from func() (uint64, error) to func(context.Context) (uint64, error)
(*MutexDatastore).Get: changed from func(github.com/ipfs/go-datastore.Key) ([]byte, error) to func(context.Context, github.com/ipfs/go-datastore.Key) ([]byte, error)
(*MutexDatastore).GetSize: changed from func(github.com/ipfs/go-datastore.Key) (int, error) to func(context.Context, github.com/ipfs/go-datastore.Key) (int, error)
(*MutexDatastore).Has: changed from func(github.com/ipfs/go-datastore.Key) (bool, error) to func(context.Context, github.com/ipfs/go-datastore.Key) (bool, error)
(*MutexDatastore).Put: changed from func(github.com/ipfs/go-datastore.Key, []byte) error to func(context.Context, github.com/ipfs/go-datastore.Key, []byte) error
(*MutexDatastore).Query: changed from func(github.com/ipfs/go-datastore/query.Query) (github.com/ipfs/go-datastore/query.Results, error) to func(context.Context, github.com/ipfs/go-datastore/query.Query) (github.com/ipfs/go-datastore/query.Results, error)
(*MutexDatastore).Scrub: changed from func() error to func(context.Context) error
(*MutexDatastore).Sync: changed from func(github.com/ipfs/go-datastore.Key) error to func(context.Context, github.com/ipfs/go-datastore.Key) error

# github.com/ipfs/go-datastore/test
## incompatible changes
(*MapDatastore).Batch: changed from func() (github.com/ipfs/go-datastore.Batch, error) to func(context.Context) (github.com/ipfs/go-datastore.Batch, error)
(*MapDatastore).Delete: changed from func(github.com/ipfs/go-datastore.Key) error to func(context.Context, github.com/ipfs/go-datastore.Key) error
(*MapDatastore).Get: changed from func(github.com/ipfs/go-datastore.Key) ([]byte, error) to func(context.Context, github.com/ipfs/go-datastore.Key) ([]byte, error)
(*MapDatastore).GetSize: changed from func(github.com/ipfs/go-datastore.Key) (int, error) to func(context.Context, github.com/ipfs/go-datastore.Key) (int, error)
(*MapDatastore).Has: changed from func(github.com/ipfs/go-datastore.Key) (bool, error) to func(context.Context, github.com/ipfs/go-datastore.Key) (bool, error)
(*MapDatastore).Put: changed from func(github.com/ipfs/go-datastore.Key, []byte) error to func(context.Context, github.com/ipfs/go-datastore.Key, []byte) error
(*MapDatastore).Query: changed from func(github.com/ipfs/go-datastore/query.Query) (github.com/ipfs/go-datastore/query.Results, error) to func(context.Context, github.com/ipfs/go-datastore/query.Query) (github.com/ipfs/go-datastore/query.Results, error)
(*MapDatastore).Sync: changed from func(github.com/ipfs/go-datastore.Key) error to func(context.Context, github.com/ipfs/go-datastore.Key) error
(*testDatastore).Check: changed from func() error to func(context.Context) error
(*testDatastore).CollectGarbage: changed from func() error to func(context.Context) error
(*testDatastore).Scrub: changed from func() error to func(context.Context) error

# summary
Suggested version: v0.5.0

gocompat says:

"github.com/ipfs/go-datastore".GetBackedHas SignatureChanged
"github.com/ipfs/go-datastore".LogDatastore.Put MethodSignatureChanged
"github.com/ipfs/go-datastore".LogDatastore.Sync MethodSignatureChanged
"github.com/ipfs/go-datastore".LogDatastore.Get MethodSignatureChanged
"github.com/ipfs/go-datastore".LogDatastore.Has MethodSignatureChanged
"github.com/ipfs/go-datastore".LogDatastore.GetSize MethodSignatureChanged
"github.com/ipfs/go-datastore".LogDatastore.Delete MethodSignatureChanged
"github.com/ipfs/go-datastore".LogDatastore.DiskUsage MethodSignatureChanged
"github.com/ipfs/go-datastore".LogDatastore.Query MethodSignatureChanged
"github.com/ipfs/go-datastore".LogDatastore.Batch MethodSignatureChanged
"github.com/ipfs/go-datastore".LogDatastore.Check MethodSignatureChanged
"github.com/ipfs/go-datastore".LogDatastore.Scrub MethodSignatureChanged
"github.com/ipfs/go-datastore".LogDatastore.CollectGarbage MethodSignatureChanged
"github.com/ipfs/go-datastore".CheckedDatastore InterfaceChanged
"github.com/ipfs/go-datastore".Shim InterfaceChanged
"github.com/ipfs/go-datastore".Read InterfaceChanged
"github.com/ipfs/go-datastore".Txn InterfaceChanged
"github.com/ipfs/go-datastore".Batch InterfaceChanged
"github.com/ipfs/go-datastore".Datastore InterfaceChanged
"github.com/ipfs/go-datastore".GetBackedSize SignatureChanged
"github.com/ipfs/go-datastore".DiskUsage SignatureChanged
"github.com/ipfs/go-datastore".NullDatastore.Put MethodSignatureChanged
"github.com/ipfs/go-datastore".NullDatastore.Sync MethodSignatureChanged
"github.com/ipfs/go-datastore".NullDatastore.Get MethodSignatureChanged
"github.com/ipfs/go-datastore".NullDatastore.Has MethodSignatureChanged
"github.com/ipfs/go-datastore".NullDatastore.GetSize MethodSignatureChanged
"github.com/ipfs/go-datastore".NullDatastore.Delete MethodSignatureChanged
"github.com/ipfs/go-datastore".NullDatastore.Query MethodSignatureChanged
"github.com/ipfs/go-datastore".ScrubbedDatastore InterfaceChanged
"github.com/ipfs/go-datastore".TTL InterfaceChanged
"github.com/ipfs/go-datastore".Batching InterfaceChanged
"github.com/ipfs/go-datastore".MapDatastore.Put MethodSignatureChanged
"github.com/ipfs/go-datastore".MapDatastore.Sync MethodSignatureChanged
"github.com/ipfs/go-datastore".MapDatastore.Get MethodSignatureChanged
"github.com/ipfs/go-datastore".MapDatastore.Has MethodSignatureChanged
"github.com/ipfs/go-datastore".MapDatastore.GetSize MethodSignatureChanged
"github.com/ipfs/go-datastore".MapDatastore.Delete MethodSignatureChanged
"github.com/ipfs/go-datastore".MapDatastore.Query MethodSignatureChanged
"github.com/ipfs/go-datastore".MapDatastore.Batch MethodSignatureChanged
"github.com/ipfs/go-datastore".PersistentDatastore InterfaceChanged
"github.com/ipfs/go-datastore".TTLDatastore InterfaceChanged
"github.com/ipfs/go-datastore".TxnDatastore InterfaceChanged
"github.com/ipfs/go-datastore".Write InterfaceChanged
"github.com/ipfs/go-datastore".LogBatch.Put MethodSignatureChanged
"github.com/ipfs/go-datastore".LogBatch.Delete MethodSignatureChanged
"github.com/ipfs/go-datastore".LogBatch.Commit MethodSignatureChanged
"github.com/ipfs/go-datastore".GCDatastore InterfaceChanged
"github.com/ipfs/go-datastore/autobatch".Datastore.Delete MethodSignatureChanged
"github.com/ipfs/go-datastore/autobatch".Datastore.Get MethodSignatureChanged
"github.com/ipfs/go-datastore/autobatch".Datastore.Put MethodSignatureChanged
"github.com/ipfs/go-datastore/autobatch".Datastore.Sync MethodSignatureChanged
"github.com/ipfs/go-datastore/autobatch".Datastore.Flush MethodSignatureChanged
"github.com/ipfs/go-datastore/autobatch".Datastore.Has MethodSignatureChanged
"github.com/ipfs/go-datastore/autobatch".Datastore.GetSize MethodSignatureChanged
"github.com/ipfs/go-datastore/autobatch".Datastore.Query MethodSignatureChanged
"github.com/ipfs/go-datastore/autobatch".Datastore.DiskUsage MethodSignatureChanged
"github.com/ipfs/go-datastore/delayed".Delayed.Put MethodSignatureChanged
"github.com/ipfs/go-datastore/delayed".Delayed.Sync MethodSignatureChanged
"github.com/ipfs/go-datastore/delayed".Delayed.Get MethodSignatureChanged
"github.com/ipfs/go-datastore/delayed".Delayed.Has MethodSignatureChanged
"github.com/ipfs/go-datastore/delayed".Delayed.GetSize MethodSignatureChanged
"github.com/ipfs/go-datastore/delayed".Delayed.Delete MethodSignatureChanged
"github.com/ipfs/go-datastore/delayed".Delayed.Query MethodSignatureChanged
"github.com/ipfs/go-datastore/delayed".Delayed.Batch MethodSignatureChanged
"github.com/ipfs/go-datastore/delayed".Delayed.DiskUsage MethodSignatureChanged
"github.com/ipfs/go-datastore/examples".Datastore.Put MethodSignatureChanged
"github.com/ipfs/go-datastore/examples".Datastore.Sync MethodSignatureChanged
"github.com/ipfs/go-datastore/examples".Datastore.Get MethodSignatureChanged
"github.com/ipfs/go-datastore/examples".Datastore.Has MethodSignatureChanged
"github.com/ipfs/go-datastore/examples".Datastore.GetSize MethodSignatureChanged
"github.com/ipfs/go-datastore/examples".Datastore.Delete MethodSignatureChanged
"github.com/ipfs/go-datastore/examples".Datastore.Query MethodSignatureChanged
"github.com/ipfs/go-datastore/examples".Datastore.Batch MethodSignatureChanged
"github.com/ipfs/go-datastore/examples".Datastore.DiskUsage MethodSignatureChanged
"github.com/ipfs/go-datastore/failstore".Failstore.Put MethodSignatureChanged
"github.com/ipfs/go-datastore/failstore".Failstore.Sync MethodSignatureChanged
"github.com/ipfs/go-datastore/failstore".Failstore.Get MethodSignatureChanged
"github.com/ipfs/go-datastore/failstore".Failstore.Has MethodSignatureChanged
"github.com/ipfs/go-datastore/failstore".Failstore.GetSize MethodSignatureChanged
"github.com/ipfs/go-datastore/failstore".Failstore.Delete MethodSignatureChanged
"github.com/ipfs/go-datastore/failstore".Failstore.Query MethodSignatureChanged
"github.com/ipfs/go-datastore/failstore".Failstore.DiskUsage MethodSignatureChanged
"github.com/ipfs/go-datastore/failstore".Failstore.Batch MethodSignatureChanged
"github.com/ipfs/go-datastore/failstore".FailBatch.Put MethodSignatureChanged
"github.com/ipfs/go-datastore/failstore".FailBatch.Delete MethodSignatureChanged
"github.com/ipfs/go-datastore/failstore".FailBatch.Commit MethodSignatureChanged
"github.com/ipfs/go-datastore/keytransform".Datastore.Put MethodSignatureChanged
"github.com/ipfs/go-datastore/keytransform".Datastore.Sync MethodSignatureChanged
"github.com/ipfs/go-datastore/keytransform".Datastore.Get MethodSignatureChanged
"github.com/ipfs/go-datastore/keytransform".Datastore.Has MethodSignatureChanged
"github.com/ipfs/go-datastore/keytransform".Datastore.GetSize MethodSignatureChanged
"github.com/ipfs/go-datastore/keytransform".Datastore.Delete MethodSignatureChanged
"github.com/ipfs/go-datastore/keytransform".Datastore.Query MethodSignatureChanged
"github.com/ipfs/go-datastore/keytransform".Datastore.DiskUsage MethodSignatureChanged
"github.com/ipfs/go-datastore/keytransform".Datastore.Batch MethodSignatureChanged
"github.com/ipfs/go-datastore/keytransform".Datastore.Check MethodSignatureChanged
"github.com/ipfs/go-datastore/keytransform".Datastore.Scrub MethodSignatureChanged
"github.com/ipfs/go-datastore/keytransform".Datastore.CollectGarbage MethodSignatureChanged
"github.com/ipfs/go-datastore/mount".Datastore.Put MethodSignatureChanged
"github.com/ipfs/go-datastore/mount".Datastore.Sync MethodSignatureChanged
"github.com/ipfs/go-datastore/mount".Datastore.Get MethodSignatureChanged
"github.com/ipfs/go-datastore/mount".Datastore.Has MethodSignatureChanged
"github.com/ipfs/go-datastore/mount".Datastore.GetSize MethodSignatureChanged
"github.com/ipfs/go-datastore/mount".Datastore.Delete MethodSignatureChanged
"github.com/ipfs/go-datastore/mount".Datastore.Query MethodSignatureChanged
"github.com/ipfs/go-datastore/mount".Datastore.DiskUsage MethodSignatureChanged
"github.com/ipfs/go-datastore/mount".Datastore.Batch MethodSignatureChanged
"github.com/ipfs/go-datastore/mount".Datastore.Check MethodSignatureChanged
"github.com/ipfs/go-datastore/mount".Datastore.Scrub MethodSignatureChanged
"github.com/ipfs/go-datastore/mount".Datastore.CollectGarbage MethodSignatureChanged
"github.com/ipfs/go-datastore/retrystore".Datastore.DiskUsage MethodSignatureChanged
"github.com/ipfs/go-datastore/retrystore".Datastore.Get MethodSignatureChanged
"github.com/ipfs/go-datastore/retrystore".Datastore.Put MethodSignatureChanged
"github.com/ipfs/go-datastore/retrystore".Datastore.Sync MethodSignatureChanged
"github.com/ipfs/go-datastore/retrystore".Datastore.Has MethodSignatureChanged
"github.com/ipfs/go-datastore/retrystore".Datastore.GetSize MethodSignatureChanged
"github.com/ipfs/go-datastore/sync".MutexDatastore.Put MethodSignatureChanged
"github.com/ipfs/go-datastore/sync".MutexDatastore.Sync MethodSignatureChanged
"github.com/ipfs/go-datastore/sync".MutexDatastore.Get MethodSignatureChanged
"github.com/ipfs/go-datastore/sync".MutexDatastore.Has MethodSignatureChanged
"github.com/ipfs/go-datastore/sync".MutexDatastore.GetSize MethodSignatureChanged
"github.com/ipfs/go-datastore/sync".MutexDatastore.Delete MethodSignatureChanged
"github.com/ipfs/go-datastore/sync".MutexDatastore.Query MethodSignatureChanged
"github.com/ipfs/go-datastore/sync".MutexDatastore.Batch MethodSignatureChanged
"github.com/ipfs/go-datastore/sync".MutexDatastore.DiskUsage MethodSignatureChanged
"github.com/ipfs/go-datastore/sync".MutexDatastore.Check MethodSignatureChanged
"github.com/ipfs/go-datastore/sync".MutexDatastore.Scrub MethodSignatureChanged
"github.com/ipfs/go-datastore/sync".MutexDatastore.CollectGarbage MethodSignatureChanged