Codebase list golang-github-googleapis-gax-go / b60e83c
chore(all): update to 'go 1.17' to enable module graph pruning (#208) Updating the 'go' directive to 'go 1.17' will enable module graph pruning (https://go.dev/ref/mod#graph-pruning), which will allow users who depend on these modules to prune out irrelevant transitive dependencies. Note that updating to 'go 1.17' *will not* break existing users on versions older than 1.17. (The 'go' version is the version required for full fidelity — in this case, graph pruning — but older versions of the Go toolchain will continue to make a best-effort attempt to compile packages and will not report an error if that attempt succeeds, as it will in this case.) Bryan C. Mills authored 1 year, 10 months ago GitHub committed 1 year, 10 months ago
2 changed file(s) with 19 addition(s) and 2 deletion(s). Raw diff Collapse all Expand all
00 module github.com/googleapis/gax-go
11
2 go 1.11
2 go 1.17
33
44 require (
55 github.com/googleapis/gax-go/v2 v2.4.0
66 google.golang.org/grpc v1.47.0
77 )
8
9 require (
10 github.com/golang/protobuf v1.5.2 // indirect
11 golang.org/x/net v0.0.0-20220425223048-2871e0cb64e4 // indirect
12 golang.org/x/sys v0.0.0-20220502124256-b6088ccd6cba // indirect
13 golang.org/x/text v0.3.7 // indirect
14 google.golang.org/api v0.78.0 // indirect
15 google.golang.org/genproto v0.0.0-20220505152158-f39f71e6c8f3 // indirect
16 google.golang.org/protobuf v1.28.0 // indirect
17 )
00 module github.com/googleapis/gax-go/v2
11
2 go 1.15
2 go 1.17
33
44 require (
55 github.com/google/go-cmp v0.5.8
99 google.golang.org/protobuf v1.28.0
1010
1111 )
12
13 require (
14 github.com/golang/protobuf v1.5.2 // indirect
15 golang.org/x/net v0.0.0-20220617184016-355a448f1bc9 // indirect
16 golang.org/x/sys v0.0.0-20220615213510-4f61da869c0c // indirect
17 golang.org/x/text v0.3.7 // indirect
18 )