Skip to content

Commit f195656

Browse files
authored
chore(release): 9.16.0 (#3557)
* notes * bump version
1 parent 70dfa38 commit f195656

File tree

15 files changed

+294
-50
lines changed

15 files changed

+294
-50
lines changed

RELEASE-NOTES.md

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

3+
# 9.16.0 (2025-10-23)
4+
5+
## 🚀 Highlights
6+
7+
### Maintenance Notifications Support
8+
9+
This release introduces comprehensive support for Redis maintenance notifications, enabling applications to handle server maintenance events gracefully. The new `maintnotifications` package provides:
10+
11+
- **RESP3 Push Notifications**: Full support for Redis RESP3 protocol push notifications
12+
- **Connection Handoff**: Automatic connection migration during server maintenance with configurable retry policies and circuit breakers
13+
- **Graceful Degradation**: Configurable timeout relaxation during maintenance windows to prevent false failures
14+
- **Event-Driven Architecture**: Background workers with on-demand scaling for efficient handoff processing
15+
- **Production-Ready**: Comprehensive E2E testing framework and monitoring capabilities
16+
17+
For detailed usage examples and configuration options, see the [maintenance notifications documentation](maintnotifications/README.md).
18+
19+
## ✨ New Features
20+
21+
- **Trace Filtering**: Add support for filtering traces for specific commands, including pipeline operations and dial operations ([#3519](https://github.com/redis/go-redis/pull/3519), [#3550](https://github.com/redis/go-redis/pull/3550))
22+
- New `TraceCmdFilter` option to selectively trace commands
23+
- Reduces overhead by excluding high-frequency or low-value commands from traces
24+
25+
## 🐛 Bug Fixes
26+
27+
- **Pipeline Error Handling**: Fix issue where pipeline repeatedly sets the same error ([#3525](https://github.com/redis/go-redis/pull/3525))
28+
- **Connection Pool**: Ensure re-authentication does not interfere with connection handoff operations ([#3547](https://github.com/redis/go-redis/pull/3547))
29+
30+
## 🔧 Improvements
31+
32+
- **Hash Commands**: Update hash command implementations ([#3523](https://github.com/redis/go-redis/pull/3523))
33+
- **OpenTelemetry**: Use `metric.WithAttributeSet` to avoid unnecessary attribute copying in redisotel ([#3552](https://github.com/redis/go-redis/pull/3552))
34+
35+
## 📚 Documentation
36+
37+
- **Cluster Client**: Add explanation for why `MaxRetries` is disabled for `ClusterClient` ([#3551](https://github.com/redis/go-redis/pull/3551))
38+
39+
## 🧪 Testing & Infrastructure
40+
41+
- **E2E Testing**: Upgrade E2E testing framework with improved reliability and coverage ([#3541](https://github.com/redis/go-redis/pull/3541))
42+
- **Release Process**: Improved resiliency of the release process ([#3530](https://github.com/redis/go-redis/pull/3530))
43+
44+
## 📦 Dependencies
45+
46+
- Bump `rojopolis/spellcheck-github-actions` from 0.51.0 to 0.52.0 ([#3520](https://github.com/redis/go-redis/pull/3520))
47+
- Bump `github/codeql-action` from 3 to 4 ([#3544](https://github.com/redis/go-redis/pull/3544))
48+
49+
## 👥 Contributors
50+
51+
We'd like to thank all the contributors who worked on this release!
52+
53+
[@ndyakov](https://github.com/ndyakov), [@htemelski-redis](https://github.com/htemelski-redis), [@Sovietaced](https://github.com/Sovietaced), [@Udhayarajan](https://github.com/Udhayarajan), [@boekkooi-impossiblecloud](https://github.com/boekkooi-impossiblecloud), [@Pika-Gopher](https://github.com/Pika-Gopher), [@cxljs](https://github.com/cxljs), [@huiyifyj](https://github.com/huiyifyj), [@omid-h70](https://github.com/omid-h70)
54+
55+
---
56+
57+
**Full Changelog**: https://github.com/redis/go-redis/compare/v9.14.0...v9.16.0
58+
59+
60+
# 9.15.0 was accidentally released. Please use version 9.16.0 instead.
61+
362
# 9.15.0-beta.3 (2025-09-26)
463

564
## Highlights

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.16.0-beta.1
8+
github.com/redis/go-redis/v9 v9.16.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.16.0-beta.1
7+
require github.com/redis/go-redis/v9 v9.16.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.16.0-beta.1
9+
github.com/redis/go-redis/v9 v9.16.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.16.0-beta.1
7+
require github.com/redis/go-redis/v9 v9.16.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.16.0-beta.1
15-
github.com/redis/go-redis/v9 v9.16.0-beta.1
14+
github.com/redis/go-redis/extra/redisotel/v9 v9.16.0
15+
github.com/redis/go-redis/v9 v9.16.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.16.0-beta.1 // indirect
28+
github.com/redis/go-redis/extra/rediscmd/v9 v9.16.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.16.0-beta.1
7+
require github.com/redis/go-redis/v9 v9.16.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.16.0-beta.1
9+
github.com/redis/go-redis/v9 v9.16.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.16.0-beta.1
11-
github.com/redis/go-redis/v9 v9.16.0-beta.1
10+
github.com/redis/go-redis/extra/rediscmd/v9 v9.16.0
11+
github.com/redis/go-redis/v9 v9.16.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.16.0-beta.1
10+
github.com/redis/go-redis/v9 v9.16.0
1111
)
1212

1313
require (

0 commit comments

Comments
 (0)