Skip to content

Releases: stefanwille/crystal-redis

Release 1.7.1

06 Jan 18:14
Compare
Choose a tag to compare
  • Compatability with Crystal 0.20.4 (default argument types now must match their restriction - #33) - thanks to maiha

Release 1.7.0

29 Dec 20:05
Compare
Choose a tag to compare
  • Fix Crystal 0.20.3 chomping in socket.gets - thanks to kostya

Release 1.6.7

26 Aug 14:31
Compare
Choose a tag to compare
  • Raise an error message when an invalid command is sent on a subscribed (PUB/SUB) connection
  • Compatibility with select becoming a keyword in the next Crystal version (#30)

Release 1.6.6

25 Jul 18:30
Compare
Choose a tag to compare
  • Add an exception class for disconnected error - thanks Konstantin Makarchev

Release 1.6.5

27 Jun 18:39
Compare
Choose a tag to compare
  • Feature: Redis#url returns the server URI for the client - thanks to Mike Perham!

Relase 1.6.4

22 Jun 06:40
Compare
Choose a tag to compare
  • Fix SPOP (which crashed when Redis returned null, #22) - thanks Zach Chadwick

Release 1.6.3

18 Jun 19:12
Compare
Choose a tag to compare
  • Feature: Connect to Redis via Unix domain socket
  • Feature: Select the database directly in the constructor
  • Feature: Allow mget to take a dynamic array of keys - thanks Mike Perham
  • Force correct type for mset argument - thanks Mike Perham

Release 1.6.2

02 Jun 19:39
Compare
Choose a tag to compare
  • Allow sadd/srem to take an Array of values
  • Add the info command (this and sadd/srem change thanks to Mike Perham)

Release 1.6.1

27 May 15:04
Compare
Choose a tag to compare
  • Fix MATCH and COUNT options in scan, sscan, hscan, zscan - thank you @maiha!

Release 1.6.0

27 May 10:22
Compare
Choose a tag to compare
  • Compatibility with Crystal 0.17.4 - thanks to Rayner De Los Santos F. and Mike Perham!
  • Add flushdb, flushall commands - Mike Perham
  • lpush and zadd accept array arguments - Mike Perham