Skip to content

Commit 8943046

Browse files
authored
Upgrade go-genproto to latest (#831)
* Upgrade go-genproto to latest See googleapis/go-genproto#1015. * Update WORKSPACE
1 parent 4eebcf3 commit 8943046

File tree

19 files changed

+998
-465
lines changed

19 files changed

+998
-465
lines changed

WORKSPACE

Lines changed: 13 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -30,13 +30,13 @@ http_archive(
3030
],
3131
)
3232

33-
# googleapis as of 05/26/2023
33+
# googleapis as of 08/31/2023
3434
http_archive(
3535
name = "com_google_googleapis",
36-
strip_prefix = "googleapis-07c27163ac591955d736f3057b1619ece66f5b99",
37-
sha256 = "bd8e735d881fb829751ecb1a77038dda4a8d274c45490cb9fcf004583ee10571",
36+
sha256 = "5c56500adf7b1b7a3a2ee5ca5b77500617ad80afb808e3d3979f582e64c0523d",
37+
strip_prefix = "googleapis-25f99371444ea7fd0dc1523ca6925e91cc48a664",
3838
urls = [
39-
"https://github.com/googleapis/googleapis/archive/07c27163ac591955d736f3057b1619ece66f5b99.tar.gz",
39+
"https://github.com/googleapis/googleapis/archive/25f99371444ea7fd0dc1523ca6925e91cc48a664.tar.gz",
4040
],
4141
)
4242

@@ -68,22 +68,22 @@ go_repository(
6868
tag = "v1.28.1",
6969
)
7070

71-
# Generated Google APIs protos for Golang 05/25/2023
71+
# Generated Google APIs protos for Golang 08/03/2023
7272
go_repository(
7373
name = "org_golang_google_genproto_googleapis_api",
7474
build_file_proto_mode = "disable_global",
7575
importpath = "google.golang.org/genproto/googleapis/api",
76-
sum = "h1:m8v1xLLLzMe1m5P+gCTF8nJB9epwZQUBERm20Oy1poQ=",
77-
version = "v0.0.0-20230525234035-dd9d682886f9",
76+
sum = "h1:nIgk/EEq3/YlnmVVXVnm14rC2oxgs1o0ong4sD/rd44=",
77+
version = "v0.0.0-20230803162519-f966b187b2e5",
7878
)
7979

80-
# Generated Google APIs protos for Golang 05/25/2023
80+
# Generated Google APIs protos for Golang 08/03/2023
8181
go_repository(
8282
name = "org_golang_google_genproto_googleapis_rpc",
8383
build_file_proto_mode = "disable_global",
8484
importpath = "google.golang.org/genproto/googleapis/rpc",
85-
sum = "h1:0nDDozoAU19Qb2HwhXadU8OcsiO/09cnTqhUtq2MEOM=",
86-
version = "v0.0.0-20230525234030-28d5490b6b19",
85+
sum = "h1:eSaPbMR4T7WfH9FvABk36NBMacoTUKdWCvV0dx+KfOg=",
86+
version = "v0.0.0-20230803162519-f966b187b2e5",
8787
)
8888

8989
# gRPC deps for v1.49.0 (including x/text and x/net)
@@ -119,8 +119,8 @@ go_repository(
119119
# CEL Spec deps v0.9.0
120120
go_repository(
121121
name = "com_google_cel_spec",
122-
importpath = "github.com/google/cel-spec",
123122
commit = "51af45e2b75a8aa2b3108b00f0e91cd172cfbea1",
123+
importpath = "github.com/google/cel-spec",
124124
)
125125

126126
# strcase deps
@@ -134,16 +134,16 @@ go_repository(
134134
# Readline for repl
135135
go_repository(
136136
name = "com_github_chzyer_readline",
137+
commit = "62c6fe6193755f722b8b8788aa7357be55a50ff1", # v1.4
137138
importpath = "github.com/chzyer/readline",
138-
commit = "62c6fe6193755f722b8b8788aa7357be55a50ff1" # v1.4
139139
)
140140

141141
# golang.org/x/exp deps
142142
go_repository(
143143
name = "org_golang_x_exp",
144144
importpath = "golang.org/x/exp",
145145
sum = "h1:+WEEuIdZHnUeJJmEUjyYC2gfUMj69yZXw17EnHg/otA=",
146-
version = "v0.0.0-20220722155223-a9213eeb770e"
146+
version = "v0.0.0-20220722155223-a9213eeb770e",
147147
)
148148

149149
# Run the dependencies at the end. These will silently try to import some

go.mod

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -5,12 +5,12 @@ go 1.18
55
require (
66
github.com/antlr/antlr4/runtime/Go/antlr/v4 v4.0.0-20230305170008-8188dc5388df
77
github.com/stoewer/go-strcase v1.2.0
8-
golang.org/x/text v0.8.0
9-
google.golang.org/genproto/googleapis/api v0.0.0-20230525234035-dd9d682886f9
10-
google.golang.org/protobuf v1.30.0
8+
golang.org/x/text v0.9.0
9+
google.golang.org/genproto/googleapis/api v0.0.0-20230803162519-f966b187b2e5
10+
google.golang.org/protobuf v1.31.0
1111
)
1212

1313
require (
1414
golang.org/x/exp v0.0.0-20220722155223-a9213eeb770e // indirect
15-
google.golang.org/genproto/googleapis/rpc v0.0.0-20230525234030-28d5490b6b19 // indirect
15+
google.golang.org/genproto/googleapis/rpc v0.0.0-20230803162519-f966b187b2e5 // indirect
1616
)

go.sum

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -14,16 +14,16 @@ github.com/stretchr/testify v1.5.1 h1:nOGnQDM7FYENwehXlg/kFVnos3rEvtKTjRvOWSzb6H
1414
github.com/stretchr/testify v1.5.1/go.mod h1:5W2xD1RspED5o8YsWQXVCued0rvSQ+mT+I5cxcmMvtA=
1515
golang.org/x/exp v0.0.0-20220722155223-a9213eeb770e h1:+WEEuIdZHnUeJJmEUjyYC2gfUMj69yZXw17EnHg/otA=
1616
golang.org/x/exp v0.0.0-20220722155223-a9213eeb770e/go.mod h1:Kr81I6Kryrl9sr8s2FK3vxD90NdsKWRuOIl2O4CvYbA=
17-
golang.org/x/text v0.8.0 h1:57P1ETyNKtuIjB4SRd15iJxuhj8Gc416Y78H3qgMh68=
18-
golang.org/x/text v0.8.0/go.mod h1:e1OnstbJyHTd6l/uOt8jFFHp6TRDWZR/bV3emEE/zU8=
17+
golang.org/x/text v0.9.0 h1:2sjJmO8cDvYveuX97RDLsxlyUxLl+GHoLxBiRdHllBE=
18+
golang.org/x/text v0.9.0/go.mod h1:e1OnstbJyHTd6l/uOt8jFFHp6TRDWZR/bV3emEE/zU8=
1919
golang.org/x/xerrors v0.0.0-20191204190536-9bdfabe68543/go.mod h1:I/5z698sn9Ka8TeJc9MKroUUfqBBauWjQqLJ2OPfmY0=
20-
google.golang.org/genproto/googleapis/api v0.0.0-20230525234035-dd9d682886f9 h1:m8v1xLLLzMe1m5P+gCTF8nJB9epwZQUBERm20Oy1poQ=
21-
google.golang.org/genproto/googleapis/api v0.0.0-20230525234035-dd9d682886f9/go.mod h1:vHYtlOoi6TsQ3Uk2yxR7NI5z8uoV+3pZtR4jmHIkRig=
22-
google.golang.org/genproto/googleapis/rpc v0.0.0-20230525234030-28d5490b6b19 h1:0nDDozoAU19Qb2HwhXadU8OcsiO/09cnTqhUtq2MEOM=
23-
google.golang.org/genproto/googleapis/rpc v0.0.0-20230525234030-28d5490b6b19/go.mod h1:66JfowdXAEgad5O9NnYcsNPLCPZJD++2L9X0PCMODrA=
20+
google.golang.org/genproto/googleapis/api v0.0.0-20230803162519-f966b187b2e5 h1:nIgk/EEq3/YlnmVVXVnm14rC2oxgs1o0ong4sD/rd44=
21+
google.golang.org/genproto/googleapis/api v0.0.0-20230803162519-f966b187b2e5/go.mod h1:5DZzOUPCLYL3mNkQ0ms0F3EuUNZ7py1Bqeq6sxzI7/Q=
22+
google.golang.org/genproto/googleapis/rpc v0.0.0-20230803162519-f966b187b2e5 h1:eSaPbMR4T7WfH9FvABk36NBMacoTUKdWCvV0dx+KfOg=
23+
google.golang.org/genproto/googleapis/rpc v0.0.0-20230803162519-f966b187b2e5/go.mod h1:zBEcrKX2ZOcEkHWxBPAIvYUWOKKMIhYcmNiUIu2ji3I=
2424
google.golang.org/protobuf v1.26.0-rc.1/go.mod h1:jlhhOSvTdKEhbULTjvd4ARK9grFBp09yW+WbY/TyQbw=
25-
google.golang.org/protobuf v1.30.0 h1:kPPoIgf3TsEvrm0PFe15JQ+570QVxYzEvvHqChK+cng=
26-
google.golang.org/protobuf v1.30.0/go.mod h1:HV8QOd/L58Z+nl8r43ehVNZIU/HEI6OcFqwMG9pJV4I=
25+
google.golang.org/protobuf v1.31.0 h1:g0LDEJHgrBl9N9r17Ru3sqWhkIx2NB67okBHPwC7hs8=
26+
google.golang.org/protobuf v1.31.0/go.mod h1:HV8QOd/L58Z+nl8r43ehVNZIU/HEI6OcFqwMG9pJV4I=
2727
gopkg.in/check.v1 v0.0.0-20161208181325-20d25e280405/go.mod h1:Co6ibVJAznAaIkqp8huTwlJQCZ016jof/cbN4VW5Yz0=
2828
gopkg.in/yaml.v2 v2.2.2 h1:ZCJp+EgiOT7lHqUV2J862kp8Qj64Jo6az82+3Td9dZw=
2929
gopkg.in/yaml.v2 v2.2.2/go.mod h1:hI93XBmqTisBFMUTm0b8Fm+jr3Dg1NNxqwp+5A1VGuI=

vendor/google.golang.org/protobuf/encoding/protojson/encode.go

Lines changed: 10 additions & 4 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

vendor/google.golang.org/protobuf/encoding/prototext/encode.go

Lines changed: 10 additions & 4 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

vendor/google.golang.org/protobuf/internal/encoding/json/encode.go

Lines changed: 6 additions & 4 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

vendor/google.golang.org/protobuf/internal/encoding/text/encode.go

Lines changed: 6 additions & 4 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

vendor/google.golang.org/protobuf/internal/genid/descriptor_gen.go

Lines changed: 48 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

vendor/google.golang.org/protobuf/internal/genid/type_gen.go

Lines changed: 6 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

vendor/google.golang.org/protobuf/internal/order/order.go

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)