Releases: hashicorp/go-memdb
Releases · hashicorp/go-memdb
v1.3.4
v1.3.3
What's Changed
- Fix combination generator in CompoundMultiIndex by @eculver in #108
- Fix Int indexes to make them sortable. by @jakedt in #114
- Clarify usage of WatchSet methods and behaviour of First/Last by @radeksimko in #118
- Document _prefix index matching for queries by @dnephin in #89
- Document error return value of WatchSet.WatchCtx by @dnephin in #119
- docs/txn: note additional no-op Abort & Commit cases by @radeksimko in #120
- introduce MemDB.DBSchema() method for introspection by @radeksimko in #121
New Contributors
- @eculver made their first contribution in #108
- @radeksimko made their first contribution in #118
Full Changelog: v1.3.2...v1.3.3
v1.3.2
v1.3.1
v1.3.0
Adds support for go-immutable-radix v1.3.0
Adds Last()
, GetReverse()
, ReverseLowerBound()
to support working with entries in reverse order (latest to oldest)
v1.2.0
Adds Txn.Snapshot
method to return a read-only snapshot of the current transaction. Thanks to @feldgendler.