Skip to content

Commit 346d18b

Browse files
authored
Update prometheus verison to v3.1.0 (#8090)
Signed-off-by: SungJin1212 <[email protected]>
1 parent 38f4c3c commit 346d18b

40 files changed

+501
-381
lines changed

cmd/thanos/compact.go

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,6 +42,7 @@ import (
4242
"github.com/thanos-io/thanos/pkg/extprom"
4343
extpromhttp "github.com/thanos-io/thanos/pkg/extprom/http"
4444
"github.com/thanos-io/thanos/pkg/logging"
45+
"github.com/thanos-io/thanos/pkg/logutil"
4546
"github.com/thanos-io/thanos/pkg/prober"
4647
"github.com/thanos-io/thanos/pkg/runutil"
4748
httpserver "github.com/thanos-io/thanos/pkg/server/http"
@@ -346,7 +347,7 @@ func runCompact(
346347

347348
// Instantiate the compactor with different time slices. Timestamps in TSDB
348349
// are in milliseconds.
349-
comp, err := tsdb.NewLeveledCompactor(ctx, reg, logger, levels, downsample.NewPool(), mergeFunc)
350+
comp, err := tsdb.NewLeveledCompactor(ctx, reg, logutil.GoKitLogToSlog(logger), levels, downsample.NewPool(), mergeFunc)
350351
if err != nil {
351352
return errors.Wrap(err, "create compactor")
352353
}

cmd/thanos/downsample.go

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,18 +21,19 @@ import (
2121
"github.com/prometheus/client_golang/prometheus/promauto"
2222
"github.com/prometheus/prometheus/tsdb"
2323
"github.com/prometheus/prometheus/tsdb/chunkenc"
24-
"github.com/thanos-io/thanos/pkg/compact"
2524

2625
"github.com/thanos-io/objstore"
2726
"github.com/thanos-io/objstore/client"
2827
objstoretracing "github.com/thanos-io/objstore/tracing/opentracing"
2928

3029
"github.com/thanos-io/thanos/pkg/block"
3130
"github.com/thanos-io/thanos/pkg/block/metadata"
31+
"github.com/thanos-io/thanos/pkg/compact"
3232
"github.com/thanos-io/thanos/pkg/compact/downsample"
3333
"github.com/thanos-io/thanos/pkg/component"
3434
"github.com/thanos-io/thanos/pkg/errutil"
3535
"github.com/thanos-io/thanos/pkg/extprom"
36+
"github.com/thanos-io/thanos/pkg/logutil"
3637
"github.com/thanos-io/thanos/pkg/prober"
3738
"github.com/thanos-io/thanos/pkg/runutil"
3839
httpserver "github.com/thanos-io/thanos/pkg/server/http"
@@ -376,7 +377,7 @@ func processDownsampling(
376377
pool = downsample.NewPool()
377378
}
378379

379-
b, err := tsdb.OpenBlock(logger, bdir, pool)
380+
b, err := tsdb.OpenBlock(logutil.GoKitLogToSlog(logger), bdir, pool, nil)
380381
if err != nil {
381382
return errors.Wrapf(err, "open block %s", m.ULID)
382383
}

cmd/thanos/endpointset.go

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,6 +29,7 @@ import (
2929
"github.com/thanos-io/thanos/pkg/extgrpc"
3030
"github.com/thanos-io/thanos/pkg/extkingpin"
3131
"github.com/thanos-io/thanos/pkg/extprom"
32+
"github.com/thanos-io/thanos/pkg/logutil"
3233
"github.com/thanos-io/thanos/pkg/query"
3334
"github.com/thanos-io/thanos/pkg/runutil"
3435
)
@@ -250,7 +251,7 @@ func setupEndpointSet(
250251
RefreshInterval: model.Duration(legacyFileSDInterval),
251252
}
252253
var err error
253-
if fileSD, err = file.NewDiscovery(conf, logger, conf.NewDiscovererMetrics(reg, discovery.NewRefreshMetrics(reg))); err != nil {
254+
if fileSD, err = file.NewDiscovery(conf, logutil.GoKitLogToSlog(logger), conf.NewDiscovererMetrics(reg, discovery.NewRefreshMetrics(reg))); err != nil {
254255
return nil, fmt.Errorf("unable to create new legacy file sd config: %w", err)
255256
}
256257
}

cmd/thanos/query.go

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -39,6 +39,7 @@ import (
3939
"github.com/thanos-io/thanos/pkg/info"
4040
"github.com/thanos-io/thanos/pkg/info/infopb"
4141
"github.com/thanos-io/thanos/pkg/logging"
42+
"github.com/thanos-io/thanos/pkg/logutil"
4243
"github.com/thanos-io/thanos/pkg/metadata"
4344
"github.com/thanos-io/thanos/pkg/prober"
4445
"github.com/thanos-io/thanos/pkg/query"
@@ -440,7 +441,7 @@ func runQuery(
440441

441442
engineOpts := engine.Opts{
442443
EngineOpts: promql.EngineOpts{
443-
Logger: logger,
444+
Logger: logutil.GoKitLogToSlog(logger),
444445
Reg: reg,
445446
// TODO(bwplotka): Expose this as a flag: https://github.com/thanos-io/thanos/issues/703.
446447
MaxSamples: math.MaxInt32,
@@ -460,7 +461,7 @@ func runQuery(
460461
// An active query tracker will be added only if the user specifies a non-default path.
461462
// Otherwise, the nil active query tracker from existing engine options will be used.
462463
if activeQueryDir != "" {
463-
engineOpts.ActiveQueryTracker = promql.NewActiveQueryTracker(activeQueryDir, maxConcurrentQueries, logger)
464+
engineOpts.ActiveQueryTracker = promql.NewActiveQueryTracker(activeQueryDir, maxConcurrentQueries, logutil.GoKitLogToSlog(logger))
464465
}
465466

466467
var remoteEngineEndpoints api.RemoteEndpoints

cmd/thanos/rule.go

Lines changed: 7 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -63,6 +63,7 @@ import (
6363
"github.com/thanos-io/thanos/pkg/info"
6464
"github.com/thanos-io/thanos/pkg/info/infopb"
6565
"github.com/thanos-io/thanos/pkg/logging"
66+
"github.com/thanos-io/thanos/pkg/logutil"
6667
"github.com/thanos-io/thanos/pkg/prober"
6768
"github.com/thanos-io/thanos/pkg/promclient"
6869
"github.com/thanos-io/thanos/pkg/query"
@@ -461,8 +462,9 @@ func runRule(
461462
return errors.Wrapf(err, "failed to parse remote write config %v", string(rwCfgYAML))
462463
}
463464

465+
slogger := logutil.GoKitLogToSlog(logger)
464466
// flushDeadline is set to 1m, but it is for metadata watcher only so not used here.
465-
remoteStore := remote.NewStorage(logger, reg, func() (int64, error) {
467+
remoteStore := remote.NewStorage(slogger, reg, func() (int64, error) {
466468
return 0, nil
467469
}, conf.dataDir, 1*time.Minute, nil, false)
468470
if err := remoteStore.ApplyConfig(&config.Config{
@@ -474,18 +476,18 @@ func runRule(
474476
return errors.Wrap(err, "applying config to remote storage")
475477
}
476478

477-
agentDB, err = agent.Open(logger, reg, remoteStore, conf.dataDir, agentOpts)
479+
agentDB, err = agent.Open(slogger, reg, remoteStore, conf.dataDir, agentOpts)
478480
if err != nil {
479481
return errors.Wrap(err, "start remote write agent db")
480482
}
481-
fanoutStore := storage.NewFanout(logger, agentDB, remoteStore)
483+
fanoutStore := storage.NewFanout(slogger, agentDB, remoteStore)
482484
appendable = fanoutStore
483485
// Use a separate queryable to restore the ALERTS firing states.
484486
// We cannot use remoteStore directly because it uses remote read for
485487
// query. However, remote read is not implemented in Thanos Receiver.
486488
queryable = thanosrules.NewPromClientsQueryable(logger, queryClients, promClients, conf.query.httpMethod, conf.query.step, conf.ignoredLabelNames)
487489
} else {
488-
tsdbDB, err = tsdb.Open(conf.dataDir, log.With(logger, "component", "tsdb"), reg, tsdbOpts, nil)
490+
tsdbDB, err = tsdb.Open(conf.dataDir, logutil.GoKitLogToSlog(log.With(logger, "component", "tsdb")), reg, tsdbOpts, nil)
489491
if err != nil {
490492
return errors.Wrap(err, "open TSDB")
491493
}
@@ -606,7 +608,7 @@ func runRule(
606608

607609
managerOpts := rules.ManagerOptions{
608610
NotifyFunc: notifyFunc,
609-
Logger: logger,
611+
Logger: logutil.GoKitLogToSlog(logger),
610612
Appendable: appendable,
611613
ExternalURL: nil,
612614
Queryable: queryable,

cmd/thanos/tools_bucket.go

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -54,6 +54,7 @@ import (
5454
"github.com/thanos-io/thanos/pkg/extprom"
5555
extpromhttp "github.com/thanos-io/thanos/pkg/extprom/http"
5656
"github.com/thanos-io/thanos/pkg/logging"
57+
"github.com/thanos-io/thanos/pkg/logutil"
5758
"github.com/thanos-io/thanos/pkg/model"
5859
"github.com/thanos-io/thanos/pkg/prober"
5960
"github.com/thanos-io/thanos/pkg/promclient"
@@ -1233,7 +1234,7 @@ func registerBucketRewrite(app extkingpin.AppClause, objStoreConfig *extflag.Pat
12331234
if err != nil {
12341235
return errors.Wrapf(err, "read meta of %v", id)
12351236
}
1236-
b, err := tsdb.OpenBlock(logger, filepath.Join(tbc.tmpDir, id.String()), chunkPool)
1237+
b, err := tsdb.OpenBlock(logutil.GoKitLogToSlog(logger), filepath.Join(tbc.tmpDir, id.String()), chunkPool, nil)
12371238
if err != nil {
12381239
return errors.Wrapf(err, "open block %v", id)
12391240
}

go.mod

Lines changed: 46 additions & 44 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ require (
77
cloud.google.com/go/trace v1.10.12
88
github.com/GoogleCloudPlatform/opentelemetry-operations-go/exporter/trace v1.8.3
99
github.com/KimMachineGun/automemlimit v0.6.1
10-
github.com/alecthomas/units v0.0.0-20240626203959-61d1e3462e30
10+
github.com/alecthomas/units v0.0.0-20240927000941-0f3dac36c52b
1111
github.com/alicebob/miniredis/v2 v2.22.0
1212
github.com/blang/semver/v4 v4.0.0
1313
github.com/bradfitz/gomemcache v0.0.0-20190913173617-a41fca850d0b
@@ -25,7 +25,7 @@ require (
2525
github.com/fatih/structtag v1.2.0
2626
github.com/felixge/fgprof v0.9.5
2727
github.com/fortytw2/leaktest v1.3.0
28-
github.com/fsnotify/fsnotify v1.7.0
28+
github.com/fsnotify/fsnotify v1.8.0
2929
github.com/go-kit/log v0.2.1
3030
github.com/go-openapi/strfmt v0.23.0
3131
github.com/gogo/protobuf v1.3.2
@@ -60,66 +60,66 @@ require (
6060
github.com/prometheus/alertmanager v0.27.0
6161
github.com/prometheus/client_golang v1.20.5
6262
github.com/prometheus/client_model v0.6.1
63-
github.com/prometheus/common v0.60.0
64-
github.com/prometheus/exporter-toolkit v0.12.0
65-
// Prometheus maps version 2.x.y to tags v0.x.y.
66-
github.com/prometheus/prometheus v0.55.1-0.20241102120812-a6fd22b9d2c8
63+
github.com/prometheus/common v0.61.0
64+
github.com/prometheus/exporter-toolkit v0.13.2
65+
// Prometheus maps version 3.x.y to tags v0.30x.y.
66+
github.com/prometheus/prometheus v0.301.0
6767
github.com/redis/rueidis v1.0.45-alpha.1
6868
github.com/seiflotfy/cuckoofilter v0.0.0-20240715131351-a2f2c23f1771
6969
github.com/sony/gobreaker v0.5.0
70-
github.com/stretchr/testify v1.9.0
70+
github.com/stretchr/testify v1.10.0
7171
github.com/thanos-io/objstore v0.0.0-20241111205755-d1dd89d41f97
72-
github.com/thanos-io/promql-engine v0.0.0-20241217103156-9dbff30059cf
72+
github.com/thanos-io/promql-engine v0.0.0-20250211181629-815830ca3e2e
7373
github.com/uber/jaeger-client-go v2.30.0+incompatible
7474
github.com/vimeo/galaxycache v0.0.0-20210323154928-b7e5d71c067a
7575
github.com/weaveworks/common v0.0.0-20230728070032-dd9e68f319d5
7676
go.elastic.co/apm v1.15.0
7777
go.elastic.co/apm/module/apmot v1.15.0
7878
go.opentelemetry.io/contrib/propagators/autoprop v0.54.0
7979
go.opentelemetry.io/contrib/samplers/jaegerremote v0.23.0
80-
go.opentelemetry.io/otel v1.31.0
80+
go.opentelemetry.io/otel v1.33.0
8181
go.opentelemetry.io/otel/bridge/opentracing v1.31.0
8282
go.opentelemetry.io/otel/exporters/jaeger v1.16.0
83-
go.opentelemetry.io/otel/exporters/otlp/otlptrace v1.29.0
84-
go.opentelemetry.io/otel/exporters/otlp/otlptrace/otlptracegrpc v1.29.0
85-
go.opentelemetry.io/otel/exporters/otlp/otlptrace/otlptracehttp v1.29.0
86-
go.opentelemetry.io/otel/sdk v1.29.0
87-
go.opentelemetry.io/otel/trace v1.31.0
83+
go.opentelemetry.io/otel/exporters/otlp/otlptrace v1.33.0
84+
go.opentelemetry.io/otel/exporters/otlp/otlptrace/otlptracegrpc v1.33.0
85+
go.opentelemetry.io/otel/exporters/otlp/otlptrace/otlptracehttp v1.33.0
86+
go.opentelemetry.io/otel/sdk v1.33.0
87+
go.opentelemetry.io/otel/trace v1.33.0
8888
go.uber.org/atomic v1.11.0
89-
go.uber.org/automaxprocs v1.5.3
89+
go.uber.org/automaxprocs v1.6.0
9090
go.uber.org/goleak v1.3.0
9191
go4.org/intern v0.0.0-20230525184215-6c62f75575cb
9292
golang.org/x/crypto v0.31.0
9393
golang.org/x/net v0.33.0
9494
golang.org/x/sync v0.10.0
9595
golang.org/x/text v0.21.0
96-
golang.org/x/time v0.7.0
97-
google.golang.org/grpc v1.66.0
96+
golang.org/x/time v0.8.0
97+
google.golang.org/grpc v1.69.0
9898
google.golang.org/grpc/examples v0.0.0-20211119005141-f45e61797429
99-
google.golang.org/protobuf v1.35.1
99+
google.golang.org/protobuf v1.36.0
100100
gopkg.in/alecthomas/kingpin.v2 v2.2.6
101101
gopkg.in/yaml.v2 v2.4.0
102102
gopkg.in/yaml.v3 v3.0.1
103103
)
104104

105105
require (
106106
cloud.google.com/go v0.115.1 // indirect
107-
cloud.google.com/go/auth v0.9.3 // indirect
108-
cloud.google.com/go/auth/oauth2adapt v0.2.4 // indirect
109-
cloud.google.com/go/compute/metadata v0.5.0 // indirect
107+
cloud.google.com/go/auth v0.13.0 // indirect
108+
cloud.google.com/go/auth/oauth2adapt v0.2.6 // indirect
109+
cloud.google.com/go/compute/metadata v0.6.0 // indirect
110110
cloud.google.com/go/iam v1.1.13 // indirect
111111
cloud.google.com/go/storage v1.43.0 // indirect
112-
github.com/Azure/azure-sdk-for-go/sdk/azcore v1.14.0 // indirect
113-
github.com/Azure/azure-sdk-for-go/sdk/azidentity v1.7.0 // indirect
112+
github.com/Azure/azure-sdk-for-go/sdk/azcore v1.16.0 // indirect
113+
github.com/Azure/azure-sdk-for-go/sdk/azidentity v1.8.0 // indirect
114114
github.com/Azure/azure-sdk-for-go/sdk/internal v1.10.0 // indirect
115115
github.com/Azure/azure-sdk-for-go/sdk/storage/azblob v1.3.0 // indirect
116116
github.com/AzureAD/microsoft-authentication-library-for-go v1.2.2 // indirect
117117
)
118118

119119
require (
120120
github.com/tjhop/slog-gokit v0.1.2
121-
go.opentelemetry.io/collector/pdata v1.14.1
122-
go.opentelemetry.io/collector/semconv v0.108.1
121+
go.opentelemetry.io/collector/pdata v1.22.0
122+
go.opentelemetry.io/collector/semconv v0.116.0
123123
)
124124

125125
require github.com/dgryski/go-metro v0.0.0-20200812162917-85c65e2d0165 // indirect
@@ -149,14 +149,14 @@ require (
149149
github.com/pbnjay/memory v0.0.0-20210728143218-7b4eea64cf58 // indirect
150150
github.com/sercand/kuberesolver/v4 v4.0.0 // indirect
151151
github.com/zhangyunhao116/umap v0.0.0-20221211160557-cb7705fafa39 // indirect
152-
go.opentelemetry.io/contrib/instrumentation/google.golang.org/grpc/otelgrpc v0.49.0 // indirect
152+
go.opentelemetry.io/contrib/instrumentation/google.golang.org/grpc/otelgrpc v0.54.0 // indirect
153153
go.opentelemetry.io/contrib/propagators/ot v1.29.0 // indirect
154154
go4.org/unsafe/assume-no-moving-gc v0.0.0-20230525183740-e7c30c78aeb2 // indirect
155155
golang.org/x/lint v0.0.0-20210508222113-6edffad5e616 // indirect
156-
google.golang.org/genproto/googleapis/api v0.0.0-20240827150818-7e3bb234dfed // indirect
157-
google.golang.org/genproto/googleapis/rpc v0.0.0-20240903143218-8af14fe29dc1 // indirect
158-
k8s.io/apimachinery v0.31.1 // indirect
159-
k8s.io/client-go v0.31.0 // indirect
156+
google.golang.org/genproto/googleapis/api v0.0.0-20241216192217-9240e9c98484 // indirect
157+
google.golang.org/genproto/googleapis/rpc v0.0.0-20241209162323-e6fa225c2576 // indirect
158+
k8s.io/apimachinery v0.31.3 // indirect
159+
k8s.io/client-go v0.31.3 // indirect
160160
k8s.io/klog/v2 v2.130.1 // indirect
161161
k8s.io/utils v0.0.0-20240711033017-18e509b52bc8 // indirect
162162
zenhack.net/go/util v0.0.0-20230414204917-531d38494cf5 // indirect
@@ -189,7 +189,7 @@ require (
189189
github.com/coreos/go-systemd/v22 v22.5.0 // indirect
190190
github.com/davecgh/go-spew v1.1.2-0.20180830191138-d8f796af33cc // indirect
191191
github.com/dennwc/varint v1.0.0 // indirect
192-
github.com/edsrzf/mmap-go v1.1.0 // indirect
192+
github.com/edsrzf/mmap-go v1.2.0 // indirect
193193
github.com/elastic/go-sysinfo v1.8.1 // indirect
194194
github.com/elastic/go-windows v1.0.1 // indirect
195195
github.com/felixge/httpsnoop v1.0.4 // indirect
@@ -199,24 +199,24 @@ require (
199199
github.com/go-ole/go-ole v1.2.6 // indirect
200200
github.com/go-openapi/analysis v0.22.2 // indirect
201201
github.com/go-openapi/errors v0.22.0 // indirect
202-
github.com/go-openapi/jsonpointer v0.20.2 // indirect
202+
github.com/go-openapi/jsonpointer v0.21.0 // indirect
203203
github.com/go-openapi/jsonreference v0.20.4 // indirect
204204
github.com/go-openapi/loads v0.21.5 // indirect
205205
github.com/go-openapi/spec v0.20.14 // indirect
206-
github.com/go-openapi/swag v0.22.9 // indirect
206+
github.com/go-openapi/swag v0.23.0 // indirect
207207
github.com/go-openapi/validate v0.23.0 // indirect
208208
github.com/gobwas/httphead v0.1.0 // indirect
209209
github.com/gobwas/pool v0.2.1 // indirect
210210
github.com/gobwas/ws v1.2.1 // indirect
211211
github.com/gofrs/flock v0.8.1 // indirect
212212
github.com/gogo/googleapis v1.4.0 // indirect
213213
github.com/google/go-querystring v1.1.0 // indirect
214-
github.com/google/pprof v0.0.0-20240827171923-fa2c70bbbfe5 // indirect
214+
github.com/google/pprof v0.0.0-20241210010833-40e02aabc2ad // indirect
215215
github.com/googleapis/enterprise-certificate-proxy v0.3.4 // indirect
216-
github.com/googleapis/gax-go/v2 v2.13.0 // indirect
216+
github.com/googleapis/gax-go/v2 v2.14.0 // indirect
217217
github.com/gorilla/mux v1.8.0 // indirect
218218
github.com/grafana/regexp v0.0.0-20240518133315-a468a5bfb3bc // indirect
219-
github.com/grpc-ecosystem/grpc-gateway/v2 v2.22.0 // indirect
219+
github.com/grpc-ecosystem/grpc-gateway/v2 v2.24.0 // indirect
220220
github.com/jmespath/go-jmespath v0.4.0 // indirect
221221
github.com/joeshaw/multierror v0.0.0-20140124173710-69b34d4ec901 // indirect
222222
github.com/josharian/intern v1.0.0 // indirect
@@ -240,8 +240,8 @@ require (
240240
github.com/pkg/browser v0.0.0-20240102092130-5ac0b6a4141c // indirect
241241
github.com/pmezard/go-difflib v1.0.1-0.20181226105442-5d4384ee4fb2 // indirect
242242
github.com/power-devops/perfstat v0.0.0-20210106213030-5aafc221ea8c // indirect
243-
github.com/prometheus/common/sigv4 v0.1.0 // indirect
244243
github.com/prometheus/procfs v0.15.1 // indirect
244+
github.com/prometheus/sigv4 v0.1.0 // indirect
245245
github.com/rivo/uniseg v0.2.0 // indirect
246246
github.com/rs/xid v1.6.0 // indirect
247247
github.com/santhosh-tekuri/jsonschema v1.2.4 // indirect
@@ -259,20 +259,22 @@ require (
259259
go.elastic.co/fastjson v1.1.0 // indirect
260260
go.mongodb.org/mongo-driver v1.14.0 // indirect
261261
go.opencensus.io v0.24.0 // indirect
262-
go.opentelemetry.io/contrib/instrumentation/net/http/otelhttp v0.53.0 // indirect
262+
go.opentelemetry.io/auto/sdk v1.1.0 // indirect
263+
go.opentelemetry.io/contrib/instrumentation/net/http/httptrace/otelhttptrace v0.58.0 // indirect
264+
go.opentelemetry.io/contrib/instrumentation/net/http/otelhttp v0.58.0 // indirect
263265
go.opentelemetry.io/contrib/propagators/aws v1.29.0 // indirect
264266
go.opentelemetry.io/contrib/propagators/b3 v1.29.0 // indirect
265267
go.opentelemetry.io/contrib/propagators/jaeger v1.29.0 // indirect
266-
go.opentelemetry.io/otel/metric v1.31.0 // indirect
267-
go.opentelemetry.io/proto/otlp v1.3.1 // indirect
268+
go.opentelemetry.io/otel/metric v1.33.0 // indirect
269+
go.opentelemetry.io/proto/otlp v1.4.0 // indirect
268270
go.uber.org/multierr v1.11.0 // indirect
269271
golang.org/x/exp v0.0.0-20240613232115-7f521ea00fb8 // indirect
270-
golang.org/x/mod v0.21.0 // indirect
271-
golang.org/x/oauth2 v0.23.0 // indirect
272+
golang.org/x/mod v0.22.0 // indirect
273+
golang.org/x/oauth2 v0.24.0 // indirect
272274
golang.org/x/sys v0.28.0 // indirect
273-
golang.org/x/tools v0.24.0 // indirect
275+
golang.org/x/tools v0.28.0 // indirect
274276
gonum.org/v1/gonum v0.15.0 // indirect
275-
google.golang.org/api v0.195.0 // indirect
277+
google.golang.org/api v0.213.0 // indirect
276278
google.golang.org/genproto v0.0.0-20240823204242-4ba0660f739c // indirect
277279
howett.net/plist v0.0.0-20181124034731-591f970eefbb // indirect
278280
)

0 commit comments

Comments
 (0)