Skip to content

v0.12.0

Compare
Choose a tag to compare
@github-actions github-actions released this 09 Mar 02:33
· 339 commits to main since this release
f7fa565

0.12.0 (2023-03-09)

Breaking Changes

  • SortedSetFetch ByIndex and ByScore & response Value methods (#241) (d50c981)

* feat!: SortedSetFetch
  * Added ByIndex, ByScore options
* feat!: Add SortedSetFetchHit.ValueStringElements and ValueStringBytes

Make the struct members private.

* feat!: Replace ElemField/ElemValue with Field/Value

This is the last place that prefixes with "Elem" or "Element".

* feat!: Element -> DictionaryElement

To distinguish from all the other elements.

* fix: prepareDictionaryElements typo

Co-authored-by: pgautier404 <pgautier404@users.noreply.github.com>

* doc: Reword the DictionaryElement docs.

---------

Co-authored-by: pgautier404 <pgautier404@users.noreply.github.com>

* SortedSetGetScoresHit
  * Make members private
  * Add Scores() accessor
* SortedSetScoreElement -> SortedSetGetScore
  * They're not elements, and they're not just scores.

* feat!: SortedSetGetRankHit.Rank() and uint64 type conversion.
* feat!: SortedSetGetRank takes Value, SortedSetGetScores takes Values.
* feat!: SortedSetIncrementScoreSuccess is a type conversion. Add Score().
* feat!: SortedSetRemove takes only values.
A sorted set can be deleted with `client.Delete(collectionName)`.

Feature

Bug Fixes

Chores