Commit e12c6121 authored by mgravell's avatar mgravell

documentation/release notes: support for user+password based authentication (redis 6)

parent 06fd1568
......@@ -75,6 +75,7 @@ The `ConfigurationOptions` object has a wide range of properties, all of which a
| keepAlive={int} | `KeepAlive` | `-1` | Time (seconds) at which to send a message to help keep sockets alive (60 sec default) |
| name={string} | `ClientName` | `null` | Identification for the connection within redis |
| password={string} | `Password` | `null` | Password for the redis server |
| user={string} | `User` | `null` | User for the redis server (for use with ACLs on redis 6 and above) |
| proxy={proxy type} | `Proxy` | `Proxy.None` | Type of proxy in use (if any); for example "twemproxy" |
| resolveDns={bool} | `ResolveDns` | `false` | Specifies that DNS resolution should be explicit and eager, rather than implicit |
| responseTimeout={int} | `ResponseTimeout` | `SyncTimeout` | Time (ms) to decide whether the socket is unhealthy |
......
......@@ -8,6 +8,7 @@
- change: tweak methods of new sentinel API (this is technically a breaking change, but since this is a new API that was pulled quickly, we consider this to be acceptable)
- add: new thread`SocketManager` mode (opt-in) to always use the regular thread-pool instead of the dedicated pool
- add: improved counters in/around error messages
- add: new `User` property on `ConfigurationOptions`
- build: enable deterministic builds
## 2.1.0
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment