diff options
author | techknowlogick <techknowlogick@gitea.io> | 2023-04-13 18:41:04 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-04-13 18:41:04 -0400 |
commit | 985f76dc4b0692c4d6c6f37e82500ef859557c16 (patch) | |
tree | dec7e6ba9208954eaf2c33777ca0fe2e7ae989fd /go.mod | |
parent | 5b9557aef59b190c55de9ea218bf51152bc04786 (diff) | |
download | gitea-985f76dc4b0692c4d6c6f37e82500ef859557c16.tar.gz gitea-985f76dc4b0692c4d6c6f37e82500ef859557c16.zip |
Update redis library to support redis v7 (#24114)
Diffstat (limited to 'go.mod')
-rw-r--r-- | go.mod | 4 |
1 files changed, 3 insertions, 1 deletions
@@ -44,7 +44,6 @@ require ( github.com/go-git/go-billy/v5 v5.4.1 github.com/go-git/go-git/v5 v5.5.2 github.com/go-ldap/ldap/v3 v3.4.4 - github.com/go-redis/redis/v8 v8.11.5 github.com/go-sql-driver/mysql v1.7.0 github.com/go-swagger/go-swagger v0.30.4 github.com/go-testfixtures/testfixtures/v3 v3.8.1 @@ -90,6 +89,7 @@ require ( github.com/pquerna/otp v1.4.0 github.com/prometheus/client_golang v1.14.0 github.com/quasoft/websspi v1.1.2 + github.com/redis/go-redis/v9 v9.0.3 github.com/santhosh-tekuri/jsonschema/v5 v5.2.0 github.com/sergi/go-diff v1.3.1 github.com/shurcooL/vfsgen v0.0.0-20200824052919-0d455de96546 @@ -231,6 +231,8 @@ require ( github.com/nwaples/rardecode v1.1.3 // indirect github.com/oklog/ulid v1.3.1 // indirect github.com/olekukonko/tablewriter v0.0.5 // indirect + github.com/onsi/ginkgo v1.16.5 // indirect + github.com/onsi/gomega v1.18.1 // indirect github.com/pelletier/go-toml v1.9.5 // indirect github.com/pelletier/go-toml/v2 v2.0.5 // indirect github.com/pierrec/lz4/v4 v4.1.17 // indirect |