[PR #727] [CLOSED] Bump github.com/redis/go-redis/v9 from 9.0.3 to 9.1.0 #2865

Closed
opened 2026-03-15 21:07:27 +03:00 by kerem · 0 comments
Owner

📋 Pull Request Information

Original PR: https://github.com/hibiken/asynq/pull/727
Author: @dependabot[bot]
Created: 8/21/2023
Status: Closed

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


📝 Commits (1)

  • d6693b0 Bump github.com/redis/go-redis/v9 from 9.0.3 to 9.1.0

📊 Changes

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

View changed files

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

📄 Description

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

Release notes

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

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)

🧰 Maintenance

  • Bump github.com/bsm/ginkgo/v2 from 2.7.0 to 2.9.5 (#2613)
  • Adds testable examples to be automatically pulled in redis.io docs (#2601)
  • Integrating spellcheck into CI (#2666)
  • Bumping redis versions (#2662)
  • Updating the README with connection options (#2661)
  • chore: fix staticcheck (#2631)

Contributors

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

@​chayim, @​dependabot, @​dependabot[bot], @​elena-kolevska, @​kamyab98, @​ofekshenawa, @​testwill and @​vmihailenco

9.0.5

Changes

  • chore: release v9.0.5 (release.sh) (#2614)
  • chore: update otel example to the latest versions (#2606)
  • fix the reading of the "entries-read" field in XInfoStreamFull (#2595)
  • chore(deps): Update otel/metric to stable API (#2607)
  • feat: add field protocol to setupClusterQueryParams (#2600)
  • feat: add protocol option (#2598)

🚀 New Features

  • feat: Add ACL LOG (#2536)

Contributors

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

@​SoulPancake, @​ash2k, @​ljun20160606, @​monkey92t and @​vmihailenco

9.0.4

Changes

  • chore: release v9.0.4 (release.sh) (#2572)
  • chore(deps): Updating otel/metric and fixing breaking changes (#2569)

... (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/727 **Author:** [@dependabot[bot]](https://github.com/apps/dependabot) **Created:** 8/21/2023 **Status:** ❌ Closed **Base:** `master` ← **Head:** `dependabot/go_modules/github.com/redis/go-redis/v9-9.1.0` --- ### 📝 Commits (1) - [`d6693b0`](https://github.com/hibiken/asynq/commit/d6693b05f0b1b6d0e8ef331df92238f0162657cd) Bump github.com/redis/go-redis/v9 from 9.0.3 to 9.1.0 ### 📊 Changes **2 files changed** (+5 additions, -5 deletions) <details> <summary>View changed files</summary> 📝 `go.mod` (+1 -1) 📝 `go.sum` (+4 -4) </details> ### 📄 Description Bumps [github.com/redis/go-redis/v9](https://github.com/redis/go-redis) from 9.0.3 to 9.1.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.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> <h2>🧰 Maintenance</h2> <ul> <li>Bump github.com/bsm/ginkgo/v2 from 2.7.0 to 2.9.5 (<a href="https://redirect.github.com/redis/go-redis/issues/2613">#2613</a>)</li> <li>Adds testable examples to be automatically pulled in redis.io docs (<a href="https://redirect.github.com/redis/go-redis/issues/2601">#2601</a>)</li> <li>Integrating spellcheck into CI (<a href="https://redirect.github.com/redis/go-redis/issues/2666">#2666</a>)</li> <li>Bumping redis versions (<a href="https://redirect.github.com/redis/go-redis/issues/2662">#2662</a>)</li> <li>Updating the README with connection options (<a href="https://redirect.github.com/redis/go-redis/issues/2661">#2661</a>)</li> <li>chore: fix staticcheck (<a href="https://redirect.github.com/redis/go-redis/issues/2631">#2631</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/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/elena-kolevska"><code>@​elena-kolevska</code></a>, <a href="https://github.com/kamyab98"><code>@​kamyab98</code></a>, <a href="https://github.com/ofekshenawa"><code>@​ofekshenawa</code></a>, <a href="https://github.com/testwill"><code>@​testwill</code></a> and <a href="https://github.com/vmihailenco"><code>@​vmihailenco</code></a></p> <h2>9.0.5</h2> <h1>Changes</h1> <ul> <li>chore: release v9.0.5 (release.sh) (<a href="https://redirect.github.com/redis/go-redis/issues/2614">#2614</a>)</li> <li>chore: update otel example to the latest versions (<a href="https://redirect.github.com/redis/go-redis/issues/2606">#2606</a>)</li> <li>fix the reading of the &quot;entries-read&quot; field in XInfoStreamFull (<a href="https://redirect.github.com/redis/go-redis/issues/2595">#2595</a>)</li> <li>chore(deps): Update otel/metric to stable API (<a href="https://redirect.github.com/redis/go-redis/issues/2607">#2607</a>)</li> <li>feat: add field protocol to setupClusterQueryParams (<a href="https://redirect.github.com/redis/go-redis/issues/2600">#2600</a>)</li> <li>feat: add protocol option (<a href="https://redirect.github.com/redis/go-redis/issues/2598">#2598</a>)</li> </ul> <h2>🚀 New Features</h2> <ul> <li>feat: Add ACL LOG (<a href="https://redirect.github.com/redis/go-redis/issues/2536">#2536</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/SoulPancake"><code>@​SoulPancake</code></a>, <a href="https://github.com/ash2k"><code>@​ash2k</code></a>, <a href="https://github.com/ljun20160606"><code>@​ljun20160606</code></a>, <a href="https://github.com/monkey92t"><code>@​monkey92t</code></a> and <a href="https://github.com/vmihailenco"><code>@​vmihailenco</code></a></p> <h2>9.0.4</h2> <h1>Changes</h1> <ul> <li>chore: release v9.0.4 (release.sh) (<a href="https://redirect.github.com/redis/go-redis/issues/2572">#2572</a>)</li> <li>chore(deps): Updating otel/metric and fixing breaking changes (<a href="https://redirect.github.com/redis/go-redis/issues/2569">#2569</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/c3098d5f7eba88330638a8b2b3e23d42cd5c9338"><code>c3098d5</code></a> Bump to 9.1.0 (<a href="https://redirect.github.com/redis/go-redis/issues/2676">#2676</a>)</li> <li><a href="https://github.com/redis/go-redis/commit/aba21be8cd68b5039bb658f611546cf49f24a008"><code>aba21be</code></a> Add Redis Gears support (<a href="https://redirect.github.com/redis/go-redis/issues/2675">#2675</a>)</li> <li><a href="https://github.com/redis/go-redis/commit/558581eac6ee7527407045859542a118157efab4"><code>558581e</code></a> bloom support (<a href="https://redirect.github.com/redis/go-redis/issues/2673">#2673</a>)</li> <li><a href="https://github.com/redis/go-redis/commit/c7399b6a17d7d3e2a57654528af91349f2468529"><code>c7399b6</code></a> Spelling for CI (<a href="https://redirect.github.com/redis/go-redis/issues/2666">#2666</a>)</li> <li><a href="https://github.com/redis/go-redis/commit/b1103e3d436b6fe98813ecbbe1f99dc8d59b06c9"><code>b1103e3</code></a> Bumping redis versions (<a href="https://redirect.github.com/redis/go-redis/issues/2662">#2662</a>)</li> <li><a href="https://github.com/redis/go-redis/commit/0cc9cd6e0836055c40f15b59467dbc03899eaa55"><code>0cc9cd6</code></a> Updating the README with connection options (<a href="https://redirect.github.com/redis/go-redis/issues/2661">#2661</a>)</li> <li><a href="https://github.com/redis/go-redis/commit/c0ab7815ea66b036d0cb02e2902a7820551d948a"><code>c0ab781</code></a> chore: fix staticcheck (<a href="https://redirect.github.com/redis/go-redis/issues/2631">#2631</a>)</li> <li><a href="https://github.com/redis/go-redis/commit/50f04c14dee344147e9cf061f752ee913fd6c3ee"><code>50f04c1</code></a> chore: update otel example</li> <li><a href="https://github.com/redis/go-redis/commit/b1800df239fb1b2adecc48134bf0ff7b8fc0b194"><code>b1800df</code></a> fix: Fix bool ToBool bug (<a href="https://redirect.github.com/redis/go-redis/issues/2626">#2626</a>)</li> <li><a href="https://github.com/redis/go-redis/commit/0bdc7dd8986e4923b3309f880245b9311d09f273"><code>0bdc7dd</code></a> chore(deps): bump github.com/bsm/ginkgo/v2 from 2.7.0 to 2.9.5 (<a href="https://redirect.github.com/redis/go-redis/issues/2613">#2613</a>)</li> <li>Additional commits viewable in <a href="https://github.com/redis/go-redis/compare/v9.0.3...v9.1.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.1.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-15 21:07:27 +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#2865
No description provided.