forked from mirror/redis
Update changelog
This commit is contained in:
parent
c89ef0aacf
commit
6a1b941a69
|
@ -4,12 +4,16 @@
|
||||||
|
|
||||||
## v8
|
## v8
|
||||||
|
|
||||||
|
### v8.0
|
||||||
|
|
||||||
- Documentation at https://redis.uptrace.dev/
|
- Documentation at https://redis.uptrace.dev/
|
||||||
|
|
||||||
- All commands require `context.Context` as a first argument, e.g. `rdb.Ping(ctx)`. If you are not
|
- All commands require `context.Context` as a first argument, e.g. `rdb.Ping(ctx)`. If you are not
|
||||||
using `context.Context` yet, the simplest option is to define global package variable
|
using `context.Context` yet, the simplest option is to define global package variable
|
||||||
`var ctx = context.TODO()` and use it when `ctx` is required.
|
`var ctx = context.TODO()` and use it when `ctx` is required.
|
||||||
|
|
||||||
|
- Full support for `context.Context` canceling.
|
||||||
|
|
||||||
- Added `redis.NewFailoverClusterClient` that supports routing read-only commands to a slave node.
|
- Added `redis.NewFailoverClusterClient` that supports routing read-only commands to a slave node.
|
||||||
|
|
||||||
- Added `redisext.OpenTemetryHook` that adds
|
- Added `redisext.OpenTemetryHook` that adds
|
||||||
|
|
Loading…
Reference in New Issue