Skip to content

Latest commit

 

History

History
22 lines (15 loc) · 1.38 KB

CHANGELOG.md

File metadata and controls

22 lines (15 loc) · 1.38 KB

Changelog

All notable changes to this project will be documented in this file.

The format is based on Keep a Changelog, and this project adheres to Semantic Versioning.

3.0.0

  • BREAKING: evalscript method signature is now changed to take keys and args as separate arguments. (Ref: #109)
  • BREAKING: evalscript method now does not convert return values to String or Vector{String}. Instead the exact returned type from script is returned. (Ref: #110)
  • evalscript is now allowed with PipelineConnection and TransactionConnection.

2.1.0

  • TLS support added. RedisConnection now accepts an optional sslconfig parameter that can contain an instance of MbedTLS.SSLConfig to use for TLS. (Ref: #103)
  • New psubscribe_data method added, similar to the existing subscribe_data method, but for pattern subscriptions. (Ref: #102)

Fixes:

  • Fixes to avoid worldage issue in subscription callback (Ref: #100)
  • Improvements to command execution speed (Ref: #97)
  • Other miscellaneous fixes and improvements to CI