Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore(deps): update module github.com/redis/go-redis/v9 to v9.4.0 #351

Merged
merged 1 commit into from
Feb 6, 2024

Conversation

renovate[bot]
Copy link
Contributor

@renovate renovate bot commented Aug 17, 2023

Mend Renovate

This PR contains the following updates:

Package Change Age Adoption Passing Confidence
github.com/redis/go-redis/v9 v9.0.5 -> v9.4.0 age adoption passing confidence

Release Notes

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

v9.4.0: 9.4.0

Compare Source

Changes

Breaking Changes

🚀 New Features

  • Add Suffix support to default client set info (#​2852)

🧰 Maintenance

  • return raw value instead of function calling in Result() (#​2831)
  • Add Redis Enterprise tests (#​2847)

Contributors

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

@​lowang-bh and @​ofekshenawa

v9.3.1: 9.3.1

Compare Source

Updates and Enhancements

  • Documentation and examples have been updated (#​2806).
  • Redis values can now be scanned into pointer fields (#​2787).
  • The URL format error in the Documentation has been corrected (#​2789).
  • Cmder annotation has been added (#​2816).
  • The Z member type has been changed to string (#​2818).

🚀 New Features

  • BITFIELD_RO Command has been introduced (#​2820).
  • Monitor Command is now supported (#​2830).

🐛 Bug Fixes

  • "COMMAND" command is now executed only when readonly (#​2815).

🧰 Maintenance and Dependency Updates

  • The usage of TSMadd ktvSlices has been clarified in the docstring (#​2827).
  • Dependencies have been updated:
    • rojopolis/spellcheck-github-actions from 0.34.0 to 0.35.0 (#​2807)
    • actions/stale from 8 to 9 (#​2828)
    • actions/setup-go from 4 to 5 (#​2829)

Contributors

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

@​RyoMiyashita, @​dependabot, @​dependabot[bot], @​lzakharov, @​ofekshenawa, @​rfyiamcool, @​rouzier, @​splundid and @​x1nchen

v9.3.0: 9.3.0

Compare Source

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

🐛 Bug Fixes

  • Handle wrapped errors in scripter.Run (#​2674)
  • BUG: BFReserveArgs - error_rate & capacity (#​2763)
  • fix: free turn of connection pool when leave with error (#​2658)
  • Add BitMapCmdable to Cmdable. (#​2737)

🧰 Maintenance

  • Option types must propagage missing fields (#​2726)
  • fix missing fields in different Options (#​2757)
  • update PubSub.Channel documentation (#​2761)
  • Linking to Redis learning resources (#​2759)
  • Creating CODEOWNERS for documentation (#​2749)
  • chore(deps): bump rojopolis/spellcheck-github-actions from 0.33.1 to 0.34.0 (#​2740)
  • chore(deps): bump google.golang.org/grpc from 1.55.0 to 1.56.3 in /example/otel (#​2775)
  • chore(deps): bump golang.org/x/net from 0.10.0 to 0.17.0 in /example/otel (#​2776)
  • Fix OpenTelemetry link in README (#​2755)

Contributors

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

@​Sovietaced, @​chayim, @​chenjie199234, @​cyningsun, @​dependabot, @​dependabot[bot], @​fred84, @​nic-gibson, @​ofekshenawa, @​peczenyj, @​sethrylan, @​snaffi, @​tzq0301 and @​vmihailenco

v9.2.1: 9.2.1

Compare Source

🧰 Maintenance

  • chore(deps): bump actions/stale from 3 to 8 (#​2732)
  • Add stream interface back to Cmdable (#​2725)
  • Remove redundant nil check in gears (#​2728)

Contributors

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

@​Juneezee, @​dependabot, @​dependabot[bot], @​gabrielgio and @​ofekshenawa

v9.2.0: 9.2.0

Compare Source

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

v9.1.0: 9.1.0

Compare Source

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

🧰 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


Configuration

📅 Schedule: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined).

🚦 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 Mend Renovate. View repository job log here.

@renovate renovate bot force-pushed the renovate/git.luolix.top-redis-go-redis-v9-9.x branch 4 times, most recently from 9a24423 to 0ff11cd Compare August 21, 2023 11:24
@tessig tessig added the needs-tests code not covered by tests label Aug 21, 2023
@renovate renovate bot force-pushed the renovate/git.luolix.top-redis-go-redis-v9-9.x branch 4 times, most recently from 19c15fb to 4045190 Compare August 25, 2023 12:28
@renovate renovate bot changed the title chore(deps): update module github.com/redis/go-redis/v9 to v9.1.0 chore(deps): update module github.com/redis/go-redis/v9 to v9.2.0 Sep 20, 2023
@renovate renovate bot force-pushed the renovate/git.luolix.top-redis-go-redis-v9-9.x branch from 4045190 to 088e2cd Compare September 20, 2023 17:03
@renovate renovate bot changed the title chore(deps): update module github.com/redis/go-redis/v9 to v9.2.0 chore(deps): update module github.com/redis/go-redis/v9 to v9.2.1 Sep 27, 2023
@renovate renovate bot force-pushed the renovate/git.luolix.top-redis-go-redis-v9-9.x branch from 088e2cd to f415c7c Compare September 27, 2023 11:13
@renovate renovate bot force-pushed the renovate/git.luolix.top-redis-go-redis-v9-9.x branch from f415c7c to 7d027c8 Compare October 6, 2023 13:08
@renovate renovate bot force-pushed the renovate/git.luolix.top-redis-go-redis-v9-9.x branch from 7d027c8 to 1cf1ea1 Compare October 18, 2023 15:03
@renovate renovate bot changed the title chore(deps): update module github.com/redis/go-redis/v9 to v9.2.1 chore(deps): update module github.com/redis/go-redis/v9 to v9.3.0 Oct 31, 2023
@renovate renovate bot force-pushed the renovate/git.luolix.top-redis-go-redis-v9-9.x branch from 1cf1ea1 to 896d33a Compare October 31, 2023 15:37
@renovate renovate bot force-pushed the renovate/git.luolix.top-redis-go-redis-v9-9.x branch 2 times, most recently from b3bc306 to 52cff70 Compare December 6, 2023 09:22
@renovate renovate bot force-pushed the renovate/git.luolix.top-redis-go-redis-v9-9.x branch from 52cff70 to 9e956f5 Compare December 14, 2023 14:07
@renovate renovate bot changed the title chore(deps): update module github.com/redis/go-redis/v9 to v9.3.0 chore(deps): update module github.com/redis/go-redis/v9 to v9.3.1 Dec 19, 2023
@renovate renovate bot force-pushed the renovate/git.luolix.top-redis-go-redis-v9-9.x branch from 9e956f5 to 351e525 Compare December 19, 2023 14:04
@renovate renovate bot changed the title chore(deps): update module github.com/redis/go-redis/v9 to v9.3.1 chore(deps): update module github.com/redis/go-redis/v9 to v9.4.0 Jan 7, 2024
@renovate renovate bot force-pushed the renovate/git.luolix.top-redis-go-redis-v9-9.x branch from 351e525 to b7aa8c1 Compare January 7, 2024 13:45
@renovate renovate bot force-pushed the renovate/git.luolix.top-redis-go-redis-v9-9.x branch 6 times, most recently from 9dd0d1e to dedb271 Compare February 6, 2024 11:51
@renovate renovate bot force-pushed the renovate/git.luolix.top-redis-go-redis-v9-9.x branch from dedb271 to 0696388 Compare February 6, 2024 11:54
@renovate renovate bot force-pushed the renovate/git.luolix.top-redis-go-redis-v9-9.x branch from 0696388 to 0e4ad0a Compare February 6, 2024 11:57
Copy link
Contributor

github-actions bot commented Feb 6, 2024

Code Coverage

Package Line Rate Health
flamingo.me/flamingo/v3/core/auth 13%
flamingo.me/flamingo/v3/core/auth/fake 50%
flamingo.me/flamingo/v3/core/auth/http 40%
flamingo.me/flamingo/v3/core/auth/oauth 49%
flamingo.me/flamingo/v3/core/cache 65%
flamingo.me/flamingo/v3/core/gotemplate 87%
flamingo.me/flamingo/v3/core/healthcheck/interfaces/controllers 76%
flamingo.me/flamingo/v3/core/healthcheck 66%
flamingo.me/flamingo/v3/core/internalauth/application 100%
flamingo.me/flamingo/v3/core/internalauth 100%
flamingo.me/flamingo/v3/core/locale/application 87%
flamingo.me/flamingo/v3/core/locale/domain 75%
flamingo.me/flamingo/v3/core/locale/interfaces/controllers 100%
flamingo.me/flamingo/v3/core/locale/interfaces/templatefunctions 92%
flamingo.me/flamingo/v3/core/locale 59%
flamingo.me/flamingo/v3/core/oauth/application 4%
flamingo.me/flamingo/v3/core/oauth/domain 62%
flamingo.me/flamingo/v3/core/oauth 55%
flamingo.me/flamingo/v3/core/requestlogger 100%
flamingo.me/flamingo/v3/core/requesttask 10%
flamingo.me/flamingo/v3/core/robotstxt 50%
flamingo.me/flamingo/v3/core/runtime 77%
flamingo.me/flamingo/v3/core/security/application/role 95%
flamingo.me/flamingo/v3/core/security/application 98%
flamingo.me/flamingo/v3/core/security/application/voter 100%
flamingo.me/flamingo/v3/core/security/interface/controller 100%
flamingo.me/flamingo/v3/core/security/interface/middleware 72%
flamingo.me/flamingo/v3/core/security 59%
flamingo.me/flamingo/v3/core/zap 81%
flamingo.me/flamingo/v3/framework/cmd 12%
flamingo.me/flamingo/v3/framework/config 49%
flamingo.me/flamingo/v3/framework/flamingo 40%
flamingo.me/flamingo/v3/framework 29%
flamingo.me/flamingo/v3/framework/opencensus 88%
flamingo.me/flamingo/v3/framework/prefixrouter 43%
flamingo.me/flamingo/v3/framework/systemendpoint 27%
flamingo.me/flamingo/v3/framework/testutil 0%
flamingo.me/flamingo/v3/framework/web 49%
Summary 51% (3485 / 6794)

@rst7123 rst7123 merged commit 8271981 into master Feb 6, 2024
5 checks passed
@rst7123 rst7123 deleted the renovate/git.luolix.top-redis-go-redis-v9-9.x branch February 6, 2024 12:00
@github-actions github-actions bot mentioned this pull request Feb 6, 2024
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
needs-tests code not covered by tests
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants