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

Commit 4ffe499

Browse files
committed
#patch: bump deps, go 1.17
1 parent e9d9128 commit 4ffe499

File tree

7 files changed

+334
-261
lines changed

7 files changed

+334
-261
lines changed

.golangci.yml

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -17,19 +17,16 @@ linters:
1717
- gocyclo
1818
- gofmt
1919
- goimports
20-
- golint
2120
- gomnd
2221
- goprintffuncname
2322
- gosec
2423
- gosimple
2524
- govet
2625
- ineffassign
27-
- interfacer
2826
- lll
2927
- misspell
3028
- nakedret
3129
- rowserrcheck
32-
- scopelint
3330
- staticcheck
3431
- structcheck
3532
- stylecheck

api/docs.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -230,7 +230,7 @@ type swaggerInfo struct {
230230

231231
// SwaggerInfo holds exported Swagger Info so clients can modify it
232232
var SwaggerInfo = swaggerInfo{
233-
Version: "0.2.13",
233+
Version: "0.2.14",
234234
Host: "",
235235
BasePath: "",
236236
Schemes: []string{},

api/swagger.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
"name": "MIT",
1212
"url": "https://github.com/circa10a/k8s-label-rules-webhook/blob/master/LICENSE"
1313
},
14-
"version": "0.2.13"
14+
"version": "0.2.14"
1515
},
1616
"paths": {
1717
"//": {

api/swagger.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -78,7 +78,7 @@ info:
7878
name: MIT
7979
url: https://github.com/circa10a/k8s-label-rules-webhook/blob/master/LICENSE
8080
title: k8s-label-rules-webhook
81-
version: 0.2.13
81+
version: 0.2.14
8282
paths:
8383
//:
8484
post:

go.mod

Lines changed: 18 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -8,41 +8,43 @@ require (
88
github.com/fasthttp-contrib/websocket v0.0.0-20160511215533-1f3b11f56072 // indirect
99
github.com/fatih/structs v1.1.0 // indirect
1010
github.com/gavv/httpexpect v2.0.0+incompatible
11-
github.com/gin-gonic/gin v1.7.1
12-
github.com/go-openapi/spec v0.20.3 // indirect
11+
github.com/gin-gonic/gin v1.7.4
12+
github.com/go-openapi/jsonreference v0.19.6 // indirect
1313
github.com/go-openapi/swag v0.19.15 // indirect
14-
github.com/go-playground/validator/v10 v10.5.0 // indirect
14+
github.com/go-playground/validator/v10 v10.9.0 // indirect
1515
github.com/golang/protobuf v1.5.2 // indirect
1616
github.com/google/go-querystring v1.0.0 // indirect
1717
github.com/gorilla/websocket v1.4.1 // indirect
1818
github.com/imkira/go-interpol v1.1.0 // indirect
19-
github.com/json-iterator/go v1.1.11 // indirect
2019
github.com/k0kubun/colorstring v0.0.0-20150214042306-9440f1994b88 // indirect
21-
github.com/leodido/go-urn v1.2.1 // indirect
2220
github.com/mailru/easyjson v0.7.7 // indirect
2321
github.com/mattn/go-colorable v0.1.6 // indirect
22+
github.com/mattn/go-isatty v0.0.13 // indirect
2423
github.com/moul/http2curl v1.0.0 // indirect
2524
github.com/onsi/ginkgo v1.12.0 // indirect
2625
github.com/onsi/gomega v1.9.0 // indirect
27-
github.com/prometheus/client_golang v1.10.0 // indirect
28-
github.com/prometheus/common v0.23.0 // indirect
26+
github.com/prometheus/common v0.30.0 // indirect
27+
github.com/prometheus/procfs v0.7.3 // indirect
2928
github.com/sergi/go-diff v1.0.0 // indirect
3029
github.com/sirupsen/logrus v1.8.1
31-
github.com/stretchr/testify v1.6.1
32-
github.com/swaggo/files v0.0.0-20190704085106-630677cd5c14
33-
github.com/swaggo/gin-swagger v1.3.0
34-
github.com/swaggo/swag v1.7.0
35-
github.com/ugorji/go v1.2.5 // indirect
30+
github.com/smartystreets/goconvey v1.6.4 // indirect
31+
github.com/stretchr/testify v1.7.0
32+
github.com/swaggo/files v0.0.0-20210815190702-a29dd2bc99b2
33+
github.com/swaggo/gin-swagger v1.3.1
34+
github.com/swaggo/swag v1.7.1
35+
github.com/ugorji/go v1.2.6 // indirect
3636
github.com/valyala/fasthttp v1.7.0 // indirect
3737
github.com/xeipuuv/gojsonschema v1.2.0 // indirect
3838
github.com/yalp/jsonpath v0.0.0-20180802001716-5cc68e5049a0 // indirect
3939
github.com/yudai/gojsondiff v1.0.0 // indirect
4040
github.com/yudai/golcs v0.0.0-20170316035057-ecda9a501e82 // indirect
4141
github.com/yudai/pp v2.0.1+incompatible // indirect
4242
github.com/zsais/go-gin-prometheus v0.1.0
43-
golang.org/x/crypto v0.0.0-20210421170649-83a5a9bb288b // indirect
44-
golang.org/x/net v0.0.0-20210428140749-89ef3d95e781 // indirect
45-
golang.org/x/sys v0.0.0-20210426230700-d19ff857e887 // indirect
46-
golang.org/x/tools v0.1.0 // indirect
43+
golang.org/x/crypto v0.0.0-20210817164053-32db794688a5 // indirect
44+
golang.org/x/net v0.0.0-20210813160813-60bc85c4be6d // indirect
45+
golang.org/x/sys v0.0.0-20210817190340-bfb29a6856f2 // indirect
46+
golang.org/x/text v0.3.7 // indirect
47+
golang.org/x/tools v0.1.5 // indirect
48+
google.golang.org/protobuf v1.27.1 // indirect
4749
gopkg.in/yaml.v2 v2.4.0
4850
)

0 commit comments

Comments
 (0)