Skip to content

Commit 36c83ff

Browse files
buraksezeredsonmichaque
authored andcommitted
[TT-13508] Streams poor performance when reconnecting to a Streams API (#6697)
### **User description** PR for https://tyktech.atlassian.net/browse/TT-13508 Changes: * Bento updated to this commit: warpstreamlabs/bento@755c497 * `removeStream` uses the correct key to remove an inactive stream, not combining it with the API ID. Related PR: warpstreamlabs/bento#125 ___ ### **PR Type** Bug fix, Enhancement ___ ### **Description** - Fixed a bug in the `removeStream` function by using the correct key for removing inactive streams, ensuring that the API ID is not combined with the stream ID. - Updated the `google.golang.org/grpc` dependency to version `v1.67.0`. - Updated the `github.com/warpstreamlabs/bento` dependency to a specific commit for improved performance. - Updated several other dependencies to their latest versions to ensure compatibility and leverage new features. ___ ### **Changes walkthrough** 📝 <table><thead><tr><th></th><th align="left">Relevant files</th></tr></thead><tbody><tr><td><strong>Bug fix</strong></td><td><table> <tr> <td> <details> <summary><strong>manager.go</strong><dd><code>Correct stream removal logic in `removeStream` function</code>&nbsp; &nbsp; </dd></summary> <hr> ee/middleware/streams/manager.go <li>Fixed the <code>removeStream</code> function to use the correct key for stream <br>removal.<br> <li> Removed the combination of API ID with stream ID for stream <br>identification.<br> </details> </td> <td><a href="https://github.com/TykTechnologies/tyk/pull/6697/files#diff-3e372b3346d8d296e6953152c89202a634d7654f10549676af9aea8628e13dfb">+2/-4</a>&nbsp; &nbsp; &nbsp; </td> </tr> </table></td></tr><tr><td><strong>Dependencies</strong></td><td><table> <tr> <td> <details> <summary><strong>go.mod</strong><dd><code>Update dependencies to latest versions</code>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; </dd></summary> <hr> go.mod <li>Updated <code>google.golang.org/grpc</code> to version <code>v1.67.0</code>.<br> <li> Updated <code>github.com/warpstreamlabs/bento</code> to a specific commit.<br> <li> Updated various dependencies to newer versions.<br> </details> </td> <td><a href="https://github.com/TykTechnologies/tyk/pull/6697/files#diff-33ef32bf6c23acb95f5902d7097b7a1d5128ca061167ec0716715b0b9eeaa5f6">+65/-45</a>&nbsp; </td> </tr> </table></td></tr><tr><td><strong>Additional files (token-limit)</strong></td><td><table> <tr> <td> <details> <summary><strong>go.sum</strong><dd><code>...</code>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; </dd></summary> <hr> go.sum ... </details> </td> <td><a href="https://github.com/TykTechnologies/tyk/pull/6697/files#diff-3295df7234525439d778f1b282d146a4f1ff6b415248aaac074e8042d9f42d63">+1054/-103</a></td> </tr> </table></td></tr></tr></tbody></table> ___ > 💡 **PR-Agent usage**: Comment `/help "your question"` on any pull request to receive relevant information
1 parent aa3bb4f commit 36c83ff

File tree

4 files changed

+1124
-151
lines changed

4 files changed

+1124
-151
lines changed

ee/middleware/streams/manager.go

+2-4
Original file line numberDiff line numberDiff line change
@@ -63,9 +63,7 @@ func (sm *Manager) setUpOrDryRunStream(streamConfig any, streamID string) {
6363

6464
// removeStream removes a stream
6565
func (sm *Manager) removeStream(streamID string) error {
66-
streamFullID := fmt.Sprintf("%s_%s", sm.mw.Spec.APIID, streamID)
67-
68-
if streamValue, exists := sm.streams.Load(streamFullID); exists {
66+
if streamValue, exists := sm.streams.Load(streamID); exists {
6967
stream, ok := streamValue.(*Stream)
7068
if !ok {
7169
return fmt.Errorf("stream %s is not a valid stream", streamID)
@@ -74,7 +72,7 @@ func (sm *Manager) removeStream(streamID string) error {
7472
if err != nil {
7573
return err
7674
}
77-
sm.streams.Delete(streamFullID)
75+
sm.streams.Delete(streamID)
7876
} else {
7977
return fmt.Errorf("stream %s does not exist", streamID)
8078
}

go.mod

+65-45
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,7 @@ require (
6767
golang.org/x/crypto v0.27.0
6868
golang.org/x/net v0.29.0
6969
golang.org/x/sync v0.8.0
70-
google.golang.org/grpc v1.66.2
70+
google.golang.org/grpc v1.67.0
7171
google.golang.org/grpc/examples v0.0.0-20220317213542-f95b001a48df // test
7272
google.golang.org/protobuf v1.34.2
7373
gopkg.in/vmihailenco/msgpack.v2 v2.9.2
@@ -96,22 +96,28 @@ require (
9696
github.com/testcontainers/testcontainers-go v0.33.0
9797
github.com/testcontainers/testcontainers-go/modules/kafka v0.33.0
9898
github.com/testcontainers/testcontainers-go/modules/nats v0.33.0
99-
github.com/warpstreamlabs/bento v1.2.0
100-
go.opentelemetry.io/otel v1.24.0
101-
go.opentelemetry.io/otel/trace v1.24.0
99+
github.com/warpstreamlabs/bento v1.3.1-0.20241107213129-755c497be8a3
100+
go.opentelemetry.io/otel v1.29.0
101+
go.opentelemetry.io/otel/trace v1.29.0
102102
go.uber.org/mock v0.4.0
103-
golang.org/x/oauth2 v0.21.0
103+
golang.org/x/oauth2 v0.23.0
104104
gopkg.in/yaml.v2 v2.4.0
105105
)
106106

107107
require (
108-
cloud.google.com/go v0.112.1 // indirect
109-
cloud.google.com/go/bigquery v1.59.1 // indirect
110-
cloud.google.com/go/compute/metadata v0.3.0 // indirect
111-
cloud.google.com/go/iam v1.1.6 // indirect
112-
cloud.google.com/go/pubsub v1.36.1 // indirect
113-
cloud.google.com/go/storage v1.38.0 // indirect
114-
cloud.google.com/go/trace v1.10.5 // indirect
108+
cel.dev/expr v0.16.0 // indirect
109+
cloud.google.com/go v0.115.1 // indirect
110+
cloud.google.com/go/auth v0.9.5 // indirect
111+
cloud.google.com/go/auth/oauth2adapt v0.2.4 // indirect
112+
cloud.google.com/go/bigquery v1.63.0 // indirect
113+
cloud.google.com/go/compute/metadata v0.5.2 // indirect
114+
cloud.google.com/go/iam v1.2.1 // indirect
115+
cloud.google.com/go/longrunning v0.6.1 // indirect
116+
cloud.google.com/go/monitoring v1.21.1 // indirect
117+
cloud.google.com/go/pubsub v1.43.0 // indirect
118+
cloud.google.com/go/spanner v1.68.0 // indirect
119+
cloud.google.com/go/storage v1.43.0 // indirect
120+
cloud.google.com/go/trace v1.11.1 // indirect
115121
cuelang.org/go v0.7.0 // indirect
116122
dario.cat/mergo v1.0.1 // indirect
117123
github.com/99designs/go-keychain v0.0.0-20191008050251-8e49817e8af4 // indirect
@@ -131,6 +137,8 @@ require (
131137
github.com/ClickHouse/ch-go v0.61.5 // indirect
132138
github.com/ClickHouse/clickhouse-go/v2 v2.21.1 // indirect
133139
github.com/DataDog/zstd v1.5.2 // indirect
140+
github.com/GoogleCloudPlatform/grpc-gcp-go/grpcgcp v1.5.0 // indirect
141+
github.com/GoogleCloudPlatform/opentelemetry-operations-go/detectors/gcp v1.24.1 // indirect
134142
github.com/GoogleCloudPlatform/opentelemetry-operations-go/exporter/trace v1.21.0 // indirect
135143
github.com/GoogleCloudPlatform/opentelemetry-operations-go/internal/resourcemapping v0.45.0 // indirect
136144
github.com/HdrHistogram/hdrhistogram-go v1.1.2 // indirect
@@ -152,6 +160,7 @@ require (
152160
github.com/andybalholm/brotli v1.1.0 // indirect
153161
github.com/apache/arrow/go/arrow v0.0.0-20211112161151-bc219186db40 // indirect
154162
github.com/apache/arrow/go/v14 v14.0.2 // indirect
163+
github.com/apache/arrow/go/v15 v15.0.2 // indirect
155164
github.com/apache/pulsar-client-go v0.12.0 // indirect
156165
github.com/apache/thrift v0.18.1 // indirect
157166
github.com/ardielle/ardielle-go v1.5.2 // indirect
@@ -160,16 +169,16 @@ require (
160169
github.com/asyncapi/parser-go v0.4.2 // indirect
161170
github.com/asyncapi/spec-json-schemas/v2 v2.14.0 // indirect
162171
github.com/aws/aws-lambda-go v1.46.0 // indirect
163-
github.com/aws/aws-sdk-go-v2 v1.25.0 // indirect
172+
github.com/aws/aws-sdk-go-v2 v1.32.2 // indirect
164173
github.com/aws/aws-sdk-go-v2/aws/protocol/eventstream v1.6.0 // indirect
165174
github.com/aws/aws-sdk-go-v2/config v1.26.6 // indirect
166175
github.com/aws/aws-sdk-go-v2/credentials v1.16.16 // indirect
167176
github.com/aws/aws-sdk-go-v2/feature/dynamodb/attributevalue v1.12.16 // indirect
168177
github.com/aws/aws-sdk-go-v2/feature/dynamodb/expression v1.6.16 // indirect
169178
github.com/aws/aws-sdk-go-v2/feature/ec2/imds v1.14.11 // indirect
170179
github.com/aws/aws-sdk-go-v2/feature/s3/manager v1.15.15 // indirect
171-
github.com/aws/aws-sdk-go-v2/internal/configsources v1.3.0 // indirect
172-
github.com/aws/aws-sdk-go-v2/internal/endpoints/v2 v2.6.0 // indirect
180+
github.com/aws/aws-sdk-go-v2/internal/configsources v1.3.21 // indirect
181+
github.com/aws/aws-sdk-go-v2/internal/endpoints/v2 v2.6.21 // indirect
173182
github.com/aws/aws-sdk-go-v2/internal/ini v1.7.3 // indirect
174183
github.com/aws/aws-sdk-go-v2/internal/v4a v1.2.10 // indirect
175184
github.com/aws/aws-sdk-go-v2/service/cloudwatch v1.32.2 // indirect
@@ -184,12 +193,13 @@ require (
184193
github.com/aws/aws-sdk-go-v2/service/kinesis v1.24.7 // indirect
185194
github.com/aws/aws-sdk-go-v2/service/lambda v1.50.0 // indirect
186195
github.com/aws/aws-sdk-go-v2/service/s3 v1.48.1 // indirect
196+
github.com/aws/aws-sdk-go-v2/service/secretsmanager v1.34.2 // indirect
187197
github.com/aws/aws-sdk-go-v2/service/sns v1.27.0 // indirect
188198
github.com/aws/aws-sdk-go-v2/service/sqs v1.29.7 // indirect
189199
github.com/aws/aws-sdk-go-v2/service/sso v1.18.7 // indirect
190200
github.com/aws/aws-sdk-go-v2/service/ssooidc v1.21.7 // indirect
191201
github.com/aws/aws-sdk-go-v2/service/sts v1.26.7 // indirect
192-
github.com/aws/smithy-go v1.20.0 // indirect
202+
github.com/aws/smithy-go v1.22.0 // indirect
193203
github.com/aymerick/douceur v0.2.0 // indirect
194204
github.com/beanstalkd/go-beanstalk v0.2.0 // indirect
195205
github.com/benhoyt/goawk v1.25.0 // indirect
@@ -205,9 +215,11 @@ require (
205215
github.com/bufbuild/protocompile v0.8.0 // indirect
206216
github.com/bwmarrin/discordgo v0.27.1 // indirect
207217
github.com/bwmarrin/snowflake v0.3.0 // indirect
218+
github.com/census-instrumentation/opencensus-proto v0.4.1 // indirect
208219
github.com/certifi/gocertifi v0.0.0-20210507211836-431795d63e8d // indirect
209220
github.com/cespare/xxhash/v2 v2.3.0 // indirect
210221
github.com/clbanning/mxj/v2 v2.7.0 // indirect
222+
github.com/cncf/xds/go v0.0.0-20240822171458-6449f94b4d59 // indirect
211223
github.com/cockroachdb/apd/v3 v3.2.1 // indirect
212224
github.com/coder/websocket v1.8.12 // indirect
213225
github.com/colinmarc/hdfs v1.1.3 // indirect
@@ -241,6 +253,8 @@ require (
241253
github.com/eapache/go-xerial-snappy v0.0.0-20230731223053-c322873962e3 // indirect
242254
github.com/eapache/queue v1.1.0 // indirect
243255
github.com/eclipse/paho.mqtt.golang v1.4.3 // indirect
256+
github.com/envoyproxy/go-control-plane v0.13.0 // indirect
257+
github.com/envoyproxy/protoc-gen-validate v1.1.0 // indirect
244258
github.com/facebookgo/clock v0.0.0-20150410010913-600d898af40a // indirect
245259
github.com/fatih/color v1.16.0 // indirect
246260
github.com/fatih/structs v1.1.0 // indirect
@@ -256,9 +270,9 @@ require (
256270
github.com/go-faster/city v1.0.1 // indirect
257271
github.com/go-faster/errors v0.7.1 // indirect
258272
github.com/go-jose/go-jose/v4 v4.0.1 // indirect
259-
github.com/go-logr/logr v1.4.1 // indirect
273+
github.com/go-logr/logr v1.4.2 // indirect
260274
github.com/go-logr/stdr v1.2.2 // indirect
261-
github.com/go-ole/go-ole v1.2.6 // indirect
275+
github.com/go-ole/go-ole v1.3.0 // indirect
262276
github.com/go-openapi/jsonpointer v0.19.6 // indirect
263277
github.com/go-openapi/swag v0.22.4 // indirect
264278
github.com/go-sourcemap/sourcemap v2.1.3+incompatible // indirect
@@ -273,15 +287,16 @@ require (
273287
github.com/golang-jwt/jwt/v5 v5.2.0 // indirect
274288
github.com/golang-sql/civil v0.0.0-20220223132316-b832511892a9 // indirect
275289
github.com/golang-sql/sqlexp v0.1.0 // indirect
276-
github.com/golang/glog v1.2.1 // indirect
290+
github.com/golang/glog v1.2.2 // indirect
277291
github.com/golang/groupcache v0.0.0-20210331224755-41bb18bfe9da // indirect
278292
github.com/golang/snappy v0.0.4 // indirect
279293
github.com/google/flatbuffers v23.5.26+incompatible // indirect
280294
github.com/google/pprof v0.0.0-20230926050212-f7f687d19a98 // indirect
281-
github.com/google/s2a-go v0.1.7 // indirect
282-
github.com/googleapis/enterprise-certificate-proxy v0.3.2 // indirect
283-
github.com/googleapis/gax-go/v2 v2.12.2 // indirect
284-
github.com/gorilla/css v1.0.0 // indirect
295+
github.com/google/s2a-go v0.1.8 // indirect
296+
github.com/googleapis/enterprise-certificate-proxy v0.3.4 // indirect
297+
github.com/googleapis/gax-go/v2 v2.13.0 // indirect
298+
github.com/googleapis/go-sql-spanner v1.7.2 // indirect
299+
github.com/gorilla/css v1.0.1 // indirect
285300
github.com/gorilla/handlers v1.5.2 // indirect
286301
github.com/gosimple/slug v1.13.1 // indirect
287302
github.com/gosimple/unidecode v1.0.1 // indirect
@@ -346,15 +361,15 @@ require (
346361
github.com/lib/pq v1.10.9 // indirect
347362
github.com/linkedin/goavro/v2 v2.12.0 // indirect
348363
github.com/lonelycode/go-uuid v0.0.0-20141202165402-ed3ca8a15a93 // indirect
349-
github.com/lufia/plan9stats v0.0.0-20211012122336-39d0f177ccd0 // indirect
364+
github.com/lufia/plan9stats v0.0.0-20230326075908-cb1d2100619a // indirect
350365
github.com/magiconair/properties v1.8.7 // indirect
351366
github.com/mailru/easyjson v0.7.7 // indirect
352367
github.com/matoous/go-nanoid/v2 v2.0.0 // indirect
353368
github.com/mattn/go-colorable v0.1.13 // indirect
354369
github.com/mattn/go-isatty v0.0.20 // indirect
355-
github.com/mattn/go-runewidth v0.0.15 // indirect
370+
github.com/mattn/go-runewidth v0.0.16 // indirect
356371
github.com/mavricknz/asn1-ber v0.0.0-20151103223136-b9df1c2f4213 // indirect
357-
github.com/microcosm-cc/bluemonday v1.0.25 // indirect
372+
github.com/microcosm-cc/bluemonday v1.0.27 // indirect
358373
github.com/microsoft/gocosmos v1.1.1 // indirect
359374
github.com/minio/highwayhash v1.0.2 // indirect
360375
github.com/mitchellh/go-homedir v1.1.0 // indirect
@@ -373,6 +388,7 @@ require (
373388
github.com/nats-io/nkeys v0.4.7 // indirect
374389
github.com/nats-io/nuid v1.0.1 // indirect
375390
github.com/nats-io/stan.go v0.10.4 // indirect
391+
github.com/neo4j/neo4j-go-driver/v5 v5.24.0 // indirect
376392
github.com/nsqio/go-nsq v1.1.0 // indirect
377393
github.com/oklog/ulid v1.3.1 // indirect
378394
github.com/olekukonko/tablewriter v0.0.5 // indirect
@@ -381,7 +397,7 @@ require (
381397
github.com/opencontainers/image-spec v1.1.0 // indirect
382398
github.com/opensearch-project/opensearch-go/v3 v3.0.0 // indirect
383399
github.com/oschwald/geoip2-golang v1.9.0 // indirect
384-
github.com/parquet-go/parquet-go v0.20.0 // indirect
400+
github.com/parquet-go/parquet-go v0.23.0 // indirect
385401
github.com/paulmach/orb v0.11.1 // indirect
386402
github.com/pebbe/zmq4 v1.2.10 // indirect
387403
github.com/perimeterx/marshmallow v1.1.5 // indirect
@@ -391,13 +407,15 @@ require (
391407
github.com/pkg/browser v0.0.0-20240102092130-5ac0b6a4141c // indirect
392408
github.com/pkg/errors v0.9.1 // indirect
393409
github.com/pkg/sftp v1.13.6 // indirect
410+
github.com/planetscale/vtprotobuf v0.6.1-0.20240319094008-0393e58bdf10 // indirect
394411
github.com/pmezard/go-difflib v1.0.1-0.20181226105442-5d4384ee4fb2 // indirect
395-
github.com/power-devops/perfstat v0.0.0-20210106213030-5aafc221ea8c // indirect
412+
github.com/power-devops/perfstat v0.0.0-20221212215047-62379fc7944b // indirect
396413
github.com/prometheus/client_golang v1.18.0 // indirect
397-
github.com/prometheus/client_model v0.5.0 // indirect
414+
github.com/prometheus/client_model v0.6.0 // indirect
398415
github.com/prometheus/common v0.46.0 // indirect
399416
github.com/prometheus/procfs v0.12.0 // indirect
400417
github.com/pusher/pusher-http-go v4.0.1+incompatible // indirect
418+
github.com/questdb/go-questdb-client/v3 v3.2.0 // indirect
401419
github.com/quipo/dependencysolver v0.0.0-20170801134659-2b009cb4ddcc // indirect
402420
github.com/r3labs/diff/v3 v3.0.1 // indirect
403421
github.com/r3labs/sse/v2 v2.8.1 // indirect
@@ -406,13 +424,13 @@ require (
406424
github.com/remyoudompheng/bigfft v0.0.0-20230129092748-24d4a6f8daec // indirect
407425
github.com/rickb777/period v1.0.5 // indirect
408426
github.com/rickb777/plural v1.4.2 // indirect
409-
github.com/rivo/uniseg v0.4.4 // indirect
427+
github.com/rivo/uniseg v0.4.7 // indirect
410428
github.com/robfig/cron/v3 v3.0.1 // indirect
411429
github.com/russross/blackfriday/v2 v2.1.0 // indirect
412430
github.com/ryanuber/go-glob v1.0.0 // indirect
413431
github.com/santhosh-tekuri/jsonschema/v5 v5.3.0 // indirect
414432
github.com/segmentio/asm v1.2.0 // indirect
415-
github.com/segmentio/encoding v0.3.6 // indirect
433+
github.com/segmentio/encoding v0.4.0 // indirect
416434
github.com/segmentio/ksuid v1.0.4 // indirect
417435
github.com/shirou/gopsutil/v3 v3.23.12 // indirect
418436
github.com/shoenig/go-m1cpu v0.1.6 // indirect
@@ -425,10 +443,10 @@ require (
425443
github.com/spf13/cast v1.7.0 // indirect
426444
github.com/stretchr/objx v0.5.2 // indirect
427445
github.com/tetratelabs/wazero v1.6.0 // indirect
428-
github.com/tidwall/gjson v1.11.0 // indirect
446+
github.com/tidwall/gjson v1.14.2 // indirect
429447
github.com/tidwall/match v1.1.1 // indirect
430448
github.com/tidwall/pretty v1.2.0 // indirect
431-
github.com/tidwall/sjson v1.0.4 // indirect
449+
github.com/tidwall/sjson v1.2.5 // indirect
432450
github.com/tilinna/z85 v1.0.0 // indirect
433451
github.com/tklauser/go-sysconf v0.3.12 // indirect
434452
github.com/tklauser/numcpus v0.6.1 // indirect
@@ -458,32 +476,34 @@ require (
458476
go.mongodb.org/mongo-driver v1.13.1 // indirect
459477
go.nanomsg.org/mangos/v3 v3.4.2 // indirect
460478
go.opencensus.io v0.24.0 // indirect
461-
go.opentelemetry.io/contrib/instrumentation/google.golang.org/grpc/otelgrpc v0.49.0 // indirect
462-
go.opentelemetry.io/contrib/instrumentation/net/http/otelhttp v0.49.0 // indirect
479+
go.opentelemetry.io/contrib/detectors/gcp v1.29.0 // indirect
480+
go.opentelemetry.io/contrib/instrumentation/google.golang.org/grpc/otelgrpc v0.54.0 // indirect
481+
go.opentelemetry.io/contrib/instrumentation/net/http/otelhttp v0.54.0 // indirect
463482
go.opentelemetry.io/contrib/propagators/b3 v1.17.0 // indirect
464483
go.opentelemetry.io/otel/exporters/jaeger v1.17.0 // indirect
465484
go.opentelemetry.io/otel/exporters/otlp/otlptrace v1.23.1 // indirect
466485
go.opentelemetry.io/otel/exporters/otlp/otlptrace/otlptracegrpc v1.23.1 // indirect
467486
go.opentelemetry.io/otel/exporters/otlp/otlptrace/otlptracehttp v1.23.1 // indirect
468-
go.opentelemetry.io/otel/metric v1.24.0 // indirect
469-
go.opentelemetry.io/otel/sdk v1.24.0 // indirect
487+
go.opentelemetry.io/otel/metric v1.29.0 // indirect
488+
go.opentelemetry.io/otel/sdk v1.29.0 // indirect
489+
go.opentelemetry.io/otel/sdk/metric v1.29.0 // indirect
470490
go.opentelemetry.io/proto/otlp v1.1.0 // indirect
471491
go.uber.org/atomic v1.11.0 // indirect
472492
go.uber.org/multierr v1.11.0 // indirect
473493
go.uber.org/zap v1.27.0 // indirect
474494
golang.org/x/exp v0.0.0-20240112132812-db7319d0e0e3 // indirect
475-
golang.org/x/mod v0.18.0 // indirect
495+
golang.org/x/mod v0.20.0 // indirect
476496
golang.org/x/sys v0.25.0 // indirect
477497
golang.org/x/term v0.24.0 // indirect
478498
golang.org/x/text v0.18.0 // indirect
479-
golang.org/x/time v0.5.0 // indirect
480-
golang.org/x/tools v0.22.0 // indirect
481-
golang.org/x/xerrors v0.0.0-20231012003039-104605ab7028 // indirect
482-
google.golang.org/api v0.169.0 // indirect
499+
golang.org/x/time v0.6.0 // indirect
500+
golang.org/x/tools v0.24.0 // indirect
501+
golang.org/x/xerrors v0.0.0-20240903120638-7835f813f4da // indirect
502+
google.golang.org/api v0.199.0 // indirect
483503
google.golang.org/appengine v1.6.8 // indirect
484-
google.golang.org/genproto v0.0.0-20240227224415-6ceb2ff114de // indirect
485-
google.golang.org/genproto/googleapis/api v0.0.0-20240604185151-ef581f913117 // indirect
486-
google.golang.org/genproto/googleapis/rpc v0.0.0-20240604185151-ef581f913117 // indirect
504+
google.golang.org/genproto v0.0.0-20240930140551-af27646dc61f // indirect
505+
google.golang.org/genproto/googleapis/api v0.0.0-20240924160255-9d4c2d233b61 // indirect
506+
google.golang.org/genproto/googleapis/rpc v0.0.0-20240930140551-af27646dc61f // indirect
487507
gopkg.in/cenkalti/backoff.v1 v1.1.0 // indirect
488508
gopkg.in/inf.v0 v0.9.1 // indirect
489509
gopkg.in/jcmturner/aescts.v1 v1.0.1 // indirect

0 commit comments

Comments
 (0)