Skip to content

Commit 52bda7a

Browse files
authored
chore(release): 9.13.0 (#3500)
1 parent 19fdc48 commit 52bda7a

File tree

13 files changed

+60
-16
lines changed

13 files changed

+60
-16
lines changed

RELEASE-NOTES.md

Lines changed: 44 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,49 @@
11
# Release Notes
22

3+
# 9.13.0 (2025-09-03)
4+
5+
## Highlights
6+
- Pipeliner expose queued commands ([#3496](https://github.com/redis/go-redis/pull/3496))
7+
- Ensure that JSON.GET returns Nil response ([#3470](https://github.com/redis/go-redis/pull/3470))
8+
- Fixes on Read and Write buffer sizes and UniversalOptions
9+
10+
## Changes
11+
- Pipeliner expose queued commands ([#3496](https://github.com/redis/go-redis/pull/3496))
12+
- fix(test): fix a timing issue in pubsub test ([#3498](https://github.com/redis/go-redis/pull/3498))
13+
- Allow users to enable read-write splitting in failover mode. ([#3482](https://github.com/redis/go-redis/pull/3482))
14+
- Set the read/write buffer size of the sentinel client to 4KiB ([#3476](https://github.com/redis/go-redis/pull/3476))
15+
16+
## 🚀 New Features
17+
18+
- fix(otel): register wait metrics ([#3499](https://github.com/redis/go-redis/pull/3499))
19+
- Support subscriptions against cluster slave nodes ([#3480](https://github.com/redis/go-redis/pull/3480))
20+
- Add wait metrics to otel ([#3493](https://github.com/redis/go-redis/pull/3493))
21+
- Clean failing timeout implementation ([#3472](https://github.com/redis/go-redis/pull/3472))
22+
23+
## 🐛 Bug Fixes
24+
25+
- Do not assume that all non-IP hosts are loopbacks ([#3085](https://github.com/redis/go-redis/pull/3085))
26+
- Ensure that JSON.GET returns Nil response ([#3470](https://github.com/redis/go-redis/pull/3470))
27+
28+
## 🧰 Maintenance
29+
30+
- fix(otel): register wait metrics ([#3499](https://github.com/redis/go-redis/pull/3499))
31+
- fix(make test): Add default env in makefile ([#3491](https://github.com/redis/go-redis/pull/3491))
32+
- Update the introduction to running tests in README.md ([#3495](https://github.com/redis/go-redis/pull/3495))
33+
- test: Add comprehensive edge case tests for IncrByFloat command ([#3477](https://github.com/redis/go-redis/pull/3477))
34+
- Set the default read/write buffer size of Redis connection to 32KiB ([#3483](https://github.com/redis/go-redis/pull/3483))
35+
- Bumps test image to 8.2.1-pre ([#3478](https://github.com/redis/go-redis/pull/3478))
36+
- fix UniversalOptions miss ReadBufferSize and WriteBufferSize options ([#3485](https://github.com/redis/go-redis/pull/3485))
37+
- chore(deps): bump actions/checkout from 4 to 5 ([#3484](https://github.com/redis/go-redis/pull/3484))
38+
- Removes dry run for stale issues policy ([#3471](https://github.com/redis/go-redis/pull/3471))
39+
- Update otel metrics URL ([#3474](https://github.com/redis/go-redis/pull/3474))
40+
41+
## Contributors
42+
We'd like to thank all the contributors who worked on this release!
43+
44+
[@LINKIWI](https://github.com/LINKIWI), [@cxljs](https://github.com/cxljs), [@cybersmeashish](https://github.com/cybersmeashish), [@elena-kolevska](https://github.com/elena-kolevska), [@htemelski-redis](https://github.com/htemelski-redis), [@mwhooker](https://github.com/mwhooker), [@ndyakov](https://github.com/ndyakov), [@ofekshenawa](https://github.com/ofekshenawa), [@suever](https://github.com/suever)
45+
46+
347
# 9.12.1 (2025-08-11)
448
## 🚀 Highlights
549
In the last version (9.12.0) the client introduced bigger write and read buffer sized. The default value we set was 512KiB.

example/del-keys-without-ttl/go.mod

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ go 1.18
55
replace github.com/redis/go-redis/v9 => ../..
66

77
require (
8-
github.com/redis/go-redis/v9 v9.12.1
8+
github.com/redis/go-redis/v9 v9.13.0
99
go.uber.org/zap v1.24.0
1010
)
1111

example/hll/go.mod

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ go 1.18
44

55
replace github.com/redis/go-redis/v9 => ../..
66

7-
require github.com/redis/go-redis/v9 v9.12.1
7+
require github.com/redis/go-redis/v9 v9.13.0
88

99
require (
1010
github.com/cespare/xxhash/v2 v2.3.0 // indirect

example/hset-struct/go.mod

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ replace github.com/redis/go-redis/v9 => ../..
66

77
require (
88
github.com/davecgh/go-spew v1.1.1
9-
github.com/redis/go-redis/v9 v9.12.1
9+
github.com/redis/go-redis/v9 v9.13.0
1010
)
1111

1212
require (

example/lua-scripting/go.mod

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ go 1.18
44

55
replace github.com/redis/go-redis/v9 => ../..
66

7-
require github.com/redis/go-redis/v9 v9.12.1
7+
require github.com/redis/go-redis/v9 v9.13.0
88

99
require (
1010
github.com/cespare/xxhash/v2 v2.3.0 // indirect

example/otel/go.mod

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -11,8 +11,8 @@ replace github.com/redis/go-redis/extra/redisotel/v9 => ../../extra/redisotel
1111
replace github.com/redis/go-redis/extra/rediscmd/v9 => ../../extra/rediscmd
1212

1313
require (
14-
github.com/redis/go-redis/extra/redisotel/v9 v9.12.1
15-
github.com/redis/go-redis/v9 v9.12.1
14+
github.com/redis/go-redis/extra/redisotel/v9 v9.13.0
15+
github.com/redis/go-redis/v9 v9.13.0
1616
github.com/uptrace/uptrace-go v1.21.0
1717
go.opentelemetry.io/otel v1.22.0
1818
)
@@ -25,7 +25,7 @@ require (
2525
github.com/go-logr/stdr v1.2.2 // indirect
2626
github.com/golang/protobuf v1.5.3 // indirect
2727
github.com/grpc-ecosystem/grpc-gateway/v2 v2.19.0 // indirect
28-
github.com/redis/go-redis/extra/rediscmd/v9 v9.12.1 // indirect
28+
github.com/redis/go-redis/extra/rediscmd/v9 v9.13.0 // indirect
2929
go.opentelemetry.io/contrib/instrumentation/runtime v0.46.1 // indirect
3030
go.opentelemetry.io/otel/exporters/otlp/otlpmetric/otlpmetricgrpc v0.44.0 // indirect
3131
go.opentelemetry.io/otel/exporters/otlp/otlptrace v1.21.0 // indirect

example/redis-bloom/go.mod

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ go 1.18
44

55
replace github.com/redis/go-redis/v9 => ../..
66

7-
require github.com/redis/go-redis/v9 v9.12.1
7+
require github.com/redis/go-redis/v9 v9.13.0
88

99
require (
1010
github.com/cespare/xxhash/v2 v2.3.0 // indirect

example/scan-struct/go.mod

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ replace github.com/redis/go-redis/v9 => ../..
66

77
require (
88
github.com/davecgh/go-spew v1.1.1
9-
github.com/redis/go-redis/v9 v9.12.1
9+
github.com/redis/go-redis/v9 v9.13.0
1010
)
1111

1212
require (

extra/rediscensus/go.mod

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,8 @@ replace github.com/redis/go-redis/v9 => ../..
77
replace github.com/redis/go-redis/extra/rediscmd/v9 => ../rediscmd
88

99
require (
10-
github.com/redis/go-redis/extra/rediscmd/v9 v9.12.1
11-
github.com/redis/go-redis/v9 v9.12.1
10+
github.com/redis/go-redis/extra/rediscmd/v9 v9.13.0
11+
github.com/redis/go-redis/v9 v9.13.0
1212
go.opencensus.io v0.24.0
1313
)
1414

extra/rediscmd/go.mod

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ replace github.com/redis/go-redis/v9 => ../..
77
require (
88
github.com/bsm/ginkgo/v2 v2.12.0
99
github.com/bsm/gomega v1.27.10
10-
github.com/redis/go-redis/v9 v9.12.1
10+
github.com/redis/go-redis/v9 v9.13.0
1111
)
1212

1313
require (

0 commit comments

Comments
 (0)