Skip to content

Commit

Permalink
Upgrade Redis Version (#6)
Browse files Browse the repository at this point in the history
* Upgrade Redis Version

* Upgrade Redis Version

* upgrade dependencies

* upgrade dependencies

---------

Co-authored-by: Aleksandr Kalinkin <[email protected]>
  • Loading branch information
plin2k and plin3k authored Jul 5, 2024
1 parent 6533075 commit 0bf5cdd
Show file tree
Hide file tree
Showing 4 changed files with 79 additions and 499 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ The bundle provide a GoRedis integration to GoZix application.
## Installation

```shell
go get github.com/gozix/goredis/v4
go get github.com/gozix/goredis/v5
```

## Dependencies
Expand Down
35 changes: 19 additions & 16 deletions go.mod
Original file line number Diff line number Diff line change
@@ -1,33 +1,36 @@
module github.com/gozix/goredis/v4
module github.com/gozix/goredis/v5

go 1.18

require (
github.com/go-redis/redis/v8 v8.11.5
github.com/gozix/di v1.0.0
github.com/gozix/di v1.0.1
github.com/gozix/glue/v3 v3.0.0
github.com/gozix/viper/v3 v3.0.0
github.com/spf13/viper v1.15.0
github.com/gozix/viper/v3 v3.0.3
github.com/redis/go-redis/v9 v9.5.3
github.com/spf13/viper v1.19.0
)

require (
github.com/cespare/xxhash/v2 v2.2.0 // indirect
github.com/cespare/xxhash/v2 v2.3.0 // indirect
github.com/dgryski/go-rendezvous v0.0.0-20200823014737-9f7001d12a5f // indirect
github.com/fsnotify/fsnotify v1.6.0 // indirect
github.com/fsnotify/fsnotify v1.7.0 // indirect
github.com/hashicorp/hcl v1.0.0 // indirect
github.com/inconshreveable/mousetrap v1.1.0 // indirect
github.com/magiconair/properties v1.8.7 // indirect
github.com/mitchellh/mapstructure v1.5.0 // indirect
github.com/pelletier/go-toml/v2 v2.0.6 // indirect
github.com/spf13/afero v1.9.3 // indirect
github.com/spf13/cast v1.5.0 // indirect
github.com/spf13/cobra v1.6.1 // indirect
github.com/spf13/jwalterweatherman v1.1.0 // indirect
github.com/pelletier/go-toml/v2 v2.2.2 // indirect
github.com/sagikazarmark/locafero v0.6.0 // indirect
github.com/sagikazarmark/slog-shim v0.1.0 // indirect
github.com/sourcegraph/conc v0.3.0 // indirect
github.com/spf13/afero v1.11.0 // indirect
github.com/spf13/cast v1.6.0 // indirect
github.com/spf13/cobra v1.8.1 // indirect
github.com/spf13/pflag v1.0.5 // indirect
github.com/subosito/gotenv v1.4.2 // indirect
golang.org/x/net v0.7.0 // indirect
golang.org/x/sys v0.5.0 // indirect
golang.org/x/text v0.7.0 // indirect
github.com/subosito/gotenv v1.6.0 // indirect
go.uber.org/multierr v1.11.0 // indirect
golang.org/x/exp v0.0.0-20240613232115-7f521ea00fb8 // indirect
golang.org/x/sys v0.22.0 // indirect
golang.org/x/text v0.16.0 // indirect
gopkg.in/ini.v1 v1.67.0 // indirect
gopkg.in/yaml.v3 v3.0.1 // indirect
)
Loading

0 comments on commit 0bf5cdd

Please sign in to comment.