Skip to content

Commit 930e825

Browse files
committed
Update package dependencies
Packages updated following the Golang 1.17
1 parent b351e02 commit 930e825

File tree

6 files changed

+120
-80
lines changed

6 files changed

+120
-80
lines changed

.github/workflows/test.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ jobs:
3333
ports:
3434
- 6379:6379
3535
mongodb:
36-
image: mongo:3.3
36+
image: mongo:3.6
3737
ports:
3838
- 27017:27017
3939

docker-compose.yml

+13-12
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,16 @@
11
---
2-
memcached:
3-
image: "memcached:alpine"
4-
ports:
5-
- "11211:11211"
2+
services:
3+
memcached:
4+
image: "memcached:alpine"
5+
ports:
6+
- "11211:11211"
67

7-
redis:
8-
image: "redis:alpine"
9-
ports:
10-
- "6379:6379"
8+
redis:
9+
image: "redis:alpine"
10+
ports:
11+
- "6379:6379"
1112

12-
mongodb:
13-
image: "mongo:3.3"
14-
ports:
15-
- "27017:27017"
13+
mongodb:
14+
image: "mongo:3.6"
15+
ports:
16+
- "27017:27017"

go.mod

+17-18
Original file line numberDiff line numberDiff line change
@@ -3,32 +3,31 @@ module github.com/faabiosr/cachego
33
go 1.17
44

55
require (
6-
github.com/bradfitz/gomemcache v0.0.0-20170208213004-1952afaa557d
7-
github.com/mattn/go-sqlite3 v1.6.0
8-
go.etcd.io/bbolt v1.3.4
9-
go.mongodb.org/mongo-driver v1.9.0
10-
gopkg.in/mgo.v2 v2.0.0-20160818020120-3f83fa500528
11-
gopkg.in/redis.v4 v4.2.4
6+
github.com/bradfitz/gomemcache v0.0.0-20230124162541-5f7a7d875746
7+
github.com/mattn/go-sqlite3 v1.14.16
8+
go.etcd.io/bbolt v1.3.7
9+
go.mongodb.org/mongo-driver v1.11.2
10+
gopkg.in/mgo.v2 v2.0.0-20190816093944-a6b53ec6cb22
11+
gopkg.in/redis.v5 v5.2.9
1212
)
1313

1414
require (
15-
github.com/garyburd/redigo v1.6.0 // indirect
16-
github.com/go-stack/stack v1.8.0 // indirect
1715
github.com/golang/snappy v0.0.1 // indirect
16+
github.com/google/go-cmp v0.5.5 // indirect
1817
github.com/klauspost/compress v1.13.6 // indirect
18+
github.com/montanaflynn/stats v0.0.0-20171201202039-1bf9dbcd8cbe // indirect
1919
github.com/niemeyer/pretty v0.0.0-20200227124842-a10e7caefd8e // indirect
20-
github.com/onsi/ginkgo v1.13.0 // indirect
21-
github.com/onsi/gomega v1.10.1 // indirect
20+
github.com/onsi/ginkgo v1.16.5 // indirect
21+
github.com/onsi/gomega v1.18.1 // indirect
2222
github.com/pkg/errors v0.9.1 // indirect
2323
github.com/xdg-go/pbkdf2 v1.0.0 // indirect
24-
github.com/xdg-go/scram v1.0.2 // indirect
25-
github.com/xdg-go/stringprep v1.0.2 // indirect
24+
github.com/xdg-go/scram v1.1.1 // indirect
25+
github.com/xdg-go/stringprep v1.0.3 // indirect
2626
github.com/youmark/pkcs8 v0.0.0-20181117223130-1be2e3e5546d // indirect
27-
golang.org/x/crypto v0.0.0-20201216223049-8b5274cf687f // indirect
28-
golang.org/x/sync v0.0.0-20190911185100-cd5d95a43a6e // indirect
29-
golang.org/x/sys v0.0.0-20200519105757-fe76b779f299 // indirect
30-
golang.org/x/text v0.3.5 // indirect
31-
gopkg.in/bsm/ratelimit.v1 v1.0.0-20160220154919-db14e161995a // indirect
27+
golang.org/x/crypto v0.0.0-20220622213112-05595931fe9d // indirect
28+
golang.org/x/sync v0.0.0-20210220032951-036812b2e83c // indirect
29+
golang.org/x/sys v0.4.0 // indirect
30+
golang.org/x/text v0.3.7 // indirect
3231
gopkg.in/check.v1 v1.0.0-20200227125254-8fa46927fb4f // indirect
33-
gopkg.in/yaml.v2 v2.3.0 // indirect
32+
gopkg.in/yaml.v2 v2.4.0 // indirect
3433
)

0 commit comments

Comments
 (0)