Skip to content

Commit 5df417e

Browse files
authored
Update dependencies (#77)
1 parent ccf06bf commit 5df417e

File tree

3 files changed

+376
-20
lines changed

3 files changed

+376
-20
lines changed

.golangci.yml

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,6 @@ run:
88
linters:
99
enable:
1010
- govet
11-
- deadcode
1211
- errcheck
1312
- gosec
1413
- goconst
@@ -18,9 +17,7 @@ linters:
1817
- revive
1918
- ineffassign
2019
- staticcheck
21-
- structcheck
2220
- unconvert
23-
- varcheck
2421
- vet
2522
- vetshadow
2623

@@ -36,3 +33,7 @@ issues:
3633
text: "Error return value of \\`streamEvents.Close\\` is not checked"
3734
linters:
3835
- errcheck
36+
37+
- linters:
38+
- revive
39+
text: "package-comments:"

go.mod

Lines changed: 17 additions & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -6,32 +6,32 @@ require (
66
github.com/DATA-DOG/go-sqlmock v1.5.0
77
github.com/golang/mock v1.6.0
88
github.com/google/uuid v1.3.0
9-
github.com/lib/pq v1.10.3
9+
github.com/lib/pq v1.10.7
1010
github.com/mailru/easyjson v0.7.7
11-
github.com/prometheus/client_golang v1.11.0
12-
github.com/sirupsen/logrus v1.8.1
11+
github.com/prometheus/client_golang v1.13.0
12+
github.com/sirupsen/logrus v1.9.0
1313
github.com/streadway/amqp v1.0.0
14-
github.com/stretchr/testify v1.7.0
15-
go.uber.org/zap v1.19.0
14+
github.com/stretchr/testify v1.8.0
15+
go.uber.org/zap v1.23.0
1616
)
1717

1818
require (
1919
github.com/beorn7/perks v1.0.1 // indirect
20-
github.com/cespare/xxhash/v2 v2.1.1 // indirect
20+
github.com/cespare/xxhash/v2 v2.1.2 // indirect
2121
github.com/davecgh/go-spew v1.1.1 // indirect
22-
github.com/golang/protobuf v1.4.3 // indirect
22+
github.com/golang/protobuf v1.5.2 // indirect
2323
github.com/josharian/intern v1.0.0 // indirect
2424
github.com/matttproud/golang_protobuf_extensions v1.0.1 // indirect
2525
github.com/pmezard/go-difflib v1.0.0 // indirect
2626
github.com/prometheus/client_model v0.2.0 // indirect
27-
github.com/prometheus/common v0.26.0 // indirect
28-
github.com/prometheus/procfs v0.6.0 // indirect
29-
go.uber.org/atomic v1.9.0 // indirect
30-
go.uber.org/multierr v1.7.0 // indirect
31-
golang.org/x/mod v0.4.2 // indirect
32-
golang.org/x/sys v0.0.0-20210910150752-751e447fb3d0 // indirect
33-
golang.org/x/tools v0.1.1 // indirect
34-
golang.org/x/xerrors v0.0.0-20200804184101-5ec99f83aff1 // indirect
35-
google.golang.org/protobuf v1.26.0-rc.1 // indirect
36-
gopkg.in/yaml.v3 v3.0.0-20210107192922-496545a6307b // indirect
27+
github.com/prometheus/common v0.37.0 // indirect
28+
github.com/prometheus/procfs v0.8.0 // indirect
29+
go.uber.org/atomic v1.10.0 // indirect
30+
go.uber.org/multierr v1.8.0 // indirect
31+
golang.org/x/mod v0.6.0-dev.0.20220419223038-86c51ed26bb4 // indirect
32+
golang.org/x/sys v0.0.0-20220909162455-aba9fc2a8ff2 // indirect
33+
golang.org/x/tools v0.1.12 // indirect
34+
golang.org/x/xerrors v0.0.0-20220907171357-04be3eba64a2 // indirect
35+
google.golang.org/protobuf v1.28.1 // indirect
36+
gopkg.in/yaml.v3 v3.0.1 // indirect
3737
)

0 commit comments

Comments
 (0)