Skip to content

Commit dd860ce

Browse files
authored
update go version to 1.19 (#20)
1 parent 79aec49 commit dd860ce

File tree

3 files changed

+12
-4
lines changed

3 files changed

+12
-4
lines changed

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ test: example
3333

3434
.PHONY: vendor
3535
vendor:
36-
dep ensure -vendor-only
36+
go mod tidy && go mod vendor
3737

3838
.PHONY: gentool
3939
gentool:

go.mod

Lines changed: 11 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,18 @@
11
module github.com/infobloxopen/protoc-gen-atlas-query-validate
22

3-
go 1.16
3+
go 1.19
44

55
require (
6-
github.com/grpc-ecosystem/grpc-gateway/v2 v2.5.0 // indirect
76
github.com/infobloxopen/atlas-app-toolkit v0.24.1-0.20210416193901-4c7518b07e08
87
google.golang.org/protobuf v1.27.1
98
)
9+
10+
require (
11+
github.com/golang/protobuf v1.5.2 // indirect
12+
github.com/grpc-ecosystem/grpc-gateway/v2 v2.5.0 // indirect
13+
golang.org/x/net v0.0.0-20210405180319-a5a99cb37ef4 // indirect
14+
golang.org/x/sys v0.0.0-20210510120138-977fb7262007 // indirect
15+
golang.org/x/text v0.3.5 // indirect
16+
google.golang.org/genproto v0.0.0-20210617175327-b9e0b3197ced // indirect
17+
google.golang.org/grpc v1.38.0 // indirect
18+
)

go.sum

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -161,7 +161,6 @@ github.com/grpc-ecosystem/go-grpc-middleware v1.0.0/go.mod h1:FiyG127CGDf3tlThmg
161161
github.com/grpc-ecosystem/go-grpc-middleware v1.2.2/go.mod h1:EaizFBKfUKtMIF5iaDEhniwNedqGo9FuLFzppDr3uwI=
162162
github.com/grpc-ecosystem/go-grpc-prometheus v1.2.0/go.mod h1:8NvIoxWQoOIhqOTXgfV/d3M/q6VIi02HzZEHgUlZvzk=
163163
github.com/grpc-ecosystem/grpc-gateway v1.9.0/go.mod h1:vNeuVxBJEsws4ogUvrchl83t/GYV9WGTSLVdBhOQFDY=
164-
github.com/grpc-ecosystem/grpc-gateway v1.14.6 h1:8ERzHx8aj1Sc47mu9n/AksaKCSWrMchFtkdrS4BIj5o=
165164
github.com/grpc-ecosystem/grpc-gateway v1.14.6/go.mod h1:zdiPV4Yse/1gnckTHtghG4GkDEdKCRJduHpTxT3/jcw=
166165
github.com/grpc-ecosystem/grpc-gateway/v2 v2.3.0/go.mod h1:d2gYTOTUQklu06xp0AJYYmRdTVU1VKrqhkYfYag2L08=
167166
github.com/grpc-ecosystem/grpc-gateway/v2 v2.5.0 h1:ajue7SzQMywqRjg2fK7dcpc0QhFGpTR2plWfV4EZWR4=

0 commit comments

Comments
 (0)