From c4c1784eac66e3151cae307861511d92794d2ef4 Mon Sep 17 00:00:00 2001 From: Nedyalko Dyakov Date: Mon, 1 Dec 2025 14:07:06 +0200 Subject: [PATCH 1/2] bump version to 9.17.2 --- example/del-keys-without-ttl/go.mod | 2 +- example/digest-optimistic-locking/go.mod | 2 +- example/hll/go.mod | 2 +- example/hset-struct/go.mod | 2 +- example/lua-scripting/go.mod | 2 +- example/otel/go.mod | 6 +++--- example/redis-bloom/go.mod | 2 +- example/scan-struct/go.mod | 2 +- extra/rediscensus/go.mod | 4 ++-- extra/rediscmd/go.mod | 2 +- extra/redisotel/go.mod | 4 ++-- extra/redisprometheus/go.mod | 2 +- version.go | 2 +- 13 files changed, 17 insertions(+), 17 deletions(-) diff --git a/example/del-keys-without-ttl/go.mod b/example/del-keys-without-ttl/go.mod index a79e6676b..75cd418b9 100644 --- a/example/del-keys-without-ttl/go.mod +++ b/example/del-keys-without-ttl/go.mod @@ -5,7 +5,7 @@ go 1.18 replace github.com/redis/go-redis/v9 => ../.. require ( - github.com/redis/go-redis/v9 v9.17.1 + github.com/redis/go-redis/v9 v9.17.2 go.uber.org/zap v1.24.0 ) diff --git a/example/digest-optimistic-locking/go.mod b/example/digest-optimistic-locking/go.mod index dcda3ab87..d10cf1dd4 100644 --- a/example/digest-optimistic-locking/go.mod +++ b/example/digest-optimistic-locking/go.mod @@ -5,7 +5,7 @@ go 1.18 replace github.com/redis/go-redis/v9 => ../.. require ( - github.com/redis/go-redis/v9 v9.17.1 + github.com/redis/go-redis/v9 v9.17.2 github.com/zeebo/xxh3 v1.0.2 ) diff --git a/example/hll/go.mod b/example/hll/go.mod index a1b37590e..8a1a550d4 100644 --- a/example/hll/go.mod +++ b/example/hll/go.mod @@ -4,7 +4,7 @@ go 1.18 replace github.com/redis/go-redis/v9 => ../.. -require github.com/redis/go-redis/v9 v9.17.1 +require github.com/redis/go-redis/v9 v9.17.2 require ( github.com/cespare/xxhash/v2 v2.3.0 // indirect diff --git a/example/hset-struct/go.mod b/example/hset-struct/go.mod index 9f0db8bd3..8fc20954c 100644 --- a/example/hset-struct/go.mod +++ b/example/hset-struct/go.mod @@ -6,7 +6,7 @@ replace github.com/redis/go-redis/v9 => ../.. require ( github.com/davecgh/go-spew v1.1.1 - github.com/redis/go-redis/v9 v9.17.1 + github.com/redis/go-redis/v9 v9.17.2 ) require ( diff --git a/example/lua-scripting/go.mod b/example/lua-scripting/go.mod index 0a8fa1088..e3aadecd4 100644 --- a/example/lua-scripting/go.mod +++ b/example/lua-scripting/go.mod @@ -4,7 +4,7 @@ go 1.18 replace github.com/redis/go-redis/v9 => ../.. -require github.com/redis/go-redis/v9 v9.17.1 +require github.com/redis/go-redis/v9 v9.17.2 require ( github.com/cespare/xxhash/v2 v2.3.0 // indirect diff --git a/example/otel/go.mod b/example/otel/go.mod index d32cd9f9d..2872c6fb5 100644 --- a/example/otel/go.mod +++ b/example/otel/go.mod @@ -11,8 +11,8 @@ replace github.com/redis/go-redis/extra/redisotel/v9 => ../../extra/redisotel replace github.com/redis/go-redis/extra/rediscmd/v9 => ../../extra/rediscmd require ( - github.com/redis/go-redis/extra/redisotel/v9 v9.17.1 - github.com/redis/go-redis/v9 v9.17.1 + github.com/redis/go-redis/extra/redisotel/v9 v9.17.2 + github.com/redis/go-redis/v9 v9.17.2 github.com/uptrace/uptrace-go v1.21.0 go.opentelemetry.io/otel v1.22.0 ) @@ -25,7 +25,7 @@ require ( github.com/go-logr/stdr v1.2.2 // indirect github.com/golang/protobuf v1.5.3 // indirect github.com/grpc-ecosystem/grpc-gateway/v2 v2.19.0 // indirect - github.com/redis/go-redis/extra/rediscmd/v9 v9.17.1 // indirect + github.com/redis/go-redis/extra/rediscmd/v9 v9.17.2 // indirect go.opentelemetry.io/contrib/instrumentation/runtime v0.46.1 // indirect go.opentelemetry.io/otel/exporters/otlp/otlpmetric/otlpmetricgrpc v0.44.0 // indirect go.opentelemetry.io/otel/exporters/otlp/otlptrace v1.21.0 // indirect diff --git a/example/redis-bloom/go.mod b/example/redis-bloom/go.mod index bce8c344b..700dc0a62 100644 --- a/example/redis-bloom/go.mod +++ b/example/redis-bloom/go.mod @@ -4,7 +4,7 @@ go 1.18 replace github.com/redis/go-redis/v9 => ../.. -require github.com/redis/go-redis/v9 v9.17.1 +require github.com/redis/go-redis/v9 v9.17.2 require ( github.com/cespare/xxhash/v2 v2.3.0 // indirect diff --git a/example/scan-struct/go.mod b/example/scan-struct/go.mod index 9f0db8bd3..8fc20954c 100644 --- a/example/scan-struct/go.mod +++ b/example/scan-struct/go.mod @@ -6,7 +6,7 @@ replace github.com/redis/go-redis/v9 => ../.. require ( github.com/davecgh/go-spew v1.1.1 - github.com/redis/go-redis/v9 v9.17.1 + github.com/redis/go-redis/v9 v9.17.2 ) require ( diff --git a/extra/rediscensus/go.mod b/extra/rediscensus/go.mod index e13a6bb83..bd0d80f8d 100644 --- a/extra/rediscensus/go.mod +++ b/extra/rediscensus/go.mod @@ -7,8 +7,8 @@ replace github.com/redis/go-redis/v9 => ../.. replace github.com/redis/go-redis/extra/rediscmd/v9 => ../rediscmd require ( - github.com/redis/go-redis/extra/rediscmd/v9 v9.17.1 - github.com/redis/go-redis/v9 v9.17.1 + github.com/redis/go-redis/extra/rediscmd/v9 v9.17.2 + github.com/redis/go-redis/v9 v9.17.2 go.opencensus.io v0.24.0 ) diff --git a/extra/rediscmd/go.mod b/extra/rediscmd/go.mod index 9010c505e..4b272e767 100644 --- a/extra/rediscmd/go.mod +++ b/extra/rediscmd/go.mod @@ -7,7 +7,7 @@ replace github.com/redis/go-redis/v9 => ../.. require ( github.com/bsm/ginkgo/v2 v2.12.0 github.com/bsm/gomega v1.27.10 - github.com/redis/go-redis/v9 v9.17.1 + github.com/redis/go-redis/v9 v9.17.2 ) require ( diff --git a/extra/redisotel/go.mod b/extra/redisotel/go.mod index 4e061fd86..e06a2cab8 100644 --- a/extra/redisotel/go.mod +++ b/extra/redisotel/go.mod @@ -7,8 +7,8 @@ replace github.com/redis/go-redis/v9 => ../.. replace github.com/redis/go-redis/extra/rediscmd/v9 => ../rediscmd require ( - github.com/redis/go-redis/extra/rediscmd/v9 v9.17.1 - github.com/redis/go-redis/v9 v9.17.1 + github.com/redis/go-redis/extra/rediscmd/v9 v9.17.2 + github.com/redis/go-redis/v9 v9.17.2 go.opentelemetry.io/otel v1.22.0 go.opentelemetry.io/otel/metric v1.22.0 go.opentelemetry.io/otel/sdk v1.22.0 diff --git a/extra/redisprometheus/go.mod b/extra/redisprometheus/go.mod index ec7fce994..a83681991 100644 --- a/extra/redisprometheus/go.mod +++ b/extra/redisprometheus/go.mod @@ -6,7 +6,7 @@ replace github.com/redis/go-redis/v9 => ../.. require ( github.com/prometheus/client_golang v1.14.0 - github.com/redis/go-redis/v9 v9.17.1 + github.com/redis/go-redis/v9 v9.17.2 ) require ( diff --git a/version.go b/version.go index 6718e8659..126fa10b0 100644 --- a/version.go +++ b/version.go @@ -2,5 +2,5 @@ package redis // Version is the current release version. func Version() string { - return "9.17.1" + return "9.17.2" } From e261e87a3f1a375cdc9c57e4dda300429397344c Mon Sep 17 00:00:00 2001 From: Nedyalko Dyakov Date: Mon, 1 Dec 2025 14:11:02 +0200 Subject: [PATCH 2/2] update release notes --- RELEASE-NOTES.md | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) diff --git a/RELEASE-NOTES.md b/RELEASE-NOTES.md index 60bc7c199..e38ade442 100644 --- a/RELEASE-NOTES.md +++ b/RELEASE-NOTES.md @@ -1,5 +1,25 @@ # Release Notes +# 9.17.2 (2025-12-01) + +## 🐛 Bug Fixes + +- **Connection Pool**: Fixed critical race condition in turn management that could cause connection leaks when dial goroutines complete after request timeout ([#3626](https://github.com/redis/go-redis/pull/3626)) by [@cyningsun](https://github.com/cyningsun) +- **Context Timeout**: Improved context timeout calculation to use minimum of remaining time and DialTimeout, preventing goroutines from waiting longer than necessary ([#3626](https://github.com/redis/go-redis/pull/3626)) by [@cyningsun](https://github.com/cyningsun) + +## 🧰 Maintenance + +- chore(deps): bump rojopolis/spellcheck-github-actions from 0.54.0 to 0.55.0 ([#3627](https://github.com/redis/go-redis/pull/3627)) + +## Contributors +We'd like to thank all the contributors who worked on this release! + +[@cyningsun](https://github.com/cyningsun) and [@ndyakov](https://github.com/ndyakov) + +--- + +**Full Changelog**: https://github.com/redis/go-redis/compare/v9.17.1...v9.17.2 + # 9.17.1 (2025-11-25) ## 🐛 Bug Fixes