Update module github.com/redis/go-redis/v9 to v9.13.0 #48

Merged
Gusted merged 1 commit from renovate/github.com-redis-go-redis-v9-9.x into main 2025-09-05 12:50:26 +00:00
Member

This PR contains the following updates:

Package Change Age Confidence
github.com/redis/go-redis/v9 v9.8.0 -> v9.13.0 age confidence

⚠️ Warning

Some dependencies could not be looked up. Check the Dependency Dashboard for more information.


Release Notes

redis/go-redis (github.com/redis/go-redis/v9)

v9.13.0: 9.13.0

Compare Source

Highlights

  • Pipeliner expose queued commands (#​3496)
  • Ensure that JSON.GET returns Nil response (#​3470)
  • Fixes on Read and Write buffer sizes and UniversalOptions

Changes

  • Pipeliner expose queued commands (#​3496)
  • fix(test): fix a timing issue in pubsub test (#​3498)
  • Allow users to enable read-write splitting in failover mode. (#​3482)
  • Set the read/write buffer size of the sentinel client to 4KiB (#​3476)

🚀 New Features

  • fix(otel): register wait metrics (#​3499)
  • Support subscriptions against cluster slave nodes (#​3480)
  • Add wait metrics to otel (#​3493)
  • Clean failing timeout implementation (#​3472)

🐛 Bug Fixes

  • Do not assume that all non-IP hosts are loopbacks (#​3085)
  • Ensure that JSON.GET returns Nil response (#​3470)

🧰 Maintenance

  • fix(otel): register wait metrics (#​3499)
  • fix(make test): Add default env in makefile (#​3491)
  • Update the introduction to running tests in README.md (#​3495)
  • test: Add comprehensive edge case tests for IncrByFloat command (#​3477)
  • Set the default read/write buffer size of Redis connection to 32KiB (#​3483)
  • Bumps test image to 8.2.1-pre (#​3478)
  • fix UniversalOptions miss ReadBufferSize and WriteBufferSize options (#​3485)
  • chore(deps): bump actions/checkout from 4 to 5 (#​3484)
  • Removes dry run for stale issues policy (#​3471)
  • Update otel metrics URL (#​3474)

Contributors

We'd like to thank all the contributors who worked on this release!

@​LINKIWI, @​cxljs, @​cybersmeashish, @​elena-kolevska, @​htemelski-redis, @​mwhooker, @​ndyakov, @​ofekshenawa, @​suever

v9.12.1: 9.12.1

Compare Source

🚀 Highlights

In the last version (9.12.0) the client introduced bigger write and read buffer sizes. The default value was 512KiB.
However, users reported that this is too big for most use cases and can lead to high memory usage.
In this version the default value is changed to 256KiB. The README.md was updated to reflect the
correct default value and include a note that the default value can be changed.

🐛 Bug Fixes

  • fix(options): Add buffer sizes to failover. Update README (#​3468)

🧰 Maintenance

  • fix(options): Add buffer sizes to failover. Update README (#​3468)
  • chore: update & fix otel example (#​3466)

Contributors

We'd like to thank all the contributors who worked on this release!

@​ndyakov and @​vmihailenco

v9.12.0: 9.12.0

Compare Source

🚀 Highlights

  • This release includes support for Redis 8.2.
  • Introduces an experimental Query Builders for FTSearch, FTAggregate and other search commands.
  • Adds support for EPSILON option in FT.VSIM.
  • Includes bug fixes and improvements contributed by the community related to ring and redisotel.

Changes

  • Improve stale issue workflow (#​3458)
  • chore(ci): Add 8.2 rc2 pre build for CI (#​3459)
  • Added new stream commands (#​3450)
  • feat: Add "skip_verify" to Sentinel (#​3428)
  • fix: errors.Join requires Go 1.20 or later (#​3442)
  • DOC-4344 document quickstart examples (#​3426)
  • feat(bitop): add support for the new bitop operations (#​3409)

🚀 New Features

  • feat: recover addIdleConn may occur panic (#​2445)
  • feat(ring): specify custom health check func via HeartbeatFn option (#​2940)
  • Add Query Builder for RediSearch commands (#​3436)
  • add configurable buffer sizes for Redis connections (#​3453)
  • Add VAMANA vector type to RediSearch (#​3449)
  • VSIM add EPSILON option (#​3454)
  • Add closing support to otel metrics instrumentation (#​3444)

🐛 Bug Fixes

  • fix(redisotel): fix buggy append in reportPoolStats (#​3122)
  • fix(search): return results even if doc is empty (#​3457)
  • [ISSUE-3402]: Ring.Pipelined return dial timeout error (#​3403)

🧰 Maintenance

  • Merges stale issues jobs into one job with two steps (#​3463)
  • improve code readability (#​3446)
  • chore(release): 9.12.0-beta.1 (#​3460)
  • DOC-5472 time series doc examples (#​3443)
  • Add VAMANA compression algorithm tests (#​3461)
  • bumped redis 8.2 version used in the CI/CD (#​3451)

Contributors

We'd like to thank all the contributors who worked on this release!

@​andy-stark-redis, @​cxljs, @​elena-kolevska, @​htemelski-redis, @​jouir, @​monkey92t, @​ndyakov, @​ofekshenawa, @​rokn, @​smnvdev, @​strobil and @​wzy9607

New Contributors

v9.11.0: 9.11.0

Compare Source

🚀 Highlights

Fixes TxPipeline to work correctly in cluster scenarios, allowing execution of commands
only in the same slot for a given transaction.

Changes

🚀 New Features

  • Set cluster slot for scan commands, rather than random (#​2623)
  • Add CredentialsProvider field to UniversalOptions (#​2927)
  • feat(redisotel): add WithCallerEnabled option (#​3415)

🐛 Bug Fixes

  • fix(txpipeline): keyless commands should take the slot of the keyed (#​3411)
  • fix(loading): cache the loaded flag for slave nodes (#​3410)
  • fix(txpipeline): should return error on multi/exec on multiple slots (#​3408)
  • fix: check if the shard exists to avoid returning nil (#​3396)

🧰 Maintenance

  • feat: optimize connection pool waitTurn (#​3412)
  • chore(ci): update CI redis builds (#​3407)
  • chore: remove a redundant method from Ring, Client and ClusterClient (#​3401)
  • test: refactor TestBasicCredentials using table-driven tests (#​3406)
  • perf: reduce unnecessary memory allocation operations (#​3399)
  • fix: insert entry during iterating over a map (#​3398)
  • DOC-5229 probabilistic data type examples (#​3413)
  • chore(deps): bump rojopolis/spellcheck-github-actions from 0.49.0 to 0.51.0 (#​3414)

Contributors

We'd like to thank all the contributors who worked on this release!

@​andy-stark-redis, @​boekkooi-impossiblecloud, @​cxljs, @​dcherubini, @​iamamirsalehi, @​ndyakov, @​pete-woods, @​twz915

v9.10.0: 9.10.0

Compare Source

Experimental support for vector sets!

🚀 Highlights

go-redis now supports vector sets. This data type is marked as "in preview" in Redis and its support in go-redis is marked as experimental. You can find examples in the documentation and in the doctests folder.

Changes

🚀 New Features

🧰 Maintenance

  • Add the missing NewFloatSliceResult for testing (#​3393)
  • DOC-5078 vector set examples (#​3394)

Contributors

We'd like to thank all the contributors who worked on this release!

@​AndBobsYourUncle, @​andy-stark-redis, @​fukua95 and @​ndyakov

v9.9.0: 9.9.0

Compare Source

🚀 Highlights

  • Token-based Authentication: Added StreamingCredentialsProvider for dynamic credential updates (experimental)
  • Connection Statistics: Added connection waiting statistics for better monitoring
  • Failover Improvements: Added ParseFailoverURL for easier failover configuration
  • Ring Client Enhancements: Added shard access methods for better Pub/Sub management

New Features

  • Added StreamingCredentialsProvider for token-based authentication (#​3320)
    • Supports dynamic credential updates
    • Includes connection close hooks
    • Note: Currently marked as experimental
  • Added ParseFailoverURL for parsing failover URLs (#​3362)
  • Added connection waiting statistics (#​2804)
  • Added new utility functions:
    • ParseFloat and MustParseFloat in public utils package (#​3371)
    • Unit tests for Atoi, ParseInt, ParseUint, and ParseFloat (#​3377)
  • Added Ring client shard access methods:
    • GetShardClients() to retrieve all active shard clients
    • GetShardClientForKey(key string) to get the shard client for a specific key (#​3388)

🐛 Bug Fixes

  • Fixed routing reads to loading slave nodes (#​3370)
  • Added support for nil lag in XINFO GROUPS (#​3369)
  • Fixed pool acquisition timeout issues (#​3381)
  • Optimized unnecessary copy operations (#​3376)

📚 Documentation

  • Updated documentation for XINFO GROUPS with nil lag support (#​3369)
  • Added package-level comments for new features

Performance and Reliability

  • Optimized ReplaceSpaces function (#​3383)
  • Set default value for Options.Protocol in init() (#​3387)
  • Exported pool errors for public consumption (#​3380)

🔧 Dependencies and Infrastructure

🧪 Testing

  • Added unit tests for pool acquisition timeout (#​3381)
  • Added unit tests for utility functions (#​3377)

👥 Contributors

We would like to thank all the contributors who made this release possible:

@​ndyakov, @​ofekshenawa, @​LINKIWI, @​iamamirsalehi, @​fukua95, @​lzakharov, @​DengY11

📝 Changelog

For a complete list of changes, see the full changelog.


Configuration

📅 Schedule: Branch creation - Between 12:00 AM and 03:59 AM ( * 0-3 * * * ) (UTC), Automerge - Between 12:00 AM and 03:59 AM ( * 0-3 * * * ) (UTC).

🚦 Automerge: Disabled by config. Please merge this manually once you are satisfied.

Rebasing: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox.

🔕 Ignore: Close this PR and you won't be reminded about this update again.


  • If you want to rebase/retry this PR, check this box

This PR has been generated by Renovate Bot.

This PR contains the following updates: | Package | Change | Age | Confidence | |---|---|---|---| | [github.com/redis/go-redis/v9](https://github.com/redis/go-redis) | `v9.8.0` -> `v9.13.0` | [![age](https://developer.mend.io/api/mc/badges/age/go/github.com%2fredis%2fgo-redis%2fv9/v9.13.0?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://developer.mend.io/api/mc/badges/confidence/go/github.com%2fredis%2fgo-redis%2fv9/v9.8.0/v9.13.0?slim=true)](https://docs.renovatebot.com/merge-confidence/) | --- > ⚠️ **Warning** > > Some dependencies could not be looked up. Check the Dependency Dashboard for more information. --- ### Release Notes <details> <summary>redis/go-redis (github.com/redis/go-redis/v9)</summary> ### [`v9.13.0`](https://github.com/redis/go-redis/releases/tag/v9.13.0): 9.13.0 [Compare Source](https://github.com/redis/go-redis/compare/v9.12.1...v9.13.0) #### Highlights - Pipeliner expose queued commands ([#&#8203;3496](https://github.com/redis/go-redis/pull/3496)) - Ensure that JSON.GET returns Nil response ([#&#8203;3470](https://github.com/redis/go-redis/pull/3470)) - Fixes on Read and Write buffer sizes and UniversalOptions #### Changes - Pipeliner expose queued commands ([#&#8203;3496](https://github.com/redis/go-redis/pull/3496)) - fix(test): fix a timing issue in pubsub test ([#&#8203;3498](https://github.com/redis/go-redis/pull/3498)) - Allow users to enable read-write splitting in failover mode. ([#&#8203;3482](https://github.com/redis/go-redis/pull/3482)) - Set the read/write buffer size of the sentinel client to 4KiB ([#&#8203;3476](https://github.com/redis/go-redis/pull/3476)) #### 🚀 New Features - fix(otel): register wait metrics ([#&#8203;3499](https://github.com/redis/go-redis/pull/3499)) - Support subscriptions against cluster slave nodes ([#&#8203;3480](https://github.com/redis/go-redis/pull/3480)) - Add wait metrics to otel ([#&#8203;3493](https://github.com/redis/go-redis/pull/3493)) - Clean failing timeout implementation ([#&#8203;3472](https://github.com/redis/go-redis/pull/3472)) #### 🐛 Bug Fixes - Do not assume that all non-IP hosts are loopbacks ([#&#8203;3085](https://github.com/redis/go-redis/pull/3085)) - Ensure that JSON.GET returns Nil response ([#&#8203;3470](https://github.com/redis/go-redis/pull/3470)) #### 🧰 Maintenance - fix(otel): register wait metrics ([#&#8203;3499](https://github.com/redis/go-redis/pull/3499)) - fix(make test): Add default env in makefile ([#&#8203;3491](https://github.com/redis/go-redis/pull/3491)) - Update the introduction to running tests in README.md ([#&#8203;3495](https://github.com/redis/go-redis/pull/3495)) - test: Add comprehensive edge case tests for IncrByFloat command ([#&#8203;3477](https://github.com/redis/go-redis/pull/3477)) - Set the default read/write buffer size of Redis connection to 32KiB ([#&#8203;3483](https://github.com/redis/go-redis/pull/3483)) - Bumps test image to 8.2.1-pre ([#&#8203;3478](https://github.com/redis/go-redis/pull/3478)) - fix UniversalOptions miss ReadBufferSize and WriteBufferSize options ([#&#8203;3485](https://github.com/redis/go-redis/pull/3485)) - chore(deps): bump actions/checkout from 4 to 5 ([#&#8203;3484](https://github.com/redis/go-redis/pull/3484)) - Removes dry run for stale issues policy ([#&#8203;3471](https://github.com/redis/go-redis/pull/3471)) - Update otel metrics URL ([#&#8203;3474](https://github.com/redis/go-redis/pull/3474)) #### Contributors We'd like to thank all the contributors who worked on this release! [@&#8203;LINKIWI](https://github.com/LINKIWI), [@&#8203;cxljs](https://github.com/cxljs), [@&#8203;cybersmeashish](https://github.com/cybersmeashish), [@&#8203;elena-kolevska](https://github.com/elena-kolevska), [@&#8203;htemelski-redis](https://github.com/htemelski-redis), [@&#8203;mwhooker](https://github.com/mwhooker), [@&#8203;ndyakov](https://github.com/ndyakov), [@&#8203;ofekshenawa](https://github.com/ofekshenawa), [@&#8203;suever](https://github.com/suever) ### [`v9.12.1`](https://github.com/redis/go-redis/releases/tag/v9.12.1): 9.12.1 [Compare Source](https://github.com/redis/go-redis/compare/v9.12.0...v9.12.1) #### 🚀 Highlights In the last version (9.12.0) the client introduced bigger write and read buffer sizes. The default value was 512KiB. However, users reported that this is too big for most use cases and can lead to high memory usage. In this version the default value is changed to 256KiB. The `README.md` was updated to reflect the correct default value and include a note that the default value can be changed. #### 🐛 Bug Fixes - fix(options): Add buffer sizes to failover. Update README ([#&#8203;3468](https://github.com/redis/go-redis/pull/3468)) #### 🧰 Maintenance - fix(options): Add buffer sizes to failover. Update README ([#&#8203;3468](https://github.com/redis/go-redis/pull/3468)) - chore: update & fix otel example ([#&#8203;3466](https://github.com/redis/go-redis/pull/3466)) #### Contributors We'd like to thank all the contributors who worked on this release! [@&#8203;ndyakov](https://github.com/ndyakov) and [@&#8203;vmihailenco](https://github.com/vmihailenco) ### [`v9.12.0`](https://github.com/redis/go-redis/releases/tag/v9.12.0): 9.12.0 [Compare Source](https://github.com/redis/go-redis/compare/v9.11.0...v9.12.0) #### 🚀 Highlights - 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/). - Introduces an experimental Query Builders for `FTSearch`, `FTAggregate` and other search commands. - Adds support for `EPSILON` option in `FT.VSIM`. - Includes bug fixes and improvements contributed by the community related to ring and [redisotel](https://github.com/redis/go-redis/tree/master/extra/redisotel). #### Changes - Improve stale issue workflow ([#&#8203;3458](https://github.com/redis/go-redis/pull/3458)) - chore(ci): Add 8.2 rc2 pre build for CI ([#&#8203;3459](https://github.com/redis/go-redis/pull/3459)) - Added new stream commands ([#&#8203;3450](https://github.com/redis/go-redis/pull/3450)) - feat: Add "skip\_verify" to Sentinel ([#&#8203;3428](https://github.com/redis/go-redis/pull/3428)) - fix: `errors.Join` requires Go 1.20 or later ([#&#8203;3442](https://github.com/redis/go-redis/pull/3442)) - DOC-4344 document quickstart examples ([#&#8203;3426](https://github.com/redis/go-redis/pull/3426)) - feat(bitop): add support for the new bitop operations ([#&#8203;3409](https://github.com/redis/go-redis/pull/3409)) #### 🚀 New Features - feat: recover addIdleConn may occur panic ([#&#8203;2445](https://github.com/redis/go-redis/pull/2445)) - feat(ring): specify custom health check func via HeartbeatFn option ([#&#8203;2940](https://github.com/redis/go-redis/pull/2940)) - Add Query Builder for RediSearch commands ([#&#8203;3436](https://github.com/redis/go-redis/pull/3436)) - add configurable buffer sizes for Redis connections ([#&#8203;3453](https://github.com/redis/go-redis/pull/3453)) - Add VAMANA vector type to RediSearch ([#&#8203;3449](https://github.com/redis/go-redis/pull/3449)) - VSIM add `EPSILON` option ([#&#8203;3454](https://github.com/redis/go-redis/pull/3454)) - Add closing support to otel metrics instrumentation ([#&#8203;3444](https://github.com/redis/go-redis/pull/3444)) #### 🐛 Bug Fixes - fix(redisotel): fix buggy append in reportPoolStats ([#&#8203;3122](https://github.com/redis/go-redis/pull/3122)) - fix(search): return results even if doc is empty ([#&#8203;3457](https://github.com/redis/go-redis/pull/3457)) - \[ISSUE-3402]: Ring.Pipelined return dial timeout error ([#&#8203;3403](https://github.com/redis/go-redis/pull/3403)) #### 🧰 Maintenance - Merges stale issues jobs into one job with two steps ([#&#8203;3463](https://github.com/redis/go-redis/pull/3463)) - improve code readability ([#&#8203;3446](https://github.com/redis/go-redis/pull/3446)) - chore(release): 9.12.0-beta.1 ([#&#8203;3460](https://github.com/redis/go-redis/pull/3460)) - DOC-5472 time series doc examples ([#&#8203;3443](https://github.com/redis/go-redis/pull/3443)) - Add VAMANA compression algorithm tests ([#&#8203;3461](https://github.com/redis/go-redis/pull/3461)) - bumped redis 8.2 version used in the CI/CD ([#&#8203;3451](https://github.com/redis/go-redis/pull/3451)) #### Contributors We'd like to thank all the contributors who worked on this release! [@&#8203;andy-stark-redis](https://github.com/andy-stark-redis), [@&#8203;cxljs](https://github.com/cxljs), [@&#8203;elena-kolevska](https://github.com/elena-kolevska), [@&#8203;htemelski-redis](https://github.com/htemelski-redis), [@&#8203;jouir](https://github.com/jouir), [@&#8203;monkey92t](https://github.com/monkey92t), [@&#8203;ndyakov](https://github.com/ndyakov), [@&#8203;ofekshenawa](https://github.com/ofekshenawa), [@&#8203;rokn](https://github.com/rokn), [@&#8203;smnvdev](https://github.com/smnvdev), [@&#8203;strobil](https://github.com/strobil) and [@&#8203;wzy9607](https://github.com/wzy9607) #### New Contributors - [@&#8203;htemelski-redis](https://github.com/htemelski-redis) made their first contribution in [#&#8203;3409](https://github.com/redis/go-redis/pull/3409) - [@&#8203;smnvdev](https://github.com/smnvdev) made their first contribution in [#&#8203;3403](https://github.com/redis/go-redis/pull/3403) - [@&#8203;rokn](https://github.com/rokn) made their first contribution in [#&#8203;3444](https://github.com/redis/go-redis/pull/3444) ### [`v9.11.0`](https://github.com/redis/go-redis/releases/tag/v9.11.0): 9.11.0 [Compare Source](https://github.com/redis/go-redis/compare/v9.10.0...v9.11.0) #### 🚀 Highlights Fixes `TxPipeline` to work correctly in cluster scenarios, allowing execution of commands only in the same slot for a given transaction. ### Changes #### 🚀 New Features - Set cluster slot for `scan` commands, rather than random ([#&#8203;2623](https://github.com/redis/go-redis/pull/2623)) - Add CredentialsProvider field to UniversalOptions ([#&#8203;2927](https://github.com/redis/go-redis/pull/2927)) - feat(redisotel): add WithCallerEnabled option ([#&#8203;3415](https://github.com/redis/go-redis/pull/3415)) #### 🐛 Bug Fixes - fix(txpipeline): keyless commands should take the slot of the keyed ([#&#8203;3411](https://github.com/redis/go-redis/pull/3411)) - fix(loading): cache the loaded flag for slave nodes ([#&#8203;3410](https://github.com/redis/go-redis/pull/3410)) - fix(txpipeline): should return error on multi/exec on multiple slots ([#&#8203;3408](https://github.com/redis/go-redis/pull/3408)) - fix: check if the shard exists to avoid returning nil ([#&#8203;3396](https://github.com/redis/go-redis/pull/3396)) #### 🧰 Maintenance - feat: optimize connection pool waitTurn ([#&#8203;3412](https://github.com/redis/go-redis/pull/3412)) - chore(ci): update CI redis builds ([#&#8203;3407](https://github.com/redis/go-redis/pull/3407)) - chore: remove a redundant method from `Ring`, `Client` and `ClusterClient` ([#&#8203;3401](https://github.com/redis/go-redis/pull/3401)) - test: refactor TestBasicCredentials using table-driven tests ([#&#8203;3406](https://github.com/redis/go-redis/pull/3406)) - perf: reduce unnecessary memory allocation operations ([#&#8203;3399](https://github.com/redis/go-redis/pull/3399)) - fix: insert entry during iterating over a map ([#&#8203;3398](https://github.com/redis/go-redis/pull/3398)) - DOC-5229 probabilistic data type examples ([#&#8203;3413](https://github.com/redis/go-redis/pull/3413)) - chore(deps): bump rojopolis/spellcheck-github-actions from 0.49.0 to 0.51.0 ([#&#8203;3414](https://github.com/redis/go-redis/pull/3414)) #### Contributors We'd like to thank all the contributors who worked on this release! [@&#8203;andy-stark-redis](https://github.com/andy-stark-redis), [@&#8203;boekkooi-impossiblecloud](https://github.com/boekkooi-impossiblecloud), [@&#8203;cxljs](https://github.com/cxljs), [@&#8203;dcherubini](https://github.com/dcherubini), [@&#8203;iamamirsalehi](https://github.com/iamamirsalehi), [@&#8203;ndyakov](https://github.com/ndyakov), [@&#8203;pete-woods](https://github.com/pete-woods), [@&#8203;twz915](https://github.com/twz915) ### [`v9.10.0`](https://github.com/redis/go-redis/releases/tag/v9.10.0): 9.10.0 [Compare Source](https://github.com/redis/go-redis/compare/v9.9.0...v9.10.0) Experimental support for [vector sets](https://redis.io/docs/latest/develop/data-types/vector-sets/)! #### 🚀 Highlights `go-redis` now supports [vector sets](https://redis.io/docs/latest/develop/data-types/vector-sets/). This data type is marked as "in preview" in Redis and its support in `go-redis` is marked as experimental. You can find examples in the documentation and in the `doctests` folder. ### Changes #### 🚀 New Features - feat: support vectorset ([#&#8203;3375](https://github.com/redis/go-redis/pull/3375)) [@&#8203;fukua95](https://github.com/fukua95) #### 🧰 Maintenance - Add the missing NewFloatSliceResult for testing ([#&#8203;3393](https://github.com/redis/go-redis/pull/3393)) - DOC-5078 vector set examples ([#&#8203;3394](https://github.com/redis/go-redis/pull/3394)) #### Contributors We'd like to thank all the contributors who worked on this release! [@&#8203;AndBobsYourUncle](https://github.com/AndBobsYourUncle), [@&#8203;andy-stark-redis](https://github.com/andy-stark-redis), [@&#8203;fukua95](https://github.com/fukua95) and [@&#8203;ndyakov](https://github.com/ndyakov) ### [`v9.9.0`](https://github.com/redis/go-redis/releases/tag/v9.9.0): 9.9.0 [Compare Source](https://github.com/redis/go-redis/compare/v9.8.0...v9.9.0) #### 🚀 Highlights - **Token-based Authentication**: Added `StreamingCredentialsProvider` for dynamic credential updates (**experimental**) - Can be used with [go-redis-entraid](https://github.com/redis/go-redis-entraid) for Azure AD authentication - **Connection Statistics**: Added connection waiting statistics for better monitoring - **Failover Improvements**: Added `ParseFailoverURL` for easier failover configuration - **Ring Client Enhancements**: Added shard access methods for better Pub/Sub management #### ✨ New Features - Added `StreamingCredentialsProvider` for token-based authentication ([#&#8203;3320](https://github.com/redis/go-redis/pull/3320)) - Supports dynamic credential updates - Includes connection close hooks - Note: Currently marked as experimental - Added `ParseFailoverURL` for parsing failover URLs ([#&#8203;3362](https://github.com/redis/go-redis/pull/3362)) - Added connection waiting statistics ([#&#8203;2804](https://github.com/redis/go-redis/pull/2804)) - Added new utility functions: - `ParseFloat` and `MustParseFloat` in public utils package ([#&#8203;3371](https://github.com/redis/go-redis/pull/3371)) - Unit tests for `Atoi`, `ParseInt`, `ParseUint`, and `ParseFloat` ([#&#8203;3377](https://github.com/redis/go-redis/pull/3377)) - Added Ring client shard access methods: - `GetShardClients()` to retrieve all active shard clients - `GetShardClientForKey(key string)` to get the shard client for a specific key ([#&#8203;3388](https://github.com/redis/go-redis/pull/3388)) #### 🐛 Bug Fixes - Fixed routing reads to loading slave nodes ([#&#8203;3370](https://github.com/redis/go-redis/pull/3370)) - Added support for nil lag in XINFO GROUPS ([#&#8203;3369](https://github.com/redis/go-redis/pull/3369)) - Fixed pool acquisition timeout issues ([#&#8203;3381](https://github.com/redis/go-redis/pull/3381)) - Optimized unnecessary copy operations ([#&#8203;3376](https://github.com/redis/go-redis/pull/3376)) #### 📚 Documentation - Updated documentation for XINFO GROUPS with nil lag support ([#&#8203;3369](https://github.com/redis/go-redis/pull/3369)) - Added package-level comments for new features #### ⚡ Performance and Reliability - Optimized `ReplaceSpaces` function ([#&#8203;3383](https://github.com/redis/go-redis/pull/3383)) - Set default value for `Options.Protocol` in `init()` ([#&#8203;3387](https://github.com/redis/go-redis/pull/3387)) - Exported pool errors for public consumption ([#&#8203;3380](https://github.com/redis/go-redis/pull/3380)) #### 🔧 Dependencies and Infrastructure - Updated Redis CI to version 8.0.1 ([#&#8203;3372](https://github.com/redis/go-redis/pull/3372)) - Updated spellcheck GitHub Actions ([#&#8203;3389](https://github.com/redis/go-redis/pull/3389)) - Removed unused parameters ([#&#8203;3382](https://github.com/redis/go-redis/pull/3382), [#&#8203;3384](https://github.com/redis/go-redis/pull/3384)) #### 🧪 Testing - Added unit tests for pool acquisition timeout ([#&#8203;3381](https://github.com/redis/go-redis/pull/3381)) - Added unit tests for utility functions ([#&#8203;3377](https://github.com/redis/go-redis/pull/3377)) #### 👥 Contributors We would like to thank all the contributors who made this release possible: [@&#8203;ndyakov](https://github.com/ndyakov), [@&#8203;ofekshenawa](https://github.com/ofekshenawa), [@&#8203;LINKIWI](https://github.com/LINKIWI), [@&#8203;iamamirsalehi](https://github.com/iamamirsalehi), [@&#8203;fukua95](https://github.com/fukua95), [@&#8203;lzakharov](https://github.com/lzakharov), [@&#8203;DengY11](https://github.com/DengY11) #### 📝 Changelog For a complete list of changes, see the [full changelog](https://github.com/redis/go-redis/compare/v9.8.0...v9.9.0). </details> --- ### Configuration 📅 **Schedule**: Branch creation - Between 12:00 AM and 03:59 AM ( * 0-3 * * * ) (UTC), Automerge - Between 12:00 AM and 03:59 AM ( * 0-3 * * * ) (UTC). 🚦 **Automerge**: Disabled by config. Please merge this manually once you are satisfied. ♻ **Rebasing**: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox. 🔕 **Ignore**: Close this PR and you won't be reminded about this update again. --- - [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check this box --- This PR has been generated by [Renovate Bot](https://github.com/renovatebot/renovate). <!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiI0MS45MS4yIiwidXBkYXRlZEluVmVyIjoiNDEuOTEuMiIsInRhcmdldEJyYW5jaCI6Im1haW4iLCJsYWJlbHMiOltdfQ==-->
Update module github.com/redis/go-redis/v9 to v9.13.0
All checks were successful
test / test (push) Successful in 47s
test / test (pull_request) Successful in 46s
ccfa15a50d
Gusted approved these changes 2025-09-05 12:50:23 +00:00
Gusted left a comment
Owner

Enough fixes have accumulated, lets merge it to have too big of a version bump.

Enough fixes have accumulated, lets merge it to have too big of a version bump.
Gusted merged commit ab13eb992e into main 2025-09-05 12:50:26 +00:00
Gusted deleted branch renovate/github.com-redis-go-redis-v9-9.x 2025-09-05 12:50:26 +00:00
Sign in to join this conversation.
No reviewers
No labels
No milestone
No project
No assignees
2 participants
Notifications
Due date
The due date is invalid or out of range. Please use the format "yyyy-mm-dd".

No due date set.

Dependencies

No dependencies set.

Reference
go-chi/session!48
No description provided.