CHANGELOG.md in redis-client-0.16.0 vs CHANGELOG.md in redis-client-0.17.0
- old
+ new
@@ -1,7 +1,11 @@
# Unreleased
+# 0.17.0
+
+- Adds `sentinel_username` and `sentinel_password` options for `RedisClient#sentinel`
+
# 0.16.0
- Add `RedisClient#disable_reconnection`.
- Reverted the special discard of connection. A regular `close(2)` should be enough.
@@ -69,11 +73,11 @@
# 0.8.1
- Make the client resilient to `Timeout.timeout` or `Thread#kill` use (it still is very much discouraged to use either).
Use of async interrupts could cause responses to be interleaved.
-- hiredis: handle commands returning a top-level `false` (no command does this today, but some extensions might).
+- hiredis: handle commands returning a top-level `false` (no command does this today, but some extensions might).
- Workaround a bug in Ruby 2.6 causing a crash if the `debug` gem is enabled when `redis-client` is being required. Fix: #48
# 0.8.0
- Add a `connect` interface to the instrumentation API.
@@ -88,10 +92,10 @@
# 0.7.2
- Raise a distinct `RedisClient::OutOfMemoryError`, for Redis `OOM` errors.
- Fix the instrumentation API to be called even for authentication commands.
-- Fix `url:` configuration to accept a trailing slash.
+- Fix `url:` configuration to accept a trailing slash.
# 0.7.1
- Fix `#pubsub` being called when reconnection is disabled (redis-rb compatibility fix).