All Versions
18
Latest Version
Avg Release Cycle
66 days
Latest Release
370 days ago
Changelog History
Page 1
Changelog History
Page 1
-
v2.6.0 Changes
April 08, 2020- ๐ Support Crystal 0.34.0. Older Crystal versions will not work anymore. Thank you @bcardiff
-
v2.5.3 Changes
January 04, 2020- ๐ Fix brpop exception when popping fails - thanks to @vince94320
-
v2.5.2 Changes
December 29, 2019- ๐ Fix the return type of
hmget
- thanks @vince94320
- ๐ Fix the return type of
-
v2.5.1 Changes
December 28, 2019 -
v2.5.0 Changes
November 30, 2019- ๐ Performance optimization: Send transaction commands ("MULTI") pipelined (#86) - thanks @pgeraghty
-
v2.4.1 Changes
November 30, 2019 -
v2.4.0 Changes
November 30, 2019 -
v2.3.0 Changes
August 21, 2019- โ Add array overloads to splat-only methods - thanks to @dscottboggs!
โ Warning: I believe there is potential for this change to break existing code. I am adding it despite this risk because I believe that this provides a path towards a better API.
๐ Also, the PR adds lots of methods to the API. I may want to remove the old splat based methods in a version 3.
- โ Add array overloads to splat-only methods - thanks to @dscottboggs!
-
v2.2.1 Changes
June 28, 2019 -
v2.2.0 Changes
May 15, 2019- ๐ Allows
del
to be called with an array of keys likeredis.del([a, b, c])
, as an alternative toredis.del(a, b, c)
- thanks to @rodrigopinto
- ๐ Allows