File tree Expand file tree Collapse file tree 11 files changed +36
-17
lines changed Expand file tree Collapse file tree 11 files changed +36
-17
lines changed Original file line number Diff line number Diff line change 14
14
"groupName" : " all" ,
15
15
"ignoreDeps" : [
16
16
" google.golang.org/genproto" ,
17
- " github.com/google/martian/v3"
17
+ " github.com/google/martian/v3" ,
18
+ " golang.org/x/net" ,
19
+ " golang.org/x/sys" ,
20
+ " golang.org/x/oauth2"
18
21
],
19
22
"ignorePaths" : [
20
23
" **/snippets/**"
21
24
],
22
25
"force" : {
23
26
"constraints" : {
24
- "go" : " 1.19"
27
+ "go" : " 1.19"
25
28
}
26
- }
29
+ }
27
30
}
Original file line number Diff line number Diff line change @@ -31,9 +31,9 @@ require (
31
31
github.com/google/uuid v1.3.0 // indirect
32
32
github.com/googleapis/enterprise-certificate-proxy v0.2.0 // indirect
33
33
go.opencensus.io v0.23.0 // indirect
34
- golang.org/x/net v0.1.0 // indirect
34
+ golang.org/x/net v0.0.0-20221014081412-f15817d10f9b // indirect
35
35
golang.org/x/oauth2 v0.0.0-20221014153046-6fdb5e3db783 // indirect
36
- golang.org/x/sys v0.1.0 // indirect
36
+ golang.org/x/sys v0.0.0-20220728004956-3c1f35247d10 // indirect
37
37
golang.org/x/text v0.4.0 // indirect
38
38
golang.org/x/xerrors v0.0.0-20220907171357-04be3eba64a2 // indirect
39
39
google.golang.org/appengine v1.6.7 // indirect
Original file line number Diff line number Diff line change @@ -102,6 +102,8 @@ golang.org/x/net v0.0.0-20190603091049-60506f45cf65/go.mod h1:HSz+uSET+XFnRR8LxR
102
102
golang.org/x/net v0.0.0-20200822124328-c89045814202 /go.mod h1:/O7V0waA8r7cgGh81Ro3o1hOxt32SMVPicZroKQ2sZA =
103
103
golang.org/x/net v0.0.0-20201021035429-f5854403a974 /go.mod h1:sp8m0HH+o8qH0wwXwYZr8TS3Oi6o0r6Gce1SSxlDquU =
104
104
golang.org/x/net v0.0.0-20201110031124-69a78807bb2b /go.mod h1:sp8m0HH+o8qH0wwXwYZr8TS3Oi6o0r6Gce1SSxlDquU =
105
+ golang.org/x/net v0.0.0-20221014081412-f15817d10f9b h1:tvrvnPFcdzp294diPnrdZZZ8XUt2Tyj7svb7X52iDuU =
106
+ golang.org/x/net v0.0.0-20221014081412-f15817d10f9b /go.mod h1:YDH+HFinaLZZlnHAfSS6ZXJJ9M9t4Dl22yv3iI2vPwk =
105
107
golang.org/x/net v0.1.0 h1:hZ/3BUoy5aId7sCpA/Tc5lt8DkFgdVS2onTpJsZ/fl0 =
106
108
golang.org/x/net v0.1.0 /go.mod h1:Cx3nUiGt4eDBEyega/BKRp+/AlGL8hYe7U9odMt2Cco =
107
109
golang.org/x/oauth2 v0.0.0-20180821212333-d2e6202438be /go.mod h1:N/0e6XlmueqKjAGxoOufVs8QHGRruUQn6yWY3a++T0U =
@@ -118,6 +120,8 @@ golang.org/x/sys v0.0.0-20190412213103-97732733099d/go.mod h1:h1NjWce9XRLGQEsW7w
118
120
golang.org/x/sys v0.0.0-20200323222414-85ca7c5b95cd /go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs =
119
121
golang.org/x/sys v0.0.0-20200930185726-fdedc70b468f /go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs =
120
122
golang.org/x/sys v0.0.0-20210119212857-b64e53b001e4 /go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs =
123
+ golang.org/x/sys v0.0.0-20220728004956-3c1f35247d10 h1:WIoqL4EROvwiPdUtaip4VcDdpZ4kha7wBWZrbVKCIZg =
124
+ golang.org/x/sys v0.0.0-20220728004956-3c1f35247d10 /go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg =
121
125
golang.org/x/sys v0.1.0 h1:kunALQeHf1/185U1i0GOB/fy1IPRDDpuoOOqRReG57U =
122
126
golang.org/x/sys v0.1.0 /go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg =
123
127
golang.org/x/text v0.3.0 /go.mod h1:NqM8EUOU14njkJ3fqMW+pc6Ldnwhi/IjpwHt7yyuwOQ =
Original file line number Diff line number Diff line change @@ -24,9 +24,9 @@ require (
24
24
github.com/golang/groupcache v0.0.0-20200121045136-8c9f03a8e57e // indirect
25
25
github.com/google/uuid v1.3.0 // indirect
26
26
github.com/googleapis/enterprise-certificate-proxy v0.2.0 // indirect
27
- golang.org/x/net v0.1.0 // indirect
27
+ golang.org/x/net v0.0.0-20221014081412-f15817d10f9b // indirect
28
28
golang.org/x/sync v0.1.0 // indirect
29
- golang.org/x/sys v0.1.0 // indirect
29
+ golang.org/x/sys v0.0.0-20220728004956-3c1f35247d10 // indirect
30
30
golang.org/x/text v0.4.0 // indirect
31
31
golang.org/x/xerrors v0.0.0-20220907171357-04be3eba64a2 // indirect
32
32
google.golang.org/appengine v1.6.7 // indirect
Original file line number Diff line number Diff line change @@ -78,6 +78,8 @@ golang.org/x/net v0.0.0-20190311183353-d8887717615a/go.mod h1:t9HGtf8HONx5eT2rtn
78
78
golang.org/x/net v0.0.0-20190404232315-eb5bcb51f2a3 /go.mod h1:t9HGtf8HONx5eT2rtn7q6eTqICYqUVnKs3thJo3Qplg =
79
79
golang.org/x/net v0.0.0-20190603091049-60506f45cf65 /go.mod h1:HSz+uSET+XFnRR8LxR5pz3Of3rY3CfYBVs4xY44aLks =
80
80
golang.org/x/net v0.0.0-20201110031124-69a78807bb2b /go.mod h1:sp8m0HH+o8qH0wwXwYZr8TS3Oi6o0r6Gce1SSxlDquU =
81
+ golang.org/x/net v0.0.0-20221014081412-f15817d10f9b h1:tvrvnPFcdzp294diPnrdZZZ8XUt2Tyj7svb7X52iDuU =
82
+ golang.org/x/net v0.0.0-20221014081412-f15817d10f9b /go.mod h1:YDH+HFinaLZZlnHAfSS6ZXJJ9M9t4Dl22yv3iI2vPwk =
81
83
golang.org/x/net v0.1.0 h1:hZ/3BUoy5aId7sCpA/Tc5lt8DkFgdVS2onTpJsZ/fl0 =
82
84
golang.org/x/net v0.1.0 /go.mod h1:Cx3nUiGt4eDBEyega/BKRp+/AlGL8hYe7U9odMt2Cco =
83
85
golang.org/x/oauth2 v0.0.0-20180821212333-d2e6202438be /go.mod h1:N/0e6XlmueqKjAGxoOufVs8QHGRruUQn6yWY3a++T0U =
@@ -92,6 +94,8 @@ golang.org/x/sys v0.0.0-20180830151530-49385e6e1522/go.mod h1:STP8DvDyc/dI5b8T5h
92
94
golang.org/x/sys v0.0.0-20190215142949-d0b11bdaac8a /go.mod h1:STP8DvDyc/dI5b8T5hshtkjS+E42TnysNCUPdjciGhY =
93
95
golang.org/x/sys v0.0.0-20190412213103-97732733099d /go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs =
94
96
golang.org/x/sys v0.0.0-20200930185726-fdedc70b468f /go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs =
97
+ golang.org/x/sys v0.0.0-20220728004956-3c1f35247d10 h1:WIoqL4EROvwiPdUtaip4VcDdpZ4kha7wBWZrbVKCIZg =
98
+ golang.org/x/sys v0.0.0-20220728004956-3c1f35247d10 /go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg =
95
99
golang.org/x/sys v0.1.0 h1:kunALQeHf1/185U1i0GOB/fy1IPRDDpuoOOqRReG57U =
96
100
golang.org/x/sys v0.1.0 /go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg =
97
101
golang.org/x/text v0.3.0 /go.mod h1:NqM8EUOU14njkJ3fqMW+pc6Ldnwhi/IjpwHt7yyuwOQ =
Original file line number Diff line number Diff line change @@ -24,8 +24,8 @@ require (
24
24
github.com/google/uuid v1.3.0 // indirect
25
25
github.com/googleapis/enterprise-certificate-proxy v0.2.0 // indirect
26
26
go.opencensus.io v0.23.0 // indirect
27
- golang.org/x/net v0.1.0 // indirect
28
- golang.org/x/sys v0.1.0 // indirect
27
+ golang.org/x/net v0.0.0-20221014081412-f15817d10f9b // indirect
28
+ golang.org/x/sys v0.0.0-20220728004956-3c1f35247d10 // indirect
29
29
golang.org/x/text v0.4.0 // indirect
30
30
golang.org/x/xerrors v0.0.0-20220907171357-04be3eba64a2 // indirect
31
31
google.golang.org/appengine v1.6.7 // indirect
Original file line number Diff line number Diff line change @@ -286,6 +286,8 @@ golang.org/x/net v0.0.0-20210316092652-d523dce5a7f4/go.mod h1:RBQZq4jEuRlivfhVLd
286
286
golang.org/x/net v0.0.0-20210405180319-a5a99cb37ef4 /go.mod h1:p54w0d4576C0XHj96bSt6lcn1PtDYWL6XObtHCRCNQM =
287
287
golang.org/x/net v0.0.0-20210503060351-7fd8e65b6420 /go.mod h1:9nx3DQGgdP8bBQD5qxJ1jj9UTztislL4KSBs9R2vV5Y =
288
288
golang.org/x/net v0.0.0-20220127200216-cd36cc0744dd /go.mod h1:CfG3xpIq0wQ8r1q4Su4UZFWDARRcnwPjda9FqA0JpMk =
289
+ golang.org/x/net v0.0.0-20221014081412-f15817d10f9b h1:tvrvnPFcdzp294diPnrdZZZ8XUt2Tyj7svb7X52iDuU =
290
+ golang.org/x/net v0.0.0-20221014081412-f15817d10f9b /go.mod h1:YDH+HFinaLZZlnHAfSS6ZXJJ9M9t4Dl22yv3iI2vPwk =
289
291
golang.org/x/net v0.1.0 h1:hZ/3BUoy5aId7sCpA/Tc5lt8DkFgdVS2onTpJsZ/fl0 =
290
292
golang.org/x/net v0.1.0 /go.mod h1:Cx3nUiGt4eDBEyega/BKRp+/AlGL8hYe7U9odMt2Cco =
291
293
golang.org/x/oauth2 v0.0.0-20180821212333-d2e6202438be /go.mod h1:N/0e6XlmueqKjAGxoOufVs8QHGRruUQn6yWY3a++T0U =
@@ -368,6 +370,8 @@ golang.org/x/sys v0.0.0-20211210111614-af8b64212486/go.mod h1:oPkhp1MJrh7nUepCBc
368
370
golang.org/x/sys v0.0.0-20211216021012-1d35b9e2eb4e /go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg =
369
371
golang.org/x/sys v0.0.0-20220128215802-99c3d69c2c27 /go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg =
370
372
golang.org/x/sys v0.0.0-20220209214540-3681064d5158 /go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg =
373
+ golang.org/x/sys v0.0.0-20220728004956-3c1f35247d10 h1:WIoqL4EROvwiPdUtaip4VcDdpZ4kha7wBWZrbVKCIZg =
374
+ golang.org/x/sys v0.0.0-20220728004956-3c1f35247d10 /go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg =
371
375
golang.org/x/sys v0.1.0 h1:kunALQeHf1/185U1i0GOB/fy1IPRDDpuoOOqRReG57U =
372
376
golang.org/x/sys v0.1.0 /go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg =
373
377
golang.org/x/term v0.0.0-20201126162022-7de9c90e9dd1 /go.mod h1:bj7SfCRtBDWHUb9snDiAeCFNEtKQo2Wmx5Cou7ajbmo =
Original file line number Diff line number Diff line change @@ -24,8 +24,8 @@ require (
24
24
cloud.google.com/go/compute/metadata v0.2.1 // indirect
25
25
github.com/golang/groupcache v0.0.0-20200121045136-8c9f03a8e57e // indirect
26
26
github.com/googleapis/enterprise-certificate-proxy v0.2.0 // indirect
27
- golang.org/x/net v0.1.0 // indirect
28
- golang.org/x/sys v0.1.0 // indirect
27
+ golang.org/x/net v0.0.0-20221014081412-f15817d10f9b // indirect
28
+ golang.org/x/sys v0.0.0-20220728004956-3c1f35247d10 // indirect
29
29
golang.org/x/text v0.4.0 // indirect
30
30
google.golang.org/appengine v1.6.7 // indirect
31
31
)
Original file line number Diff line number Diff line change @@ -75,6 +75,8 @@ golang.org/x/net v0.0.0-20190311183353-d8887717615a/go.mod h1:t9HGtf8HONx5eT2rtn
75
75
golang.org/x/net v0.0.0-20190404232315-eb5bcb51f2a3 /go.mod h1:t9HGtf8HONx5eT2rtn7q6eTqICYqUVnKs3thJo3Qplg =
76
76
golang.org/x/net v0.0.0-20190603091049-60506f45cf65 /go.mod h1:HSz+uSET+XFnRR8LxR5pz3Of3rY3CfYBVs4xY44aLks =
77
77
golang.org/x/net v0.0.0-20201110031124-69a78807bb2b /go.mod h1:sp8m0HH+o8qH0wwXwYZr8TS3Oi6o0r6Gce1SSxlDquU =
78
+ golang.org/x/net v0.0.0-20221014081412-f15817d10f9b h1:tvrvnPFcdzp294diPnrdZZZ8XUt2Tyj7svb7X52iDuU =
79
+ golang.org/x/net v0.0.0-20221014081412-f15817d10f9b /go.mod h1:YDH+HFinaLZZlnHAfSS6ZXJJ9M9t4Dl22yv3iI2vPwk =
78
80
golang.org/x/net v0.1.0 h1:hZ/3BUoy5aId7sCpA/Tc5lt8DkFgdVS2onTpJsZ/fl0 =
79
81
golang.org/x/net v0.1.0 /go.mod h1:Cx3nUiGt4eDBEyega/BKRp+/AlGL8hYe7U9odMt2Cco =
80
82
golang.org/x/oauth2 v0.0.0-20180821212333-d2e6202438be /go.mod h1:N/0e6XlmueqKjAGxoOufVs8QHGRruUQn6yWY3a++T0U =
@@ -89,6 +91,8 @@ golang.org/x/sys v0.0.0-20180830151530-49385e6e1522/go.mod h1:STP8DvDyc/dI5b8T5h
89
91
golang.org/x/sys v0.0.0-20190215142949-d0b11bdaac8a /go.mod h1:STP8DvDyc/dI5b8T5hshtkjS+E42TnysNCUPdjciGhY =
90
92
golang.org/x/sys v0.0.0-20190412213103-97732733099d /go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs =
91
93
golang.org/x/sys v0.0.0-20200930185726-fdedc70b468f /go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs =
94
+ golang.org/x/sys v0.0.0-20220728004956-3c1f35247d10 h1:WIoqL4EROvwiPdUtaip4VcDdpZ4kha7wBWZrbVKCIZg =
95
+ golang.org/x/sys v0.0.0-20220728004956-3c1f35247d10 /go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg =
92
96
golang.org/x/sys v0.1.0 h1:kunALQeHf1/185U1i0GOB/fy1IPRDDpuoOOqRReG57U =
93
97
golang.org/x/sys v0.1.0 /go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg =
94
98
golang.org/x/text v0.3.0 /go.mod h1:NqM8EUOU14njkJ3fqMW+pc6Ldnwhi/IjpwHt7yyuwOQ =
Original file line number Diff line number Diff line change @@ -24,8 +24,8 @@ require (
24
24
github.com/google/martian/v3 v3.2.1 // indirect
25
25
github.com/googleapis/enterprise-certificate-proxy v0.2.0 // indirect
26
26
go.opencensus.io v0.24.0 // indirect
27
- golang.org/x/net v0.1.0 // indirect
28
- golang.org/x/sys v0.1.0 // indirect
27
+ golang.org/x/net v0.0.0-20221014081412-f15817d10f9b // indirect
28
+ golang.org/x/sys v0.0.0-20220728004956-3c1f35247d10 // indirect
29
29
golang.org/x/text v0.4.0 // indirect
30
30
google.golang.org/appengine v1.6.7 // indirect
31
31
)
You can’t perform that action at this time.
0 commit comments