Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
G
gowscommon
Manage
Activity
Members
Code
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Deploy
Releases
Model registry
Analyze
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Satria Fitra
gowscommon
Commits
d086cc2b
Commit
d086cc2b
authored
2 years ago
by
Satria Fitra
Browse files
Options
Downloads
Patches
Plain Diff
bump to fiber 2.42
parent
b65fddb8
Branches
Branches containing commit
Tags
v1.4.4
Tags containing commit
No related merge requests found
Changes
3
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
go.mod
+21
-16
21 additions, 16 deletions
go.mod
go.sum
+149
-78
149 additions, 78 deletions
go.sum
storage/redis/redis_struct.go
+1
-1
1 addition, 1 deletion
storage/redis/redis_struct.go
with
171 additions
and
95 deletions
go.mod
+
21
−
16
View file @
d086cc2b
...
...
@@ -5,22 +5,22 @@ go 1.19
retract [v1.0.0, v1.1.0]
require (
github.com/casbin/casbin/v2
v2.6
0.0
github.com/casbin/casbin/v2
v2.6
1.1
github.com/go-playground/locales
v0.14.1
github.com/go-playground/universal-translator
v0.18.0
github.com/go-playground/validator/v10
v10.11.1
github.com/go-redis/redis/v8
v8.11.5
github.com/gofiber/fiber/v2
v2.41.0
github.com/gofiber/storage/redis
v0.0.0-20230109091934-d46ce172d62c
github.com/go-playground/universal-translator
v0.18.1
github.com/go-playground/validator/v10
v10.11.2
github.com/gofiber/fiber/v2
v2.42.0
github.com/gofiber/storage/redis
v0.0.0-20230209134504-d36b6eaa23fd
github.com/golang-jwt/jwt/v4
v4.4.3
github.com/rabbitmq/amqp091-go
v1.6.0
github.com/rubenv/sql-migrate
v1.3.0
github.com/rabbitmq/amqp091-go
v1.7.0
github.com/redis/go-redis/v9
v9.0.2
github.com/rubenv/sql-migrate
v1.3.1
github.com/spf13/viper
v1.15.0
golang.org/x/crypto
v0.
5
.0
golang.org/x/exp
v0.0.0-2023012
9154200-a960b3787bd2
gorm.io/driver/mysql
v1.4.
5
gorm.io/driver/postgres
v1.4.
6
gorm.io/gorm
v1.24.
3
golang.org/x/crypto
v0.
6
.0
golang.org/x/exp
v0.0.0-20230
2
12
135524-a684f29349b6
gorm.io/driver/mysql
v1.4.
6
gorm.io/driver/postgres
v1.4.
7
gorm.io/gorm
v1.24.
5
)
require (
...
...
@@ -31,10 +31,11 @@ require (
github.com/fsnotify/fsnotify
v1.6.0 // indirect
github.com/go-gorp/gorp/v3
v3.1.0 // indirect
github.com/go-sql-driver/mysql
v1.7.0 // indirect
github.com/google/uuid
v1.3.0 // indirect
github.com/hashicorp/hcl
v1.0.0 // indirect
github.com/jackc/pgpassfile
v1.0.0 // indirect
github.com/jackc/pgservicefile
v0.0.0-20221227161230-091c0ba34f0a // indirect
github.com/jackc/pgx/v5
v5.
2
.0 // indirect
github.com/jackc/pgx/v5
v5.
3
.0 // indirect
github.com/jinzhu/inflection
v1.0.0 // indirect
github.com/jinzhu/now
v1.1.5 // indirect
github.com/klauspost/compress
v1.15.15 // indirect
...
...
@@ -45,17 +46,21 @@ require (
github.com/mattn/go-runewidth
v0.0.14 // indirect
github.com/mitchellh/mapstructure
v1.5.0 // indirect
github.com/pelletier/go-toml/v2
v2.0.6 // indirect
github.com/philhofer/fwd
v1.1.2 // indirect
github.com/rivo/uniseg
v0.4.3 // indirect
github.com/savsgio/dictpool
v0.0.0-20221023140959-7bf2e61cea94 // indirect
github.com/savsgio/gotils
v0.0.0-20230208104028-c358bd845dee // indirect
github.com/spf13/afero
v1.9.3 // indirect
github.com/spf13/cast
v1.5.0 // indirect
github.com/spf13/jwalterweatherman
v1.1.0 // indirect
github.com/spf13/pflag
v1.0.5 // indirect
github.com/subosito/gotenv
v1.4.2 // indirect
github.com/tinylib/msgp
v1.1.8 // indirect
github.com/valyala/bytebufferpool
v1.0.0 // indirect
github.com/valyala/fasthttp
v1.44.0 // indirect
github.com/valyala/tcplisten
v1.0.0 // indirect
golang.org/x/sys
v0.
4
.0 // indirect
golang.org/x/text
v0.
6
.0 // indirect
golang.org/x/sys
v0.
5
.0 // indirect
golang.org/x/text
v0.
7
.0 // indirect
gopkg.in/ini.v1
v1.67.0 // indirect
gopkg.in/yaml.v3
v3.0.1 // indirect
)
This diff is collapsed.
Click to expand it.
go.sum
+
149
−
78
View file @
d086cc2b
This diff is collapsed.
Click to expand it.
storage/redis/redis_struct.go
+
1
−
1
View file @
d086cc2b
...
...
@@ -5,8 +5,8 @@ import (
"strings"
"time"
redis
"github.com/go-redis/redis/v8"
fiberredis
"github.com/gofiber/storage/redis"
redis
"github.com/redis/go-redis/v9"
)
type
GowsRedisStorage
struct
{
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment