{"id":"src_mhPJbfP0KLerkACbGbE_z","slug":"go-redis","name":"go-redis","type":"github","url":"https://github.com/redis/go-redis","orgId":"org_LoxZZODAgyZQ0Pujh31qL","org":{"slug":"redis","name":"Redis"},"isPrimary":false,"metadata":"{}","releaseCount":65,"releasesLast30Days":1,"avgReleasesPerWeek":0.2,"latestVersion":"v9.19.0","latestDate":"2026-04-28T11:18:56.000Z","changelogUrl":null,"hasChangelogFile":false,"lastFetchedAt":"2026-05-01T21:01:09.658Z","lastPolledAt":"2026-05-01T21:01:07.298Z","trackingSince":"2021-06-03T11:08:46.000Z","releases":[{"id":"rel_6hDEkL5iBvQgdBrWMg_yb","version":"v9.19.0","title":"9.19.0","summary":"\r\n## 🚀 Highlights\r\n\r\n### FIPS-Compatible Script Helper\r\n\r\n`Script` now supports a FIPS-safe execution mode that avoids client-side SHA-1 computation,...","content":"\r\n## 🚀 Highlights\r\n\r\n### FIPS-Compatible Script Helper\r\n\r\n`Script` now supports a FIPS-safe execution mode that avoids client-side SHA-1 computation, which is blocked in strict FIPS environments. A new `NewScriptServerSHA` constructor uses `SCRIPT LOAD` to obtain and cache the digest from the server, then runs commands via `EVALSHA`/`EVALSHA_RO`. Falls back to `EVAL`/`EVALRO` if loading fails, and transparently retries once on `NOSCRIPT`. The default behavior is unchanged for existing users.\r\n\r\n([#3700](https://github.com/redis/go-redis/pull/3700)) by [@chaitanyabodlapati](https://github.com/chaitanyabodlapati)\r\n\r\n### FT.AGGREGATE Step-Based Pipeline Builder\r\n\r\nAdded a new step-based `FT.AGGREGATE` pipeline API via `FTAggregateOptions.Steps`, allowing `LOAD`, `APPLY`, `GROUPBY`, and `SORTBY` (with per-step `MAX`) to be repeated and interleaved in arbitrary order — matching Redis's native multi-stage aggregation semantics. The legacy `Load`/`Apply`/`GroupBy`/`SortBy`/`SortByMax` fields are now deprecated.\r\n\r\n([#3782](https://github.com/redis/go-redis/pull/3782)) by [@ndyakov](https://github.com/ndyakov)\r\n\r\n### Raw RESP Protocol Access\r\n\r\nAdded `DoRaw` and `DoRawWriteTo` methods for executing arbitrary commands and reading the raw RESP response. Useful for proxying, custom protocol inspection, and working with commands not yet wrapped by go-redis.\r\n\r\n([#3713](https://github.com/redis/go-redis/pull/3713)) by [@ofekshenawa](https://github.com/ofekshenawa)\r\n\r\n### Configurable Dial Retry Backoff\r\n\r\nAdded `DialerRetryBackoff` option (plumbed through `Options`, `ClusterOptions`, `RingOptions`, `FailoverOptions`) to let callers customize the delay between failed dial attempts. Helpers `DialRetryBackoffConstant` and `DialRetryBackoffExponential` (with jitter and cap) are provided out of the box. Dial timeout is now also applied **per attempt** rather than across all retries.\r\n\r\n([#3706](https://github.com/redis/go-redis/pull/3706), [#3705](https://github.com/redis/go-redis/pull/3705)) by [@mwhooker](https://github.com/mwhooker)\r\n\r\n## ✨ New Features\r\n\r\n- **FT.AGGREGATE Steps**: Step-based pipeline builder for `FT.AGGREGATE` with support for repeated/interleaved `LOAD`, `APPLY`, `GROUPBY`, and `SORTBY` stages ([#3782](https://github.com/redis/go-redis/pull/3782)) by [@ndyakov](https://github.com/ndyakov)\r\n- **VectorSet commands**: Added `VISMEMBER` and `WITHATTRIBS` support ([#3753](https://github.com/redis/go-redis/pull/3753)) by [@romanpovol](https://github.com/romanpovol)\r\n- **FIPS-safe Script**: `NewScriptServerSHA` uses `SCRIPT LOAD` to obtain the digest from the server, avoiding client-side SHA-1 ([#3700](https://github.com/redis/go-redis/pull/3700)) by [@chaitanyabodlapati](https://github.com/chaitanyabodlapati)\r\n- **Raw RESP access**: `DoRaw` and `DoRawWriteTo` for raw RESP protocol access ([#3713](https://github.com/redis/go-redis/pull/3713)) by [@ofekshenawa](https://github.com/ofekshenawa)\r\n- **Dial retry backoff**: `DialerRetryBackoff` function option with constant and exponential helpers ([#3706](https://github.com/redis/go-redis/pull/3706)) by [@mwhooker](https://github.com/mwhooker)\r\n- **Typed NOSCRIPT error**: Redis `NOSCRIPT` replies are now surfaced as a typed error for easier handling ([#3738](https://github.com/redis/go-redis/pull/3738)) by [@LINKIWI](https://github.com/LINKIWI)\r\n- **PubSub ClientSetName**: Added `ClientSetName` method to `PubSub` ([#3727](https://github.com/redis/go-redis/pull/3727)) by [@Flack74](https://github.com/Flack74)\r\n- **ReplicaOf**: New `ReplicaOf` method replaces the deprecated `SlaveOf` ([#3720](https://github.com/redis/go-redis/pull/3720)) by [@Copilot](https://github.com/apps/copilot-swe-agent)\r\n- **HSCAN BinaryUnmarshaler**: `HScan` now supports types implementing `encoding.BinaryUnmarshaler` ([#3768](https://github.com/redis/go-redis/pull/3768)) by [@Aaditya-dubey1](https://github.com/Aaditya-dubey1)\r\n\r\n## 🐛 Bug Fixes\r\n\r\n- **Auto hostname type detection**: Improved endpoint type detection for maintenance notifications using DNS-based classification; handles empty hosts and expanded private-IP ranges ([#3789](https://github.com/redis/go-redis/pull/3789)) by [@ndyakov](https://github.com/ndyakov)\r\n- **HELLO fallback**: Don't send `CLIENT MAINT_NOTIFICATIONS` handshake when `HELLO` fails and connection falls back to RESP2; fail fast when explicitly enabled with RESP3 ([#3788](https://github.com/redis/go-redis/pull/3788)) by [@ndyakov](https://github.com/ndyakov)\r\n- **Dial TCP retry**: `ShouldRetry` now treats `net.OpError` with `Op == \"dial\"` timeout errors as safe to retry since no command was sent ([#3787](https://github.com/redis/go-redis/pull/3787)) by [@vladisa88](https://github.com/vladisa88)\r\n- **wrappedOnClose leak**: Fixed resource leak caused by repeatedly wrapping `baseClient` close logic; replaced with a bounded, concurrency-safe named-hook registry ([#3785](https://github.com/redis/go-redis/pull/3785)) by [@ndyakov](https://github.com/ndyakov)\r\n- **Pool Close() on stale connections**: Suppress close errors (e.g., TLS `closeNotify` timeouts) for connections already dropped by the server due to idle timeout ([#3778](https://github.com/redis/go-redis/pull/3778)) by [@ofekshenawa](https://github.com/ofekshenawa)\r\n- **FIFO waiter ordering**: Fixed race in `ConnStateMachine.notifyWaiters` that could wake multiple waiters under a single mutex hold and violate FIFO ordering ([#3777](https://github.com/redis/go-redis/pull/3777)) by [@0x48core](https://github.com/0x48core)\r\n- **Lua READONLY detection**: Detect `READONLY` errors embedded in Lua script error messages on read-only replicas so commands are correctly retried ([#3769](https://github.com/redis/go-redis/pull/3769)) by [@zhengjilei](https://github.com/zhengjilei)\r\n- **VectorScoreSliceCmd RESP2**: Fixed `VSimWithScores`, `VSimWithArgsWithScores`, and `VLinksWithScores` which were broken on RESP2 connections returning flat arrays instead of maps ([#3767](https://github.com/redis/go-redis/pull/3767)) by [@Copilot](https://github.com/apps/copilot-swe-agent)\r\n- **Closed connection handling**: Two fixes for closed connection handling in the pool ([#3764](https://github.com/redis/go-redis/pull/3764)) by [@cxljs](https://github.com/cxljs)\r\n- **ZRangeArgs Rev**: Fixed `ZRangeArgs` with `Rev` + `ByScore`/`ByLex` incorrectly swapping `Start`/`Stop`, breaking `ZRANGESTORE` ([#3751](https://github.com/redis/go-redis/pull/3751)) by [@Copilot](https://github.com/apps/copilot-swe-agent)\r\n- **OTel metric instrument types**: Fixed metric instrument types in `redisotel-native` ([#3743](https://github.com/redis/go-redis/pull/3743)) by [@ofekshenawa](https://github.com/ofekshenawa)\r\n- **Options.clone() data race**: Fixed data race when cloning `Options` ([#3739](https://github.com/redis/go-redis/pull/3739)) by [@rubensayshi](https://github.com/rubensayshi)\r\n- **Connection closure metrics**: Fixed connection closure metrics and enabled all metric groups by default in `redisotel-native` ([#3735](https://github.com/redis/go-redis/pull/3735)) by [@ofekshenawa](https://github.com/ofekshenawa)\r\n- **OTel semconv v1.38.0**: Use metric definition from `otel/semconv/v1.38.0` in `redisotel-native` ([#3731](https://github.com/redis/go-redis/pull/3731)) by [@wzy9607](https://github.com/wzy9607)\r\n- **SETNX semantics**: Use `SET ... NX` instead of the deprecated `SETNX` command ([#3723](https://github.com/redis/go-redis/pull/3723)) by [@ndyakov](https://github.com/ndyakov)\r\n- **TIME keyless routing**: Mark `TIME` as a keyless command for correct cluster routing ([#3722](https://github.com/redis/go-redis/pull/3722)) by [@fatal10110](https://github.com/fatal10110)\r\n- **Dial timeout per retry**: Dial timeout now applies per attempt instead of across all retry attempts combined ([#3705](https://github.com/redis/go-redis/pull/3705)) by [@mwhooker](https://github.com/mwhooker)\r\n- **Cluster metrics attributes**: Fixed `pool.name` being appended per node, which corrupted and dropped user-provided custom attributes ([#3699](https://github.com/redis/go-redis/pull/3699)) by [@Jesse-Bonfire](https://github.com/Jesse-Bonfire)\r\n- **initConn nil dereference**: Fixed nil pointer dereference and potential deadlock in `*baseClient.initConn()`; added explicit nil option guards to client constructors ([#3676](https://github.com/redis/go-redis/pull/3676)) by [@olde-ducke](https://github.com/olde-ducke)\r\n\r\n## ⚡ Performance\r\n\r\n- **RESP reader**: Optimized RESP reader by eliminating intermediate string allocations ([#3774](https://github.com/redis/go-redis/pull/3774)) by [@Aaditya-dubey1](https://github.com/Aaditya-dubey1)\r\n- **Inline rendezvous hashing**: Replaced `github.com/dgryski/go-rendezvous` dependency with an in-repo implementation in `internal/hashtag`, reducing the dependency graph while preserving algorithm parity ([#3762](https://github.com/redis/go-redis/pull/3762)) by [@bigsk05](https://github.com/bigsk05)\r\n\r\n## 🧪 Testing & Infrastructure\r\n\r\n- **Release automation**: Added `repository`, `ref`, and `client-libs-test-image-tag` inputs to the `run-tests` composite action; `redis-version` is now optional so unstable builds use `REDIS_VERSION` from the Makefile ([#3749](https://github.com/redis/go-redis/pull/3749)) by [@dariaguy](https://github.com/dariaguy)\r\n- **Go 1.24**: Updated minimum Go version to 1.24 and use `-compat=1.24` in release scripts ([#3714](https://github.com/redis/go-redis/pull/3714), [#3754](https://github.com/redis/go-redis/pull/3754)) by [@ndyakov](https://github.com/ndyakov), [@cxljs](https://github.com/cxljs)\r\n\r\n## 🧰 Maintenance\r\n\r\n- **Pool state machine**: Removed redundant `Conn.closed` atomic field in favor of the state machine's `StateClosed` ([#3783](https://github.com/redis/go-redis/pull/3783)) by [@cxljs](https://github.com/cxljs)\r\n- **OTel SDK**: Updated OpenTelemetry SDK dependencies in `redisotel`/`redisotel-native` ([#3770](https://github.com/redis/go-redis/pull/3770)) by [@ndyakov](https://github.com/ndyakov)\r\n- **Go 1.21+ built-ins**: Use `maps.Keys`, `slices.Collect`, `slices.Contains`, `clear()`, and `slices.SortFunc` instead of custom helpers ([#3758](https://github.com/redis/go-redis/pull/3758), [#3746](https://github.com/redis/go-redis/pull/3746)) by [@cxljs](https://github.com/cxljs)\r\n- **HGetAll docs**: Added Go doc comment to `HGetAll` describing behavior and complexity ([#3776](https://github.com/redis/go-redis/pull/3776)) by [@0x48core](https://github.com/0x48core)\r\n- **Docs links**: Fixed irrelevant docs links ([#3724](https://github.com/redis/go-redis/pull/3724)) by [@olzhas-sabiyev](https://github.com/olzhas-sabiyev)\r\n- **Examples cleanup**: Removed throughput binary from examples ([#3733](https://github.com/redis/go-redis/pull/3733)) by [@ndyakov](https://github.com/ndyakov)\r\n\r\n## 👥 Contributors\r\n\r\nWe'd like to thank all the contributors who worked on this release!\r\n\r\n[@0x48core](https://github.com/0x48core), [@Aaditya-dubey1](https://github.com/Aaditya-dubey1), [@Copilot](https://github.com/apps/copilot-swe-agent), [@Flack74](https://github.com/Flack74), [@Jesse-Bonfire](https://github.com/Jesse-Bonfire), [@LINKIWI](https://github.com/LINKIWI), [@bigsk05](https://github.com/bigsk05), [@chaitanyabodlapati](https://github.com/chaitanyabodlapati), [@cxljs](https://github.com/cxljs), [@dariaguy](https://github.com/dariaguy), [@fatal10110](https://github.com/fatal10110), [@mwhooker](https://github.com/mwhooker), [@ndyakov](https://github.com/ndyakov), [@ofekshenawa](https://github.com/ofekshenawa), [@olde-ducke](https://github.com/olde-ducke), [@olzhas-sabiyev](https://github.com/olzhas-sabiyev), [@romanpovol](https://github.com/romanpovol), [@rubensayshi](https://github.com/rubensayshi), [@vladisa88](https://github.com/vladisa88), [@wzy9607](https://github.com/wzy9607), [@zhengjilei](https://github.com/zhengjilei)\r\n\r\n---\r\n\r\n**Full Changelog**: https://github.com/redis/go-redis/compare/v9.18.0...v9.19.0\r\n","publishedAt":"2026-04-28T11:18:56.000Z","url":"https://github.com/redis/go-redis/releases/tag/v9.19.0","media":[]},{"id":"rel_qfy0pgQiTQpdBOzvy9rxG","version":"v9.18.0","title":"9.18.0","summary":"### Redis 8.6 Support\r\n\r\nAdded support for Redis 8.6, including new commands and features for streams idempotent production and HOTKEYS.\r\n\r\n### Smart ...","content":"### Redis 8.6 Support\r\n\r\nAdded support for Redis 8.6, including new commands and features for streams idempotent production and HOTKEYS.\r\n\r\n### Smart Client Handoff (Maintenance Notifications) for Cluster\r\n\r\nThis release introduces comprehensive support for Redis Enterprise Cluster maintenance notifications via SMIGRATING/SMIGRATED push notifications. The client now automatically handles slot migrations by:\r\n- **Relaxing timeouts during migration** (SMIGRATING) to prevent false failures\r\n- **Triggering lazy cluster state reloads** upon completion (SMIGRATED)\r\n- Enabling seamless operations during Redis Enterprise maintenance windows\r\n\r\n\r\n([#3643](https://github.com/redis/go-redis/pull/3643)) by [@ndyakov](https://github.com/ndyakov)\r\n\r\n### OpenTelemetry Native Metrics Support\r\n\r\nAdded comprehensive OpenTelemetry metrics support following the [OpenTelemetry Database Client Semantic Conventions](https://opentelemetry.io/docs/specs/semconv/database/database-metrics/). The implementation uses a Bridge Pattern to keep the core library dependency-free while providing optional metrics instrumentation through the new `extra/redisotel-native` package.\r\n\r\n**Metric groups include:**\r\n- Command metrics: Operation duration with retry tracking\r\n- Connection basic: Connection count and creation time\r\n- Resiliency: Errors, handoffs, timeout relaxation\r\n- Connection advanced: Wait time and use time\r\n- Pubsub metrics: Published and received messages\r\n- Stream metrics: Processing duration and maintenance notifications\r\n\r\n([#3637](https://github.com/redis/go-redis/pull/3637)) by [@ofekshenawa](https://github.com/ofekshenawa)\r\n\r\n## ✨ New Features\r\n\r\n- **HOTKEYS Commands**: Added support for Redis HOTKEYS feature for identifying hot keys based on CPU consumption and network utilization ([#3695](https://github.com/redis/go-redis/pull/3695)) by [@ofekshenawa](https://github.com/ofekshenawa)\r\n- **Streams Idempotent Production**: Added support for Redis 8.6+ Streams Idempotent Production with `ProducerID`, `IdempotentID`, `IdempotentAuto` in `XAddArgs` and new `XCFGSET` command ([#3693](https://github.com/redis/go-redis/pull/3693)) by [@ofekshenawa](https://github.com/ofekshenawa)\r\n- **NaN Values for TimeSeries**: Added support for NaN (Not a Number) values in Redis time series commands ([#3687](https://github.com/redis/go-redis/pull/3687)) by [@ofekshenawa](https://github.com/ofekshenawa)\r\n- **DialerRetries Options**: Added `DialerRetries` and `DialerRetryTimeout` to `ClusterOptions`, `RingOptions`, and `FailoverOptions` ([#3686](https://github.com/redis/go-redis/pull/3686)) by [@naveenchander30](https://github.com/naveenchander30)\r\n- **ConnMaxLifetimeJitter**: Added jitter configuration to distribute connection expiration times and prevent thundering herd ([#3666](https://github.com/redis/go-redis/pull/3666)) by [@cyningsun](https://github.com/cyningsun)\r\n- **Digest Helper Functions**: Added `DigestString` and `DigestBytes` helper functions for client-side xxh3 hashing compatible with Redis DIGEST command ([#3679](https://github.com/redis/go-redis/pull/3679)) by [@ofekshenawa](https://github.com/ofekshenawa)\r\n- **SMIGRATED New Format**: Updated SMIGRATED parser to support new format and remember original host:port ([#3697](https://github.com/redis/go-redis/pull/3697)) by [@ndyakov](https://github.com/ndyakov)\r\n- **Cluster State Reload Interval**: Added cluster state reload interval option for maintenance notifications ([#3663](https://github.com/redis/go-redis/pull/3663)) by [@ndyakov](https://github.com/ndyakov)\r\n\r\n## 🐛 Bug Fixes\r\n\r\n- **PubSub nil pointer dereference**: Fixed nil pointer dereference in PubSub after `WithTimeout()` - `pubSubPool` is now properly cloned ([#3710](https://github.com/redis/go-redis/pull/3710)) by [@Copilot](https://github.com/apps/copilot-swe-agent)\r\n- **MaintNotificationsConfig nil check**: Guard against nil `MaintNotificationsConfig` in `initConn` ([#3707](https://github.com/redis/go-redis/pull/3707)) by [@veeceey](https://github.com/veeceey)\r\n- **wantConnQueue zombie elements**: Fixed zombie `wantConn` elements accumulation in `wantConnQueue` ([#3680](https://github.com/redis/go-redis/pull/3680)) by [@cyningsun](https://github.com/cyningsun)\r\n- **XADD/XTRIM approx flag**: Fixed XADD and XTRIM to use `=` when approx is false ([#3684](https://github.com/redis/go-redis/pull/3684)) by [@ndyakov](https://github.com/ndyakov)\r\n- **Sentinel timeout retry**: When connection to a sentinel times out, attempt to connect to other sentinels ([#3654](https://github.com/redis/go-redis/pull/3654)) by [@cxljs](https://github.com/cxljs)\r\n\r\n## ⚡ Performance\r\n\r\n- **Fuzz test optimization**: Eliminated repeated string conversions, used functional approach for cleaner operation selection ([#3692](https://github.com/redis/go-redis/pull/3692)) by [@feiguoL](https://github.com/feiguoL)\r\n- **Pre-allocate capacity**: Pre-allocate slice capacity to prevent multiple capacity expansions ([#3689](https://github.com/redis/go-redis/pull/3689)) by [@feelshu](https://github.com/feelshu)\r\n\r\n## 🧪 Testing\r\n\r\n- **Comprehensive TLS tests**: Added comprehensive TLS tests and example for standalone, cluster, and certificate authentication ([#3681](https://github.com/redis/go-redis/pull/3681)) by [@ndyakov](https://github.com/ndyakov)\r\n- **Redis 8.6**: Updated CI to use Redis 8.6-pre ([#3685](https://github.com/redis/go-redis/pull/3685)) by [@ndyakov](https://github.com/ndyakov)\r\n\r\n## 🧰 Maintenance\r\n\r\n- **Deprecation warnings**: Added deprecation warnings for commands based on Redis documentation ([#3673](https://github.com/redis/go-redis/pull/3673)) by [@ndyakov](https://github.com/ndyakov)\r\n- **Use errors.Join()**: Replaced custom error join function with standard library `errors.Join()` ([#3653](https://github.com/redis/go-redis/pull/3653)) by [@cxljs](https://github.com/cxljs)\r\n- **Use Go 1.21 min/max**: Use Go 1.21's built-in min/max functions ([#3656](https://github.com/redis/go-redis/pull/3656)) by [@cxljs](https://github.com/cxljs)\r\n- **Proper formatting**: Code formatting improvements ([#3670](https://github.com/redis/go-redis/pull/3670)) by [@12ya](https://github.com/12ya)\r\n- **Set commands documentation**: Added comprehensive documentation to all set command methods ([#3642](https://github.com/redis/go-redis/pull/3642)) by [@iamamirsalehi](https://github.com/iamamirsalehi)\r\n- **MaxActiveConns docs**: Added default value documentation for `MaxActiveConns` ([#3674](https://github.com/redis/go-redis/pull/3674)) by [@codykaup](https://github.com/codykaup)\r\n- **README example update**: Updated README example ([#3657](https://github.com/redis/go-redis/pull/3657)) by [@cxljs](https://github.com/cxljs)\r\n- **Cluster maintnotif example**: Added example application for cluster maintenance notifications ([#3651](https://github.com/redis/go-redis/pull/3651)) by [@ndyakov](https://github.com/ndyakov)\r\n\r\n## 👥 Contributors\r\n\r\nWe'd like to thank all the contributors who worked on this release!\r\n\r\n[@12ya](https://github.com/12ya), [@Copilot](https://github.com/apps/copilot-swe-agent), [@codykaup](https://github.com/codykaup), [@cxljs](https://github.com/cxljs), [@cyningsun](https://github.com/cyningsun), [@feelshu](https://github.com/feelshu), [@feiguoL](https://github.com/feiguoL), [@iamamirsalehi](https://github.com/iamamirsalehi), [@naveenchander30](https://github.com/naveenchander30), [@ndyakov](https://github.com/ndyakov), [@ofekshenawa](https://github.com/ofekshenawa), [@veeceey](https://github.com/veeceey)\r\n\r\n","publishedAt":"2026-02-16T14:44:03.000Z","url":"https://github.com/redis/go-redis/releases/tag/v9.18.0","media":[]},{"id":"rel_pqRlLejo5M4yKV-k5tMdX","version":"v9.17.3","title":"9.17.3","summary":"## 🐛 Bug Fixes\r\n\r\n- **Connection Pool**: Fixed zombie `wantConn` elements accumulation in `wantConnQueue` that could cause resource leaks in high con...","content":"## 🐛 Bug Fixes\r\n\r\n- **Connection Pool**: Fixed zombie `wantConn` elements accumulation in `wantConnQueue` that could cause resource leaks in high concurrency scenarios with dial failures ([#3680](https://github.com/redis/go-redis/pull/3680)) by [@cyningsun](https://github.com/cyningsun)\r\n- **Stream Commands**: Fixed `XADD` and `XTRIM` commands to use exact threshold (`=`) when `Approx` is false, ensuring precise stream trimming behavior ([#3684](https://github.com/redis/go-redis/pull/3684)) by [@ndyakov](https://github.com/ndyakov)\r\n- **Connection Pool**: Added `ConnMaxLifetimeJitter` configuration to distribute connection expiration times and prevent the thundering herd problem when many connections expire simultaneously ([#3666](https://github.com/redis/go-redis/pull/3666)) by [@cyningsun](https://github.com/cyningsun)\r\n- **Client Options**: Added `DialerRetries` and `DialerRetryTimeout` fields to `ClusterOptions`, `RingOptions`, and `FailoverOptions` to allow configuring connection retry behavior for cluster, ring, and sentinel clients ([#3686](https://github.com/redis/go-redis/pull/3686)) by [@naveenchander30](https://github.com/naveenchander30)\r\n\r\n## Contributors\r\nWe'd like to thank all the contributors who worked on this release!\r\n\r\n[@cyningsun](https://github.com/cyningsun), [@naveenchander30](https://github.com/naveenchander30), and [@ndyakov](https://github.com/ndyakov)\r\n\r\n---\r\n\r\n**Full Changelog**: https://github.com/redis/go-redis/compare/v9.17.2...v9.17.3","publishedAt":"2026-01-25T10:17:13.000Z","url":"https://github.com/redis/go-redis/releases/tag/v9.17.3","media":[]},{"id":"rel_PIacrHaoXtoZNHWUfx08Y","version":"v9.18.0-beta.2","title":"9.18.0-beta.2","summary":"## 🚀 Highlights\r\n\r\n### Go Version Update\r\n\r\nThis release updates the minimum required Go version to 1.21. This is part of a gradual migration strateg...","content":"## 🚀 Highlights\r\n\r\n### Go Version Update\r\n\r\nThis release updates the minimum required Go version to 1.21. This is part of a gradual migration strategy where the minimum supported Go version will be three versions behind the latest release. With each new Go version release, we will bump the minimum version by one, ensuring compatibility while staying current with the Go ecosystem.\r\n\r\n### Stability Improvements\r\n\r\nThis release includes several important stability fixes:\r\n- Fixed a critical panic in the handoff worker manager that could occur when handling nil errors\r\n- Improved test reliability for Smart Client Handoff functionality\r\n- Fixed logging format issues that could cause runtime errors\r\n\r\n## ✨ New Features\r\n\r\n- OpenTelemetry metrics improvements for nil response handling ([#3638](https://github.com/redis/go-redis/pull/3638)) by [@fengve](https://github.com/fengve)\r\n\r\n## 🐛 Bug Fixes\r\n\r\n- Fixed panic on nil error in handoffWorkerManager closeConnFromRequest ([#3633](https://github.com/redis/go-redis/pull/3633)) by [@ccoVeille](https://github.com/ccoVeille)\r\n- Fixed bad sprintf syntax in logging ([#3632](https://github.com/redis/go-redis/pull/3632)) by [@ccoVeille](https://github.com/ccoVeille)\r\n\r\n## 🧰 Maintenance\r\n\r\n- Updated minimum Go version to 1.21 ([#3640](https://github.com/redis/go-redis/pull/3640)) by [@ndyakov](https://github.com/ndyakov)\r\n- Use Go 1.20 idiomatic string<->byte conversion ([#3435](https://github.com/redis/go-redis/pull/3435)) by [@justinhwang](https://github.com/justinhwang)\r\n- Reduce flakiness of Smart Client Handoff test ([#3641](https://github.com/redis/go-redis/pull/3641)) by [@kiryazovi-redis](https://github.com/kiryazovi-redis)\r\n- Revert PR #3634 (Observability metrics phase1) ([#3635](https://github.com/redis/go-redis/pull/3635)) by [@ofekshenawa](https://github.com/ofekshenawa)\r\n\r\n## 👥 Contributors\r\n\r\nWe'd like to thank all the contributors who worked on this release!\r\n\r\n[@justinhwang](https://github.com/justinhwang), [@ndyakov](https://github.com/ndyakov), [@kiryazovi-redis](https://github.com/kiryazovi-redis), [@fengve](https://github.com/fengve), [@ccoVeille](https://github.com/ccoVeille), [@ofekshenawa](https://github.com/ofekshenawa)\r\n","publishedAt":"2025-12-09T13:54:31.000Z","url":"https://github.com/redis/go-redis/releases/tag/v9.18.0-beta.2","media":[]},{"id":"rel_9plpuOMnDIzsYAxrZcGCV","version":"v9.18.0-beta.1","title":"9.18.0-beta.1","summary":"# pre-release v9.18.0-beta.1\r\n\r\n## 🚀 Highlights\r\n\r\n### Request and Response Policy Based Routing in Cluster Mode\r\n\r\nThis beta release introduces comp...","content":"# pre-release v9.18.0-beta.1\r\n\r\n## 🚀 Highlights\r\n\r\n### Request and Response Policy Based Routing in Cluster Mode\r\n\r\nThis beta release introduces comprehensive support for Redis COMMAND-based request and response policy routing for cluster clients. This feature enables intelligent command routing and response aggregation based on Redis command metadata.\r\n\r\n**Key Features:**\r\n- **Command Policy Loader**: Automatically parses and caches COMMAND metadata with routing/aggregation hints\r\n- **Enhanced Routing Engine**: Supports all request policies including:\r\n  - `default(keyless)` - Commands without keys\r\n  - `default(hashslot)` - Commands with hash slot routing\r\n  - `all_shards` - Commands that need to run on all shards\r\n  - `all_nodes` - Commands that need to run on all nodes\r\n  - `multi_shard` - Commands that span multiple shards\r\n  - `special` - Commands with custom routing logic\r\n- **Response Aggregator**: Intelligently combines multi-shard replies based on response policies:\r\n  - `all_succeeded` - All shards must succeed\r\n  - `one_succeeded` - At least one shard must succeed\r\n  - `agg_sum` - Aggregate numeric responses\r\n  - `special` - Custom aggregation logic (e.g., FT.CURSOR)\r\n- **Raw Command Support**: Policies are enforced on `Client.Do(ctx, args...)`\r\n\r\nThis feature is particularly useful for Redis Stack commands like RediSearch that need to operate across multiple shards in a cluster.\r\n\r\n### Connection Pool Improvements\r\n\r\nFixed a critical defect in the connection pool's turn management mechanism that could lead to connection leaks under certain conditions. The fix ensures proper 1:1 correspondence between turns and connections.\r\n\r\n## ✨ New Features\r\n\r\n- Request and Response Policy Based Routing in Cluster Mode ([#3422](https://github.com/redis/go-redis/pull/3422)) by [@ofekshenawa](https://github.com/ofekshenawa)\r\n\r\n## 🐛 Bug Fixes\r\n\r\n- Fixed connection pool turn management to prevent connection leaks ([#3626](https://github.com/redis/go-redis/pull/3626)) by [@cyningsun](https://github.com/cyningsun)\r\n\r\n## 🧰 Maintenance\r\n\r\n- chore(deps): bump rojopolis/spellcheck-github-actions from 0.54.0 to 0.55.0 ([#3627](https://github.com/redis/go-redis/pull/3627))\r\n\r\n## 👥 Contributors\r\n\r\nWe'd like to thank all the contributors who worked on this release!\r\n\r\n[@cyningsun](https://github.com/cyningsun), [@ofekshenawa](https://github.com/ofekshenawa), [@ndyakov](https://github.com/ndyakov)\r\n\r\n","publishedAt":"2025-12-02T13:11:38.000Z","url":"https://github.com/redis/go-redis/releases/tag/v9.18.0-beta.1","media":[]},{"id":"rel_tbPWF5nCNhS15f9lacygw","version":"v9.17.2","title":"9.17.2","summary":"## 🐛 Bug Fixes\r\n\r\n- **Connection Pool**: Fixed critical race condition in turn management that could cause connection leaks when dial goroutines comp...","content":"## 🐛 Bug Fixes\r\n\r\n- **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)\r\n- **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)\r\n\r\n## 🧰 Maintenance\r\n\r\n- chore(deps): bump rojopolis/spellcheck-github-actions from 0.54.0 to 0.55.0 ([#3627](https://github.com/redis/go-redis/pull/3627))\r\n\r\n## Contributors\r\nWe'd like to thank all the contributors who worked on this release!\r\n\r\n[@cyningsun](https://github.com/cyningsun) and [@ndyakov](https://github.com/ndyakov)\r\n\r\n","publishedAt":"2025-12-01T14:01:48.000Z","url":"https://github.com/redis/go-redis/releases/tag/v9.17.2","media":[]},{"id":"rel_sc2QkaSGe8mVOvr13-Yhr","version":"v9.17.1","title":"9.17.1","summary":"## 🐛 Bug Fixes\r\n\r\n- add wait to keyless commands list ([#3615](https://github.com/redis/go-redis/pull/3615)) by [@marcoferrer](https://github.com/mar...","content":"## 🐛 Bug Fixes\r\n\r\n- add wait to keyless commands list ([#3615](https://github.com/redis/go-redis/pull/3615)) by [@marcoferrer](https://github.com/marcoferrer)\r\n- fix(time): remove cached time optimization ([#3611](https://github.com/redis/go-redis/pull/3611)) by [@ndyakov](https://github.com/ndyakov)\r\n\r\n## 🧰 Maintenance\r\n\r\n- chore(deps): bump golangci/golangci-lint-action from 9.0.0 to 9.1.0 ([#3609](https://github.com/redis/go-redis/pull/3609))\r\n- chore(deps): bump actions/checkout from 5 to 6 ([#3610](https://github.com/redis/go-redis/pull/3610))\r\n- chore(script): fix help call in tag.sh ([#3606](https://github.com/redis/go-redis/pull/3606)) by [@ndyakov](https://github.com/ndyakov)\r\n\r\n## Contributors\r\nWe'd like to thank all the contributors who worked on this release!\r\n\r\n[@marcoferrer](https://github.com/marcoferrer) and [@ndyakov](https://github.com/ndyakov)\r\n\r\n","publishedAt":"2025-11-26T10:23:44.000Z","url":"https://github.com/redis/go-redis/releases/tag/v9.17.1","media":[]},{"id":"rel_3PRur8E8eiUBzewE2L_9I","version":"v9.17.0","title":"9.17.0","summary":"## 🚀 Highlights\r\n\r\n### Redis 8.4 Support\r\nAdded support for Redis 8.4, including new commands and features ([#3572](https://github.com/redis/go-redis...","content":"## 🚀 Highlights\r\n\r\n### Redis 8.4 Support\r\nAdded support for Redis 8.4, including new commands and features ([#3572](https://github.com/redis/go-redis/pull/3572))\r\n\r\n### Typed Errors\r\nIntroduced typed errors for better error handling using `errors.As` instead of string checks. Errors can now be wrapped and set to commands in hooks without breaking library functionality ([#3602](https://github.com/redis/go-redis/pull/3602))\r\n\r\n### New Commands\r\n- **CAS/CAD Commands**: Added support for Compare-And-Set/Compare-And-Delete operations with conditional matching (`IFEQ`, `IFNE`, `IFDEQ`, `IFDNE`) ([#3583](https://github.com/redis/go-redis/pull/3583), [#3595](https://github.com/redis/go-redis/pull/3595))\r\n- **MSETEX**: Atomically set multiple key-value pairs with expiration options and conditional modes ([#3580](https://github.com/redis/go-redis/pull/3580))\r\n- **XReadGroup CLAIM**: Consume both incoming and idle pending entries from streams in a single call ([#3578](https://github.com/redis/go-redis/pull/3578))\r\n- **ACL Commands**: Added `ACLGenPass`, `ACLUsers`, and `ACLWhoAmI` ([#3576](https://github.com/redis/go-redis/pull/3576))\r\n- **SLOWLOG Commands**: Added `SLOWLOG LEN` and `SLOWLOG RESET` ([#3585](https://github.com/redis/go-redis/pull/3585))\r\n- **LATENCY Commands**: Added `LATENCY LATEST` and `LATENCY RESET` ([#3584](https://github.com/redis/go-redis/pull/3584))\r\n\r\n### Search & Vector Improvements\r\n- **Hybrid Search**: Added  **EXPERIMENTAL** support for the new `FT.HYBRID` command ([#3573](https://github.com/redis/go-redis/pull/3573))\r\n- **Vector Range**: Added `VRANGE` command for vector sets ([#3543](https://github.com/redis/go-redis/pull/3543))\r\n- **FT.INFO Enhancements**: Added vector-specific attributes in FT.INFO response ([#3596](https://github.com/redis/go-redis/pull/3596))\r\n\r\n### Connection Pool Improvements\r\n- **Improved Connection Success Rate**: Implemented FIFO queue-based fairness and context pattern for connection creation to prevent premature cancellation under high concurrency ([#3518](https://github.com/redis/go-redis/pull/3518))\r\n- **Connection State Machine**: Resolved race conditions and improved pool performance with proper state tracking ([#3559](https://github.com/redis/go-redis/pull/3559))\r\n- **Pool Performance**: Significant performance improvements with faster semaphores, lockless hook manager, and reduced allocations (47-67% faster Get/Put operations) ([#3565](https://github.com/redis/go-redis/pull/3565))\r\n\r\n### Metrics & Observability\r\n- **Canceled Metric Attribute**: Added 'canceled' metrics attribute to distinguish context cancellation errors from other errors ([#3566](https://github.com/redis/go-redis/pull/3566))\r\n\r\n## ✨ New Features\r\n\r\n- Typed errors with wrapping support ([#3602](https://github.com/redis/go-redis/pull/3602)) by [@ndyakov](https://github.com/ndyakov)\r\n- CAS/CAD commands (marked as experimental) ([#3583](https://github.com/redis/go-redis/pull/3583), [#3595](https://github.com/redis/go-redis/pull/3595)) by [@ndyakov](https://github.com/ndyakov), [@htemelski-redis](https://github.com/htemelski-redis)\r\n- MSETEX command support ([#3580](https://github.com/redis/go-redis/pull/3580)) by [@ofekshenawa](https://github.com/ofekshenawa)\r\n- XReadGroup CLAIM argument ([#3578](https://github.com/redis/go-redis/pull/3578)) by [@ofekshenawa](https://github.com/ofekshenawa)\r\n- ACL commands: GenPass, Users, WhoAmI ([#3576](https://github.com/redis/go-redis/pull/3576)) by [@destinyoooo](https://github.com/destinyoooo)\r\n- SLOWLOG commands: LEN, RESET ([#3585](https://github.com/redis/go-redis/pull/3585)) by [@destinyoooo](https://github.com/destinyoooo)\r\n- LATENCY commands: LATEST, RESET ([#3584](https://github.com/redis/go-redis/pull/3584)) by [@destinyoooo](https://github.com/destinyoooo)\r\n- Hybrid search command (FT.HYBRID) ([#3573](https://github.com/redis/go-redis/pull/3573)) by [@htemelski-redis](https://github.com/htemelski-redis)\r\n- Vector range command (VRANGE) ([#3543](https://github.com/redis/go-redis/pull/3543)) by [@cxljs](https://github.com/cxljs)\r\n- Vector-specific attributes in FT.INFO ([#3596](https://github.com/redis/go-redis/pull/3596)) by [@ndyakov](https://github.com/ndyakov)\r\n- Improved connection pool success rate with FIFO queue ([#3518](https://github.com/redis/go-redis/pull/3518)) by [@cyningsun](https://github.com/cyningsun)\r\n- Canceled metrics attribute for context errors ([#3566](https://github.com/redis/go-redis/pull/3566)) by [@pvragov](https://github.com/pvragov)\r\n\r\n## 🐛 Bug Fixes\r\n\r\n- Fixed Failover Client MaintNotificationsConfig ([#3600](https://github.com/redis/go-redis/pull/3600)) by [@ajax16384](https://github.com/ajax16384)\r\n- Fixed ACLGenPass function to use the bit parameter ([#3597](https://github.com/redis/go-redis/pull/3597)) by [@destinyoooo](https://github.com/destinyoooo)\r\n- Return error instead of panic from commands ([#3568](https://github.com/redis/go-redis/pull/3568)) by [@dragneelfps](https://github.com/dragneelfps)\r\n- Safety harness in `joinErrors` to prevent panic ([#3577](https://github.com/redis/go-redis/pull/3577)) by [@manisharma](https://github.com/manisharma)\r\n\r\n## ⚡ Performance\r\n\r\n- Connection state machine with race condition fixes ([#3559](https://github.com/redis/go-redis/pull/3559)) by [@ndyakov](https://github.com/ndyakov)\r\n- Pool performance improvements: 47-67% faster Get/Put, 33% less memory, 50% fewer allocations ([#3565](https://github.com/redis/go-redis/pull/3565)) by [@ndyakov](https://github.com/ndyakov)\r\n\r\n## 🧪 Testing & Infrastructure\r\n\r\n- Updated to Redis 8.4.0 image ([#3603](https://github.com/redis/go-redis/pull/3603)) by [@ndyakov](https://github.com/ndyakov)\r\n- Added Redis 8.4-RC1-pre to CI ([#3572](https://github.com/redis/go-redis/pull/3572)) by [@ndyakov](https://github.com/ndyakov)\r\n- Refactored tests for idiomatic Go ([#3561](https://github.com/redis/go-redis/pull/3561), [#3562](https://github.com/redis/go-redis/pull/3562), [#3563](https://github.com/redis/go-redis/pull/3563)) by [@12ya](https://github.com/12ya)\r\n\r\n## 👥 Contributors\r\n\r\nWe'd like to thank all the contributors who worked on this release!\r\n\r\n[@12ya](https://github.com/12ya), [@ajax16384](https://github.com/ajax16384), [@cxljs](https://github.com/cxljs), [@cyningsun](https://github.com/cyningsun), [@destinyoooo](https://github.com/destinyoooo), [@dragneelfps](https://github.com/dragneelfps), [@htemelski-redis](https://github.com/htemelski-redis), [@manisharma](https://github.com/manisharma), [@ndyakov](https://github.com/ndyakov), [@ofekshenawa](https://github.com/ofekshenawa), [@pvragov](https://github.com/pvragov)\r\n\r\n---\r\n\r\n**Full Changelog**: https://github.com/redis/go-redis/compare/v9.16.0...v9.17.0","publishedAt":"2025-11-19T17:57:26.000Z","url":"https://github.com/redis/go-redis/releases/tag/v9.17.0","media":[]},{"id":"rel_bia0plpGB1vmTCl0LmYhG","version":"v9.16.0","title":"9.16.0","summary":"## 🚀 Highlights\r\n\r\n### Maintenance Notifications Support\r\n\r\nThis release introduces comprehensive support for Redis maintenance notifications, enabli...","content":"## 🚀 Highlights\r\n\r\n### Maintenance Notifications Support\r\n\r\nThis release introduces comprehensive support for Redis maintenance notifications, enabling applications to handle server maintenance events gracefully. The new `maintnotifications` package provides:\r\n\r\n- **RESP3 Push Notifications**: Full support for Redis RESP3 protocol push notifications\r\n- **Connection Handoff**: Automatic connection migration during server maintenance with configurable retry policies and circuit breakers\r\n- **Graceful Degradation**: Configurable timeout relaxation during maintenance windows to prevent false failures\r\n- **Event-Driven Architecture**: Background workers with on-demand scaling for efficient handoff processing\r\n\r\nFor detailed usage examples and configuration options, see the [maintenance notifications documentation](https://github.com/redis/go-redis/tree/master/maintnotifications).\r\n\r\n## ✨ New Features\r\n\r\n- **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))\r\n  - New `TraceCmdFilter` option to selectively trace commands\r\n  - Reduces overhead by excluding high-frequency or low-value commands from traces\r\n\r\n## 🐛 Bug Fixes\r\n\r\n- **Pipeline Error Handling**: Fix issue where pipeline repeatedly sets the same error ([#3525](https://github.com/redis/go-redis/pull/3525))\r\n- **Connection Pool**: Ensure re-authentication does not interfere with connection handoff operations ([#3547](https://github.com/redis/go-redis/pull/3547))\r\n\r\n## 🔧 Improvements\r\n\r\n- **Hash Commands**: Update hash command implementations ([#3523](https://github.com/redis/go-redis/pull/3523))\r\n- **OpenTelemetry**: Use `metric.WithAttributeSet` to avoid unnecessary attribute copying in redisotel ([#3552](https://github.com/redis/go-redis/pull/3552))\r\n\r\n## 📚 Documentation\r\n\r\n- **Cluster Client**: Add explanation for why `MaxRetries` is disabled for `ClusterClient` ([#3551](https://github.com/redis/go-redis/pull/3551))\r\n\r\n## 🧪 Testing & Infrastructure\r\n\r\n- **E2E Testing**: Upgrade E2E testing framework with improved reliability and coverage ([#3541](https://github.com/redis/go-redis/pull/3541))\r\n- **Release Process**: Improved resiliency of the release process ([#3530](https://github.com/redis/go-redis/pull/3530))\r\n\r\n## 📦 Dependencies\r\n\r\n- Bump `rojopolis/spellcheck-github-actions` from 0.51.0 to 0.52.0 ([#3520](https://github.com/redis/go-redis/pull/3520))\r\n- Bump `github/codeql-action` from 3 to 4 ([#3544](https://github.com/redis/go-redis/pull/3544))\r\n\r\n## 👥 Contributors\r\n\r\nWe'd like to thank all the contributors who worked on this release!\r\n\r\n[@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)\r\n\r\n---\r\n\r\n**Full Changelog**: https://github.com/redis/go-redis/compare/v9.14.0...v9.16.0","publishedAt":"2025-10-23T15:11:12.000Z","url":"https://github.com/redis/go-redis/releases/tag/v9.16.0","media":[]},{"id":"rel_Rs3h4HcJJrC5vnByDF6iz","version":"v9.14.1","title":"9.14.1","summary":"## Changes\r\n- fix(otel): Add support for filtering traces for certain commands ([#3519](https://github.com/redis/go-redis/pull/3519))\r\n- fix(pool): re...","content":"## Changes\r\n- fix(otel): Add support for filtering traces for certain commands ([#3519](https://github.com/redis/go-redis/pull/3519))\r\n- fix(pool): remove conn from idleConns if present ([#3546](https://github.com/redis/go-redis/pull/3546))\r\n\r\n## Contributors\r\nWe'd like to thank all the contributors who worked on this release!\r\n\r\n[@Sovietaced](https://github.com/Sovietaced), [@ndyakov](https://github.com/ndyakov)\r\n","publishedAt":"2025-10-18T21:53:54.000Z","url":"https://github.com/redis/go-redis/releases/tag/v9.14.1","media":[]},{"id":"rel_Hflv_k1-mERm5PMNlLad8","version":"v9.15.1","title":"Retract v9.15.0 and v9.15.1","summary":"","content":"","publishedAt":"2025-09-27T20:34:54.000Z","url":"https://github.com/redis/go-redis/releases/tag/v9.15.1","media":[]},{"id":"rel_42Ih-kac53-6KnZq8LQoa","version":"v9.16.0-beta.1","title":"9.16.0-beta.1","summary":"Clean state beta release, retracting 9.15.0","content":"Clean state beta release, retracting 9.15.0","publishedAt":"2025-09-27T15:48:29.000Z","url":"https://github.com/redis/go-redis/releases/tag/v9.16.0-beta.1","media":[]},{"id":"rel_sRncClzjVXU11aWnn63WL","version":"v9.15.0-beta.3","title":"9.15.0-beta.3","summary":"# Changes\r\nSame as v9.15.0-beta.2\r\nRetracts v9.15.0","content":"# Changes\r\nSame as v9.15.0-beta.2\r\nRetracts v9.15.0","publishedAt":"2025-09-26T23:18:39.000Z","url":"https://github.com/redis/go-redis/releases/tag/v9.15.0-beta.3","media":[]},{"id":"rel_7xl61bi3xQJUpxb0xVmcX","version":"v9.15.0-beta.2","title":"9.15.0-beta.2","summary":"## Highlights\r\nThis beta release includes a pre-production version of processing push notifications and hitless upgrades.\r\n\r\n# Changes\r\n\r\n- chore: Upd...","content":"## Highlights\r\nThis beta release includes a pre-production version of processing push notifications and hitless upgrades.\r\n\r\n# Changes\r\n\r\n- chore: Update hash_commands.go ([#3523](https://github.com/redis/go-redis/pull/3523))\r\n\r\n## 🚀 New Features\r\n\r\n- feat: RESP3 notifications support & Hitless notifications handling ([#3418](https://github.com/redis/go-redis/pull/3418))\r\n\r\n## 🐛 Bug Fixes\r\n\r\n- fix: pipeline repeatedly sets the error ([#3525](https://github.com/redis/go-redis/pull/3525))\r\n\r\n## 🧰 Maintenance\r\n\r\n- chore(deps): bump rojopolis/spellcheck-github-actions from 0.51.0 to 0.52.0 ([#3520](https://github.com/redis/go-redis/pull/3520))\r\n- feat(e2e-testing): maintnotifications e2e and refactor ([#3526](https://github.com/redis/go-redis/pull/3526))\r\n- feat(tag.sh): Improved resiliency of the release process ([#3530](https://github.com/redis/go-redis/pull/3530))\r\n\r\n## Contributors\r\nWe'd like to thank all the contributors who worked on this release!\r\n\r\n[@cxljs](https://github.com/cxljs), [@ndyakov](https://github.com/ndyakov), [@htemelski-redis](https://github.com/htemelski-redis), and [@omid-h70](https://github.com/omid-h70)","publishedAt":"2025-09-26T16:41:54.000Z","url":"https://github.com/redis/go-redis/releases/tag/v9.15.0-beta.2","media":[]},{"id":"rel_GkuWqM_losQa6EjucIQGF","version":"v9.15.0-beta.1","title":"9.15.0-beta.1","summary":"## Highlights\r\nThis beta release includes a pre-production version of processing push notifications and hitless upgrades.\r\n\r\n### Hitless Upgrades\r\nHit...","content":"## Highlights\r\nThis beta release includes a pre-production version of processing push notifications and hitless upgrades.\r\n\r\n### Hitless Upgrades\r\nHitless upgrades is a major new feature that allows for zero-downtime upgrades in Redis clusters.\r\nYou can find more information in the [Hitless Upgrades documentation](https://github.com/redis/go-redis/tree/master/hitless).\r\n\r\n# Changes\r\n\r\n## 🚀 New Features\r\n- [CAE-1088] & [CAE-1072] feat: RESP3 notifications support & Hitless notifications handling ([#3418](https://github.com/redis/go-redis/pull/3418))\r\n\r\n## Contributors\r\nWe'd like to thank all the contributors who worked on this release!\r\n\r\n[@ndyakov](https://github.com/ndyakov), [@htemelski-redis](https://github.com/htemelski-redis), [@ofekshenawa](https://github.com/ofekshenawa)\r\n","publishedAt":"2025-09-10T20:05:05.000Z","url":"https://github.com/redis/go-redis/releases/tag/v9.15.0-beta.1","media":[]},{"id":"rel_i6ofM-v_NgfLMwwj1cN6S","version":"v9.14.0","title":"9.14.0","summary":"## Highlights\r\n- Added batch process method to the pipeline ([#3510](https://github.com/redis/go-redis/pull/3510))\r\n\r\n# Changes\r\n\r\n## 🚀 New Features\r...","content":"## Highlights\r\n- Added batch process method to the pipeline ([#3510](https://github.com/redis/go-redis/pull/3510))\r\n\r\n# Changes\r\n\r\n## 🚀 New Features\r\n\r\n- Added batch process method to the pipeline ([#3510](https://github.com/redis/go-redis/pull/3510))\r\n\r\n## 🐛 Bug Fixes\r\n\r\n- fix: SetErr on Cmd if the command cannot be queued correctly in multi/exec ([#3509](https://github.com/redis/go-redis/pull/3509))\r\n\r\n## 🧰 Maintenance\r\n\r\n- Updates release drafter config to exclude dependabot ([#3511](https://github.com/redis/go-redis/pull/3511))\r\n- chore(deps): bump actions/setup-go from 5 to 6 ([#3504](https://github.com/redis/go-redis/pull/3504))\r\n\r\n## Contributors\r\nWe'd like to thank all the contributors who worked on this release!\r\n\r\n[@elena-kolevska](https://github.com/elena-kolevksa), [@htemelski-redis](https://github.com/htemelski-redis) and [@ndyakov](https://github.com/ndyakov)","publishedAt":"2025-09-10T12:02:55.000Z","url":"https://github.com/redis/go-redis/releases/tag/v9.14.0","media":[]},{"id":"rel_U0osSYPyoUTGBalR4wIbh","version":"v9.13.0","title":"9.13.0","summary":"## Highlights\r\n- Pipeliner expose queued commands ([#3496](https://github.com/redis/go-redis/pull/3496))\r\n- Ensure that JSON.GET returns Nil response ...","content":"## Highlights\r\n- Pipeliner expose queued commands ([#3496](https://github.com/redis/go-redis/pull/3496))\r\n- Ensure that JSON.GET returns Nil response ([#3470](https://github.com/redis/go-redis/pull/3470))\r\n- Fixes on Read and Write buffer sizes and UniversalOptions\r\n\r\n## Changes\r\n- Pipeliner expose queued commands ([#3496](https://github.com/redis/go-redis/pull/3496))\r\n- fix(test): fix a timing issue in pubsub test ([#3498](https://github.com/redis/go-redis/pull/3498))\r\n- Allow users to enable read-write splitting in failover mode. ([#3482](https://github.com/redis/go-redis/pull/3482))\r\n- Set the read/write buffer size of the sentinel client to 4KiB ([#3476](https://github.com/redis/go-redis/pull/3476))\r\n\r\n## 🚀 New Features\r\n\r\n- fix(otel): register wait metrics ([#3499](https://github.com/redis/go-redis/pull/3499))\r\n- Support subscriptions against cluster slave nodes ([#3480](https://github.com/redis/go-redis/pull/3480))\r\n- Add wait metrics to otel ([#3493](https://github.com/redis/go-redis/pull/3493))\r\n- Clean failing timeout implementation ([#3472](https://github.com/redis/go-redis/pull/3472))\r\n\r\n## 🐛 Bug Fixes\r\n\r\n- Do not assume that all non-IP hosts are loopbacks ([#3085](https://github.com/redis/go-redis/pull/3085))\r\n- Ensure that JSON.GET returns Nil response ([#3470](https://github.com/redis/go-redis/pull/3470))\r\n\r\n## 🧰 Maintenance\r\n\r\n- fix(otel): register wait metrics ([#3499](https://github.com/redis/go-redis/pull/3499))\r\n- fix(make test): Add default env in makefile ([#3491](https://github.com/redis/go-redis/pull/3491))\r\n- Update the introduction to running tests in README.md ([#3495](https://github.com/redis/go-redis/pull/3495))\r\n- test: Add comprehensive edge case tests for IncrByFloat command ([#3477](https://github.com/redis/go-redis/pull/3477))\r\n- Set the default read/write buffer size of Redis connection to 32KiB ([#3483](https://github.com/redis/go-redis/pull/3483))\r\n- Bumps test image to 8.2.1-pre ([#3478](https://github.com/redis/go-redis/pull/3478))\r\n- fix UniversalOptions miss ReadBufferSize and WriteBufferSize options ([#3485](https://github.com/redis/go-redis/pull/3485))\r\n- chore(deps): bump actions/checkout from 4 to 5 ([#3484](https://github.com/redis/go-redis/pull/3484))\r\n- Removes dry run for stale issues policy ([#3471](https://github.com/redis/go-redis/pull/3471))\r\n- Update otel metrics URL ([#3474](https://github.com/redis/go-redis/pull/3474))\r\n\r\n## Contributors\r\nWe'd like to thank all the contributors who worked on this release!\r\n\r\n[@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)","publishedAt":"2025-09-03T11:56:20.000Z","url":"https://github.com/redis/go-redis/releases/tag/v9.13.0","media":[]},{"id":"rel_2PvNXcXR6TmKkN92siRrm","version":"v9.12.1","title":"9.12.1","summary":"## 🚀 Highlights\r\nIn the last version (9.12.0) the client introduced bigger write and read buffer sizes. The default value was 512KiB.\r\nHowever, users...","content":"## 🚀 Highlights\r\nIn the last version (9.12.0) the client introduced bigger write and read buffer sizes. The default value was 512KiB.\r\nHowever, users reported that this is too big for most use cases and can lead to high memory usage.\r\nIn this version the default value is changed to 256KiB. The `README.md` was updated to reflect the\r\ncorrect default value and include a note that the default value can be changed.\r\n\r\n## 🐛 Bug Fixes\r\n\r\n- fix(options): Add buffer sizes to failover. Update README ([#3468](https://github.com/redis/go-redis/pull/3468))\r\n\r\n## 🧰 Maintenance\r\n\r\n- fix(options): Add buffer sizes to failover. Update README ([#3468](https://github.com/redis/go-redis/pull/3468))\r\n- chore: update & fix otel example ([#3466](https://github.com/redis/go-redis/pull/3466))\r\n\r\n## Contributors\r\nWe'd like to thank all the contributors who worked on this release!\r\n\r\n[@ndyakov](https://github.com/ndyakov) and [@vmihailenco](https://github.com/vmihailenco)\r\n","publishedAt":"2025-08-11T16:00:12.000Z","url":"https://github.com/redis/go-redis/releases/tag/v9.12.1","media":[]},{"id":"rel_d3EdQXjWMrfJ9H-3WHhyN","version":"v9.12.0","title":"9.12.0","summary":"## 🚀 Highlights\r\n\r\n- This release includes support for [Redis 8.2](https://redis.io/docs/latest/operate/oss_and_stack/stack-with-enterprise/release-n...","content":"## 🚀 Highlights\r\n\r\n- This release includes support for [Redis 8.2](https://redis.io/docs/latest/operate/oss_and_stack/stack-with-enterprise/release-notes/redisce/redisos-8.2-release-notes/).\r\n- Introduces an experimental Query Builders for `FTSearch`, `FTAggregate` and other search commands.\r\n- Adds support for `EPSILON` option in `FT.VSIM`.\r\n- Includes bug fixes and improvements contributed by the community related to ring and [redisotel](https://github.com/redis/go-redis/tree/master/extra/redisotel).\r\n\r\n## Changes\r\n- Improve stale issue workflow ([#3458](https://github.com/redis/go-redis/pull/3458))\r\n- chore(ci): Add 8.2 rc2 pre build for CI ([#3459](https://github.com/redis/go-redis/pull/3459))\r\n- Added new stream commands ([#3450](https://github.com/redis/go-redis/pull/3450))\r\n- feat: Add \"skip_verify\" to Sentinel ([#3428](https://github.com/redis/go-redis/pull/3428))\r\n- fix: `errors.Join` requires Go 1.20 or later ([#3442](https://github.com/redis/go-redis/pull/3442))\r\n- DOC-4344 document quickstart examples ([#3426](https://github.com/redis/go-redis/pull/3426))\r\n- feat(bitop): add support for the new bitop operations ([#3409](https://github.com/redis/go-redis/pull/3409))\r\n\r\n## 🚀 New Features\r\n\r\n- feat: recover addIdleConn may occur panic ([#2445](https://github.com/redis/go-redis/pull/2445))\r\n- feat(ring): specify custom health check func via HeartbeatFn option ([#2940](https://github.com/redis/go-redis/pull/2940))\r\n- Add Query Builder for RediSearch commands ([#3436](https://github.com/redis/go-redis/pull/3436))\r\n- add configurable buffer sizes for Redis connections ([#3453](https://github.com/redis/go-redis/pull/3453))\r\n- Add VAMANA vector type to RediSearch ([#3449](https://github.com/redis/go-redis/pull/3449))\r\n- VSIM add `EPSILON` option ([#3454](https://github.com/redis/go-redis/pull/3454))\r\n- Add closing support to otel metrics instrumentation ([#3444](https://github.com/redis/go-redis/pull/3444))\r\n\r\n## 🐛 Bug Fixes\r\n\r\n- fix(redisotel): fix buggy append in reportPoolStats ([#3122](https://github.com/redis/go-redis/pull/3122))\r\n- fix(search): return results even if doc is empty ([#3457](https://github.com/redis/go-redis/pull/3457))\r\n- [ISSUE-3402]: Ring.Pipelined return dial timeout error ([#3403](https://github.com/redis/go-redis/pull/3403))\r\n\r\n## 🧰 Maintenance\r\n\r\n- Merges stale issues jobs into one job with two steps ([#3463](https://github.com/redis/go-redis/pull/3463))\r\n- improve code readability ([#3446](https://github.com/redis/go-redis/pull/3446))\r\n- chore(release): 9.12.0-beta.1 ([#3460](https://github.com/redis/go-redis/pull/3460))\r\n- DOC-5472 time series doc examples ([#3443](https://github.com/redis/go-redis/pull/3443))\r\n- Add VAMANA compression algorithm tests ([#3461](https://github.com/redis/go-redis/pull/3461))\r\n- bumped redis 8.2 version used in the CI/CD ([#3451](https://github.com/redis/go-redis/pull/3451))\r\n\r\n## Contributors\r\nWe'd like to thank all the contributors who worked on this release!\r\n\r\n[@andy-stark-redis](https://github.com/andy-stark-redis), [@cxljs](https://github.com/cxljs), [@elena-kolevska](https://github.com/elena-kolevska), [@htemelski-redis](https://github.com/htemelski-redis), [@jouir](https://github.com/jouir), [@monkey92t](https://github.com/monkey92t), [@ndyakov](https://github.com/ndyakov), [@ofekshenawa](https://github.com/ofekshenawa), [@rokn](https://github.com/rokn), [@smnvdev](https://github.com/smnvdev), [@strobil](https://github.com/strobil) and [@wzy9607](https://github.com/wzy9607)\r\n\r\n## New Contributors\r\n* [@htemelski-redis](https://github.com/htemelski-redis) made their first contribution in [#3409](https://github.com/redis/go-redis/pull/3409)\r\n* [@smnvdev](https://github.com/smnvdev) made their first contribution in [#3403](https://github.com/redis/go-redis/pull/3403)\r\n* [@rokn](https://github.com/rokn) made their first contribution in [#3444](https://github.com/redis/go-redis/pull/3444)","publishedAt":"2025-08-05T13:52:35.000Z","url":"https://github.com/redis/go-redis/releases/tag/v9.12.0","media":[]},{"id":"rel_5dYDXcDHUwycEokw783ck","version":"v9.12.0-beta.1","title":"9.12.0-beta.1","summary":"## 🚀 Highlights\r\n\r\n- This is a beta release for Redis 8.2 support.\r\n- Introduces an experimental Query Builders for `FTSearch`, `FTAggregate` and oth...","content":"## 🚀 Highlights\r\n\r\n- This is a beta release for Redis 8.2 support.\r\n- Introduces an experimental Query Builders for `FTSearch`, `FTAggregate` and other search commands.\r\n- Adds support for `EPSILON` option in `FT.VSIM`.\r\n- Includes bug fixes and improvements related to search and community contributions for [redisotel](https://github.com/redis/go-redis/tree/master/extra/redisotel).\r\n\r\n## Changes\r\n\r\n- chore(github): Improve stale issue workflow ([#3458](https://github.com/redis/go-redis/pull/3458))\r\n- chore(ci): Add 8.2 rc2 pre build for CI ([#3459](https://github.com/redis/go-redis/pull/3459))\r\n- Added new stream commands ([#3450](https://github.com/redis/go-redis/pull/3450))\r\n- feat: Add \"skip_verify\" to Sentinel ([#3428](https://github.com/redis/go-redis/pull/3428))\r\n- fix: `errors.Join` requires Go 1.20 or later ([#3442](https://github.com/redis/go-redis/pull/3442))\r\n- DOC-4344 document quickstart examples ([#3426](https://github.com/redis/go-redis/pull/3426))\r\n- feat(bitop): add support for the new bitop operations ([#3409](https://github.com/redis/go-redis/pull/3409))\r\n\r\n## 🚀 New Features\r\n\r\n- Add Query Builder for RediSearch commands ([#3436](https://github.com/redis/go-redis/pull/3436))\r\n- Add configurable buffer sizes for Redis connections ([#3453](https://github.com/redis/go-redis/pull/3453))\r\n- Add VAMANA vector type to RediSearch ([#3449](https://github.com/redis/go-redis/pull/3449))\r\n- VSIM add `EPSILON` option ([#3454](https://github.com/redis/go-redis/pull/3454))\r\n- Add closing support to otel metrics instrumentation ([#3444](https://github.com/redis/go-redis/pull/3444))\r\n\r\n## 🐛 Bug Fixes\r\n\r\n- fix(search): return results even if doc is empty ([#3457](https://github.com/redis/go-redis/pull/3457))\r\n- [ISSUE-3402]: Ring.Pipelined return dial timeout error ([#3403](https://github.com/redis/go-redis/pull/3403))\r\n\r\n## 🧰 Maintenance\r\n\r\n- DOC-5472 time series doc examples ([#3443](https://github.com/redis/go-redis/pull/3443))\r\n- Add VAMANA compression algorithm tests ([#3461](https://github.com/redis/go-redis/pull/3461))\r\n- bumped redis 8.2 version used in the CI/CD ([#3451](https://github.com/redis/go-redis/pull/3451))\r\n\r\n## Contributors\r\nWe'd like to thank all the contributors who worked on this release!\r\n\r\n[@andy-stark-redis](https://github.com/andy-stark-redis), [@cxljs](https://github.com/cxljs), [@htemelski-redis](https://github.com/htemelski-redis), [@jouir](https://github.com/jouir), [@ndyakov](https://github.com/ndyakov), [@ofekshenawa](https://github.com/ofekshenawa), [@rokn](https://github.com/rokn) and [@smnvdev](https://github.com/smnvdev)\r\n\r\n## New Contributors\r\n* [@htemelski-redis](https://github.com/htemelski-redis) made their first contribution in https://github.com/redis/go-redis/pull/3409\r\n* [@smnvdev](https://github.com/smnvdev) made their first contribution in https://github.com/redis/go-redis/pull/3403\r\n* [@rokn](https://github.com/rokn) made their first contribution in https://github.com/redis/go-redis/pull/3444\r\n\r\n","publishedAt":"2025-08-04T12:04:38.000Z","url":"https://github.com/redis/go-redis/releases/tag/v9.12.0-beta.1","media":[]}],"pagination":{"page":1,"pageSize":20,"totalPages":4,"totalItems":65},"summaries":{"rolling":null,"monthly":[]}}