Skip to content
This repository was archived by the owner on Jul 18, 2024. It is now read-only.

Commit ff806ec

Browse files
authored
update deps, mod tidy (#31)
1 parent 1c47f16 commit ff806ec

File tree

3 files changed

+329
-49
lines changed

3 files changed

+329
-49
lines changed

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ GOCLEAN=$(GOCMD) clean
44
GORUN=$(GOCMD) run
55
PROJECT=circa10a/k8s-label-rules-webhook
66
BINARY=webhook
7-
VERSION=0.2.4
7+
VERSION=0.2.5
88
GOBUILDFLAGS=-ldflags="-s -w -X main.Version=$(VERSION)"
99

1010
# First target for travis ci

go.mod

Lines changed: 10 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -9,35 +9,36 @@ require (
99
github.com/fatih/structs v1.1.0 // indirect
1010
github.com/gavv/httpexpect v2.0.0+incompatible
1111
github.com/gin-gonic/gin v1.6.3
12-
github.com/go-openapi/spec v0.19.7 // indirect
1312
github.com/go-openapi/swag v0.19.9 // indirect
14-
github.com/golang/protobuf v1.4.1 // indirect
13+
github.com/go-playground/validator/v10 v10.4.0 // indirect
1514
github.com/google/go-querystring v1.0.0 // indirect
1615
github.com/gorilla/websocket v1.4.1 // indirect
1716
github.com/imkira/go-interpol v1.1.0 // indirect
1817
github.com/k0kubun/colorstring v0.0.0-20150214042306-9440f1994b88 // indirect
19-
github.com/mailru/easyjson v0.7.1 // indirect
18+
github.com/mailru/easyjson v0.7.6 // indirect
2019
github.com/mattn/go-colorable v0.1.6 // indirect
2120
github.com/moul/http2curl v1.0.0 // indirect
2221
github.com/onsi/ginkgo v1.12.0 // indirect
2322
github.com/onsi/gomega v1.9.0 // indirect
24-
github.com/prometheus/client_golang v1.6.0 // indirect
23+
github.com/prometheus/client_golang v1.8.0 // indirect
2524
github.com/sergi/go-diff v1.0.0 // indirect
2625
github.com/sirupsen/logrus v1.7.0
27-
github.com/smartystreets/goconvey v1.6.4 // indirect
2826
github.com/stretchr/testify v1.6.1
2927
github.com/swaggo/files v0.0.0-20190704085106-630677cd5c14
3028
github.com/swaggo/gin-swagger v1.2.0
31-
github.com/swaggo/swag v1.6.7
29+
github.com/swaggo/swag v1.6.8
30+
github.com/ugorji/go v1.1.12 // indirect
3231
github.com/valyala/fasthttp v1.7.0 // indirect
3332
github.com/xeipuuv/gojsonschema v1.2.0 // indirect
3433
github.com/yalp/jsonpath v0.0.0-20180802001716-5cc68e5049a0 // indirect
3534
github.com/yudai/gojsondiff v1.0.0 // indirect
3635
github.com/yudai/golcs v0.0.0-20170316035057-ecda9a501e82 // indirect
3736
github.com/yudai/pp v2.0.1+incompatible // indirect
3837
github.com/zsais/go-gin-prometheus v0.1.0
39-
golang.org/x/net v0.0.0-20200506145744-7e3656a0809f // indirect
40-
golang.org/x/sys v0.0.0-20200508214444-3aab700007d7 // indirect
41-
golang.org/x/tools v0.0.0-20200509030707-2212a7e161a5 // indirect
38+
golang.org/x/crypto v0.0.0-20201016220609-9e8e0b390897 // indirect
39+
golang.org/x/net v0.0.0-20201016165138-7b1cca2348c0 // indirect
40+
golang.org/x/sys v0.0.0-20201017003518-b09fb700fbb7 // indirect
41+
golang.org/x/tools v0.0.0-20201017001424-6003fad69a88 // indirect
42+
google.golang.org/protobuf v1.25.0 // indirect
4243
gopkg.in/yaml.v2 v2.3.0
4344
)

0 commit comments

Comments
 (0)