[PR #750] [CLOSED] Bump github.com/redis/go-redis/v9 from 9.0.3 to 9.2.0 #850

Closed
opened 2026-03-02 06:05:51 +03:00 by kerem · 0 comments
Owner

📋 Pull Request Information

Original PR: https://github.com/hibiken/asynq/pull/750
Author: @dependabot[bot]
Created: 9/25/2023
Status: Closed

Base: masterHead: dependabot/go_modules/github.com/redis/go-redis/v9-9.2.0


📝 Commits (1)

  • 704fa06 Bump github.com/redis/go-redis/v9 from 9.0.3 to 9.2.0

📊 Changes

2 files changed (+7 additions, -7 deletions)

View changed files

📝 go.mod (+1 -1)
📝 go.sum (+6 -6)

📄 Description

Bumps github.com/redis/go-redis/v9 from 9.0.3 to 9.2.0.

Release notes

Sourced from github.com/redis/go-redis/v9's releases.

9.2.0

What's new?

Time series support

We are happy to announce support for Time Series. This enhancement allows developers to leverage the time series data structure directly within Go-Redis, enabling efficient ingestion, querying, and storage of time-sequential data. Whether you're tracking metrics, logs, or other time-sensitive information, this feature offers a robust solution to manage time series data seamlessly. We encourage developers to explore this new capability and provide feedback for further improvements. Learn more about Redis Time Series

Better support for Redis 7.2

Go-Redis now supports WAITAOF and CLIENT SETINFO commands introduced in Redis 7.2.

Other notable improvements

  • Add the ability to set a connection growth limit with MaxActiveConns configuration setting (#2646)
  • Add support for multiple values in the bitfield cmd (#2648)

Breaking Changes

  • Changing the suffix for probablistic commands acceptings arguments to WithArgs from Args (#2701)

🧰 Maintenance

  • Making command structs digestible (#2716)
  • change interfaces probabilistic and redis gears from private to public (#2695)
  • Adding CONTRIBUTING guidelines (#2718)
  • Adding Go 1.21.x for CI coverage (#2697)
  • chore(deps): bump actions/checkout from 3 to 4 (#2702)
  • chore(deps): bump github.com/bsm/ginkgo/v2 from 2.9.5 to 2.12.0 (#2690)
  • chore(deps): bump github.com/bsm/gomega from 1.26.0 to 1.27.10 (#2689)
  • Adding stale issues workflow (#2700)
  • Updating redis binary for makefile to 7.2.1 (#2693)
  • Skip flaky tests (#2699)
  • Format code and fix go vet (#2696)
  • Use time duration calculation (#2651)

Contributors

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

@​NikanV, @​SoulPancake, @​chayim, @​dependabot, @​dependabot[bot], @​nvorobev, @​ofekshenawa, @​peczenyj, @​taytzehao and @​wzlove

9.1.0

What's new?

Triggers and Functions support

Triggers and Functions allow you to execute server-side functions triggered when key values are modified or created in Redis, a stream entry arrival, or explicitly calling them. Simply put, you can replace Lua scripts with easy-to-develop JavaScript or TypeScript code. Move your business logic closer to the data to ensure a lower latency, and forget about updating dependent key values manually in your code. Try it for yourself with Quick start

Support for All Probabilistic data structures

Probabilistic data structures, like Bloom filters, offer unique advantages when dealing with large datasets, such as memory efficiency, faster operations, and scalability. Go-Redis now supports all probabilistic data structures.

🐛 Bug Fixes

  • Fix bool ToBool bug (#2626)

... (truncated)

Changelog

Sourced from github.com/redis/go-redis/v9's changelog.

9.0.5 (2023-05-29)

Features

9.0.4 (2023-05-01)

Bug Fixes

Features

  • add client info command (#2483) (b8c7317)
  • no longer verify HELLO error messages (#2515) (7b4f217)
  • read the structure to increase the judgment of the omitempty op… (#2529) (37c057b)
Commits

Dependabot compatibility score

Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting @dependabot rebase.


Dependabot commands and options

You can trigger Dependabot actions by commenting on this PR:

  • @dependabot rebase will rebase this PR
  • @dependabot recreate will recreate this PR, overwriting any edits that have been made to it
  • @dependabot merge will merge this PR after your CI passes on it
  • @dependabot squash and merge will squash and merge this PR after your CI passes on it
  • @dependabot cancel merge will cancel a previously requested merge and block automerging
  • @dependabot reopen will reopen this PR if it is closed
  • @dependabot close will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually
  • @dependabot show <dependency name> ignore conditions will show all of the ignore conditions of the specified dependency
  • @dependabot ignore this major version will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)
  • @dependabot ignore this minor version will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)
  • @dependabot ignore this dependency will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)

🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.

## 📋 Pull Request Information **Original PR:** https://github.com/hibiken/asynq/pull/750 **Author:** [@dependabot[bot]](https://github.com/apps/dependabot) **Created:** 9/25/2023 **Status:** ❌ Closed **Base:** `master` ← **Head:** `dependabot/go_modules/github.com/redis/go-redis/v9-9.2.0` --- ### 📝 Commits (1) - [`704fa06`](https://github.com/hibiken/asynq/commit/704fa0677c60b60818a0e1f0bf3a0ce2db62d9f1) Bump github.com/redis/go-redis/v9 from 9.0.3 to 9.2.0 ### 📊 Changes **2 files changed** (+7 additions, -7 deletions) <details> <summary>View changed files</summary> 📝 `go.mod` (+1 -1) 📝 `go.sum` (+6 -6) </details> ### 📄 Description Bumps [github.com/redis/go-redis/v9](https://github.com/redis/go-redis) from 9.0.3 to 9.2.0. <details> <summary>Release notes</summary> <p><em>Sourced from <a href="https://github.com/redis/go-redis/releases">github.com/redis/go-redis/v9's releases</a>.</em></p> <blockquote> <h2>9.2.0</h2> <h2>What's new?</h2> <h3>Time series support</h3> <p>We are happy to announce support for <a href="https://redis.io/docs/data-types/timeseries/">Time Series</a>. This enhancement allows developers to leverage the time series data structure directly within Go-Redis, enabling efficient ingestion, querying, and storage of time-sequential data. Whether you're tracking metrics, logs, or other time-sensitive information, this feature offers a robust solution to manage time series data seamlessly. We encourage developers to explore this new capability and provide feedback for further improvements. <a href="https://redis.io/docs/data-types/timeseries/">Learn more about Redis Time Series</a></p> <h3>Better support for Redis 7.2</h3> <p>Go-Redis now supports <a href="https://redis.io/commands/waitaof/">WAITAOF</a> and <code>CLIENT SETINFO</code> commands introduced in <a href="https://redis.com/blog/introducing-redis-7-2/">Redis 7.2</a>.</p> <h3>Other notable improvements</h3> <ul> <li>Add the ability to set a connection growth limit with MaxActiveConns configuration setting (<a href="https://redirect.github.com/redis/go-redis/issues/2646">#2646</a>)</li> <li>Add support for multiple values in the bitfield cmd (<a href="https://redirect.github.com/redis/go-redis/issues/2648">#2648</a>)</li> </ul> <h2>Breaking Changes</h2> <ul> <li>Changing the suffix for probablistic commands acceptings arguments to WithArgs from Args (<a href="https://redirect.github.com/redis/go-redis/issues/2701">#2701</a>)</li> </ul> <h2>🧰 Maintenance</h2> <ul> <li>Making command structs digestible (<a href="https://redirect.github.com/redis/go-redis/issues/2716">#2716</a>)</li> <li>change interfaces probabilistic and redis gears from private to public (<a href="https://redirect.github.com/redis/go-redis/issues/2695">#2695</a>)</li> <li>Adding CONTRIBUTING guidelines (<a href="https://redirect.github.com/redis/go-redis/issues/2718">#2718</a>)</li> <li>Adding Go 1.21.x for CI coverage (<a href="https://redirect.github.com/redis/go-redis/issues/2697">#2697</a>)</li> <li>chore(deps): bump actions/checkout from 3 to 4 (<a href="https://redirect.github.com/redis/go-redis/issues/2702">#2702</a>)</li> <li>chore(deps): bump github.com/bsm/ginkgo/v2 from 2.9.5 to 2.12.0 (<a href="https://redirect.github.com/redis/go-redis/issues/2690">#2690</a>)</li> <li>chore(deps): bump github.com/bsm/gomega from 1.26.0 to 1.27.10 (<a href="https://redirect.github.com/redis/go-redis/issues/2689">#2689</a>)</li> <li>Adding stale issues workflow (<a href="https://redirect.github.com/redis/go-redis/issues/2700">#2700</a>)</li> <li>Updating redis binary for makefile to 7.2.1 (<a href="https://redirect.github.com/redis/go-redis/issues/2693">#2693</a>)</li> <li>Skip flaky tests (<a href="https://redirect.github.com/redis/go-redis/issues/2699">#2699</a>)</li> <li>Format code and fix go vet (<a href="https://redirect.github.com/redis/go-redis/issues/2696">#2696</a>)</li> <li>Use time duration calculation (<a href="https://redirect.github.com/redis/go-redis/issues/2651">#2651</a>)</li> </ul> <h2>Contributors</h2> <p>We'd like to thank all the contributors who worked on this release!</p> <p><a href="https://github.com/NikanV"><code>@​NikanV</code></a>, <a href="https://github.com/SoulPancake"><code>@​SoulPancake</code></a>, <a href="https://github.com/chayim"><code>@​chayim</code></a>, <a href="https://github.com/dependabot"><code>@​dependabot</code></a>, <a href="https://github.com/dependabot"><code>@​dependabot</code></a>[bot], <a href="https://github.com/nvorobev"><code>@​nvorobev</code></a>, <a href="https://github.com/ofekshenawa"><code>@​ofekshenawa</code></a>, <a href="https://github.com/peczenyj"><code>@​peczenyj</code></a>, <a href="https://github.com/taytzehao"><code>@​taytzehao</code></a> and <a href="https://github.com/wzlove"><code>@​wzlove</code></a></p> <h2>9.1.0</h2> <h2>What's new?</h2> <h3>Triggers and Functions support</h3> <p>Triggers and Functions allow you to execute server-side functions triggered when key values are modified or created in Redis, a stream entry arrival, or explicitly calling them. Simply put, you can replace Lua scripts with easy-to-develop JavaScript or TypeScript code. Move your business logic closer to the data to ensure a lower latency, and forget about updating dependent key values manually in your code. <a href="https://redis.io/docs/interact/programmability/triggers-and-functions/quick_start/">Try it for yourself with Quick start</a></p> <h3>Support for All Probabilistic data structures</h3> <p>Probabilistic data structures, like <a href="https://redis.io/docs/data-types/probabilistic/bloom-filter/">Bloom filters</a>, offer unique advantages when dealing with large datasets, such as memory efficiency, faster operations, and scalability. Go-Redis now supports all <a href="https://redis.io/docs/data-types/probabilistic/">probabilistic data structures</a>.</p> <h2>🐛 Bug Fixes</h2> <ul> <li>Fix bool ToBool bug (<a href="https://redirect.github.com/redis/go-redis/issues/2626">#2626</a>)</li> </ul> <!-- raw HTML omitted --> </blockquote> <p>... (truncated)</p> </details> <details> <summary>Changelog</summary> <p><em>Sourced from <a href="https://github.com/redis/go-redis/blob/master/CHANGELOG.md">github.com/redis/go-redis/v9's changelog</a>.</em></p> <blockquote> <h2><a href="https://github.com/redis/go-redis/compare/v9.0.4...v9.0.5">9.0.5</a> (2023-05-29)</h2> <h3>Features</h3> <ul> <li>Add ACL LOG (<a href="https://redirect.github.com/redis/go-redis/issues/2536">#2536</a>) (<a href="https://github.com/redis/go-redis/commit/31ba855ddebc38fbcc69a75d9d4fb769417cf602">31ba855</a>)</li> <li>add field protocol to setupClusterQueryParams (<a href="https://redirect.github.com/redis/go-redis/issues/2600">#2600</a>) (<a href="https://github.com/redis/go-redis/commit/840c25cb6f320501886a82a5e75f47b491e46fbe">840c25c</a>)</li> <li>add protocol option (<a href="https://redirect.github.com/redis/go-redis/issues/2598">#2598</a>) (<a href="https://github.com/redis/go-redis/commit/391798880cfb915c4660f6c3ba63e0c1a459e2af">3917988</a>)</li> </ul> <h2><a href="https://github.com/redis/go-redis/compare/v9.0.3...v9.0.4">9.0.4</a> (2023-05-01)</h2> <h3>Bug Fixes</h3> <ul> <li>reader float parser (<a href="https://redirect.github.com/redis/go-redis/issues/2513">#2513</a>) (<a href="https://github.com/redis/go-redis/commit/46f245075e6e3a8bd8471f9ca67ea95fd675e241">46f2450</a>)</li> </ul> <h3>Features</h3> <ul> <li>add client info command (<a href="https://redirect.github.com/redis/go-redis/issues/2483">#2483</a>) (<a href="https://github.com/redis/go-redis/commit/b8c7317cc6af444603731f7017c602347c0ba61e">b8c7317</a>)</li> <li>no longer verify HELLO error messages (<a href="https://redirect.github.com/redis/go-redis/issues/2515">#2515</a>) (<a href="https://github.com/redis/go-redis/commit/7b4f2179cb5dba3d3c6b0c6f10db52b837c912c8">7b4f217</a>)</li> <li>read the structure to increase the judgment of the omitempty op… (<a href="https://redirect.github.com/redis/go-redis/issues/2529">#2529</a>) (<a href="https://github.com/redis/go-redis/commit/37c057b8e597c5e8a0e372337f6a8ad27f6030af">37c057b</a>)</li> </ul> </blockquote> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/redis/go-redis/commit/dac3314bc640e4a4c3c8bca03bae9a4ec67b0de8"><code>dac3314</code></a> Bump version to 9.2.0 (<a href="https://redirect.github.com/redis/go-redis/issues/2722">#2722</a>)</li> <li><a href="https://github.com/redis/go-redis/commit/6199a2af2c59d85ab536408a4c8b92f8cba07f2f"><code>6199a2a</code></a> Making command structs digestable (<a href="https://redirect.github.com/redis/go-redis/issues/2716">#2716</a>)</li> <li><a href="https://github.com/redis/go-redis/commit/e07f7e62b8197a8f47edeeef230dfbf53ef05aa5"><code>e07f7e6</code></a> chore(deps): bump github.com/bsm/ginkgo/v2 from 2.9.5 to 2.12.0 (<a href="https://redirect.github.com/redis/go-redis/issues/2690">#2690</a>)</li> <li><a href="https://github.com/redis/go-redis/commit/7ecd7ac1c7b84f19fe723539d27089686ade1925"><code>7ecd7ac</code></a> chore(deps): bump github.com/bsm/gomega from 1.26.0 to 1.27.10 (<a href="https://redirect.github.com/redis/go-redis/issues/2689">#2689</a>)</li> <li><a href="https://github.com/redis/go-redis/commit/e23ea028bd95ae0f8a76a59ea53b7557e0c19fe5"><code>e23ea02</code></a> Added MaxActiveConns (<a href="https://redirect.github.com/redis/go-redis/issues/2646">#2646</a>)</li> <li><a href="https://github.com/redis/go-redis/commit/934c6a3fe0073b3afcca6c293a35486f2971c034"><code>934c6a3</code></a> make public probabilistic and redis gears interfaces (<a href="https://redirect.github.com/redis/go-redis/issues/2695">#2695</a>)</li> <li><a href="https://github.com/redis/go-redis/commit/0637c53f103b127f77bce430a7ac5b566a61aa30"><code>0637c53</code></a> Added the support for WAITAOF which is a new command in redis ver7.2.0 (<a href="https://redirect.github.com/redis/go-redis/issues/2629">#2629</a>)</li> <li><a href="https://github.com/redis/go-redis/commit/7acc0cd2546899c179b5952710cba486d3200ee3"><code>7acc0cd</code></a> useTime duration calculation (<a href="https://redirect.github.com/redis/go-redis/issues/2651">#2651</a>)</li> <li><a href="https://github.com/redis/go-redis/commit/e8ad794e965a1b4e2ba63fe9a6975a14ebf289b9"><code>e8ad794</code></a> Format code and fix go vet (<a href="https://redirect.github.com/redis/go-redis/issues/2696">#2696</a>)</li> <li><a href="https://github.com/redis/go-redis/commit/1a7d2f4ad4e91b9fac784aa1b94254f838863e3b"><code>1a7d2f4</code></a> upgrade bitfield cmd to <code>add multiple values</code> (<a href="https://redirect.github.com/redis/go-redis/issues/2648">#2648</a>)</li> <li>Additional commits viewable in <a href="https://github.com/redis/go-redis/compare/v9.0.3...v9.2.0">compare view</a></li> </ul> </details> <br /> [![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=github.com/redis/go-redis/v9&package-manager=go_modules&previous-version=9.0.3&new-version=9.2.0)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores) Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting `@dependabot rebase`. [//]: # (dependabot-automerge-start) [//]: # (dependabot-automerge-end) --- <details> <summary>Dependabot commands and options</summary> <br /> You can trigger Dependabot actions by commenting on this PR: - `@dependabot rebase` will rebase this PR - `@dependabot recreate` will recreate this PR, overwriting any edits that have been made to it - `@dependabot merge` will merge this PR after your CI passes on it - `@dependabot squash and merge` will squash and merge this PR after your CI passes on it - `@dependabot cancel merge` will cancel a previously requested merge and block automerging - `@dependabot reopen` will reopen this PR if it is closed - `@dependabot close` will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually - `@dependabot show <dependency name> ignore conditions` will show all of the ignore conditions of the specified dependency - `@dependabot ignore this major version` will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself) - `@dependabot ignore this minor version` will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself) - `@dependabot ignore this dependency` will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself) </details> --- <sub>🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.</sub>
kerem 2026-03-02 06:05:51 +03:00
Sign in to join this conversation.
No milestone
No project
No assignees
1 participant
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
starred/asynq#850
No description provided.