[PR #777] [CLOSED] Bump github.com/redis/go-redis/v9 from 9.0.3 to 9.3.0 #2882

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

📋 Pull Request Information

Original PR: https://github.com/hibiken/asynq/pull/777
Author: @dependabot[bot]
Created: 11/6/2023
Status: Closed

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


📝 Commits (1)

  • 44cbd05 Bump github.com/redis/go-redis/v9 from 9.0.3 to 9.3.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.3.0.

Release notes

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

9.3.0

What's new?

JSON support

We are continuing to add support for more Redis data types in Go-Redis. Today, we are happy to announce support for JSON. JSON is a Redis data structure for storing, querying, and manipulating a single JSON document.

With a JSON key in Redis, you can:

  • Use it as a versatile hierarchical data type
  • Opt for it as a sophisticated alternative to the traditional hash data structure
  • Treat it as a singular document in a document-based database

The following example demonstrate how to get started with JSON in Go-Redis:

var ctx = context.Background()
client := redis.NewClient(&redis.Options{
	Addr: "localhost:6379",
})

type Bicycle struct { Brand string Model string Price int }

bicycle := Bicycle{ Brand: "Velorim", Model: "Jigger", Price: 270, }

_, err := client.JSONSet(ctx, "bicycle:1", "$", bicycle).Result() if err != nil { panic(err) }

res, err := client.JSONGet(ctx, "bicycle:1", ".Model").Result() if err != nil { panic(err) } fmt.Println("bicycle:1 model is", res)

Learn more about JSON support in Redis

Other notable improvements

  • Allow using pointers of simple data types as command values (#2745) (#2753)
  • Add InfoMap command (#2665)

🐛 Bug Fixes

... (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

You can trigger a rebase of this PR 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)

Note

Automatic rebases have been disabled on this pull request as it has been open for over 30 days.


🔄 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/777 **Author:** [@dependabot[bot]](https://github.com/apps/dependabot) **Created:** 11/6/2023 **Status:** ❌ Closed **Base:** `master` ← **Head:** `dependabot/go_modules/github.com/redis/go-redis/v9-9.3.0` --- ### 📝 Commits (1) - [`44cbd05`](https://github.com/hibiken/asynq/commit/44cbd05ca5ecd0102ce1e3d05b0ccde75b036441) Bump github.com/redis/go-redis/v9 from 9.0.3 to 9.3.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.3.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.3.0</h2> <h2>What's new?</h2> <h3>JSON support</h3> <p>We are continuing to add support for more <a href="https://redis.io/docs/data-types/">Redis data types</a> in Go-Redis. Today, we are happy to announce support for JSON. <a href="https://redis.io/docs/data-types/json/">JSON is a Redis data structure</a> for storing, querying, and manipulating a single JSON document.</p> <p>With a JSON key in Redis, you can:</p> <ul> <li>Use it as a versatile hierarchical data type</li> <li>Opt for it as a sophisticated alternative to the traditional hash data structure</li> <li>Treat it as a singular document in a document-based database</li> </ul> <p>The following example demonstrate how to get started with JSON in Go-Redis:</p> <pre lang="go"><code>var ctx = context.Background() client := redis.NewClient(&amp;redis.Options{ Addr: &quot;localhost:6379&quot;, }) <p>type Bicycle struct { Brand string Model string Price int }</p> <p>bicycle := Bicycle{ Brand: &quot;Velorim&quot;, Model: &quot;Jigger&quot;, Price: 270, }</p> <p>_, err := client.JSONSet(ctx, &quot;bicycle:1&quot;, &quot;$&quot;, bicycle).Result() if err != nil { panic(err) }</p> <p>res, err := client.JSONGet(ctx, &quot;bicycle:1&quot;, &quot;.Model&quot;).Result() if err != nil { panic(err) } fmt.Println(&quot;bicycle:1 model is&quot;, res) </code></pre></p> <p><a href="https://redis.io/docs/data-types/json/">Learn more about JSON support in Redis</a></p> <h3>Other notable improvements</h3> <ul> <li>Allow using pointers of simple data types as command values (<a href="https://redirect.github.com/redis/go-redis/issues/2745">#2745</a>) (<a href="https://redirect.github.com/redis/go-redis/issues/2753">#2753</a>)</li> <li>Add InfoMap command (<a href="https://redirect.github.com/redis/go-redis/issues/2665">#2665</a>)</li> </ul> <h2>🐛 Bug Fixes</h2> <!-- 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/21bd40a47e56e61c0598ea1bdf8e02e67d1aa651"><code>21bd40a</code></a> Version 9.3.0 (<a href="https://redirect.github.com/redis/go-redis/issues/2774">#2774</a>)</li> <li><a href="https://github.com/redis/go-redis/commit/828fd2d3b83b813739ba56625fb637fe84f9c200"><code>828fd2d</code></a> chore(deps): bump google.golang.org/grpc in /example/otel (<a href="https://redirect.github.com/redis/go-redis/issues/2775">#2775</a>)</li> <li><a href="https://github.com/redis/go-redis/commit/898bd9aa5155d4f0c83b7a7260d51d47affcd2e2"><code>898bd9a</code></a> chore(deps): bump golang.org/x/net in /example/otel (<a href="https://redirect.github.com/redis/go-redis/issues/2776">#2776</a>)</li> <li><a href="https://github.com/redis/go-redis/commit/15682e3227597d12d7f76862b712a75fbb3d02d3"><code>15682e3</code></a> feat: support write the types of pointer of simple data types (<a href="https://redirect.github.com/redis/go-redis/issues/2745">#2745</a>) (<a href="https://redirect.github.com/redis/go-redis/issues/2753">#2753</a>)</li> <li><a href="https://github.com/redis/go-redis/commit/81947daa8d6b2bea7e3a12c210b022f0a88d4006"><code>81947da</code></a> Handle wrapped errors in scripter.Run (<a href="https://redirect.github.com/redis/go-redis/issues/2674">#2674</a>)</li> <li><a href="https://github.com/redis/go-redis/commit/84f46c330142e8ac08d12d9d68aef316cd272f73"><code>84f46c3</code></a> BUG: BFReserveArgs - error_rate &amp; capacity (<a href="https://redirect.github.com/redis/go-redis/issues/2763">#2763</a>)</li> <li><a href="https://github.com/redis/go-redis/commit/343016bf72212bb22c07d3e56393ef78f252c397"><code>343016b</code></a> add InfoMap command (<a href="https://redirect.github.com/redis/go-redis/issues/2665">#2665</a>)</li> <li><a href="https://github.com/redis/go-redis/commit/4408f8cfb2d4b3c49fbb5d17e6dfb85f04ce96c2"><code>4408f8c</code></a> free turn when leave with error (<a href="https://redirect.github.com/redis/go-redis/issues/2658">#2658</a>)</li> <li><a href="https://github.com/redis/go-redis/commit/7ebb537c804cf74322fe4910969e8af4f938683b"><code>7ebb537</code></a> remove duplicate declaration (<a href="https://redirect.github.com/redis/go-redis/issues/2773">#2773</a>)</li> <li><a href="https://github.com/redis/go-redis/commit/a5fe17472addc919cab2495559586540813e1864"><code>a5fe174</code></a> Option types must propagage missing fields (<a href="https://redirect.github.com/redis/go-redis/issues/2726">#2726</a>)</li> <li>Additional commits viewable in <a href="https://github.com/redis/go-redis/compare/v9.0.3...v9.3.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.3.0)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores) You can trigger a rebase of this PR 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> > **Note** > Automatic rebases have been disabled on this pull request as it has been open for over 30 days. --- <sub>🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.</sub>
kerem 2026-03-15 21:08:32 +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#2882
No description provided.