Skip to content

Commit b273d2b

Browse files
committed
Update changelog
1 parent 20fca37 commit b273d2b

File tree

2 files changed

+5
-2
lines changed

2 files changed

+5
-2
lines changed

CHANGELOG.md

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,11 +7,12 @@
77
- All commands require `context.Context` as a first argument, e.g. `rdb.Ping(ctx)`. If you are not
88
using `context.Context` yet, the simplest option is to define global package variable
99
`var ctx = context.TODO()` and use it when `ctx` is required.
10-
- `Cluster.ForEachNode` is renamed to `ForEachShard` for consistency with `Ring`.
1110

1211
- Added `redisext.OpenTemetryHook` that adds
1312
[Redis OpenTelemetry instrumentation](https://redis.uptrace.dev/tracing/).
1413

14+
- Redis slow log support.
15+
1516
- Ring uses Rendezvous Hashing by default which provides better distribution. You need to move
1617
existing keys to a new location or keys will be inaccessible / lost. To use old hashing scheme:
1718

@@ -25,6 +26,8 @@ ring := redis.NewRing(&redis.RingOptions{
2526
})
2627
```
2728

29+
- `Cluster.ForEachNode` is renamed to `ForEachShard` for consistency with `Ring`.
30+
2831
## v7.3
2932

3033
- New option `Options.Username` which causes client to use `AuthACL`. Be aware if your connection

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020

2121
## Features
2222

23-
- Redis 3 commands except QUIT, MONITOR, SLOWLOG and SYNC.
23+
- Redis 3 commands except QUIT, MONITOR, and SYNC.
2424
- Automatic connection pooling with
2525
[circuit breaker](https://en.wikipedia.org/wiki/Circuit_breaker_design_pattern) support.
2626
- [Pub/Sub](https://pkg.go.dev/github.com/go-redis/redis/v8?tab=doc#PubSub).

0 commit comments

Comments
 (0)