Skip to content

Commit 493a57f

Browse files
authored
Upgrade Buildbarn components 2024-11-18 (#154)
1 parent 1e3b782 commit 493a57f

12 files changed

+465
-7782
lines changed

MODULE.bazel

+24-15
Original file line numberDiff line numberDiff line change
@@ -1,29 +1,31 @@
11
module(name = "com_github_buildbarn_bb_deployments")
22

33
bazel_dep(name = "abseil-cpp", version = "20240116.2")
4-
bazel_dep(name = "aspect_bazel_lib", version = "2.8.1")
5-
bazel_dep(name = "aspect_rules_js", version = "2.0.1")
6-
bazel_dep(name = "bazel_remote_apis", version = "0.0.0")
4+
bazel_dep(name = "aspect_bazel_lib", version = "2.9.4")
5+
bazel_dep(name = "aspect_rules_js", version = "2.1.0")
6+
bazel_dep(name = "bazel_remote_apis", version = "0")
77
bazel_dep(name = "com_github_buildbarn_bb_browser")
88
bazel_dep(name = "com_github_buildbarn_bb_remote_execution")
99
bazel_dep(name = "com_github_buildbarn_bb_storage")
1010
bazel_dep(name = "com_github_buildbarn_go_xdr")
11-
bazel_dep(name = "gazelle", version = "0.38.0")
12-
bazel_dep(name = "googleapis", version = "0.0.0-20240326-1c8d509c5")
11+
bazel_dep(name = "gazelle", version = "0.40.0")
12+
bazel_dep(name = "googleapis", version = "0.0.0-20240819-fe8ba054a")
1313
bazel_dep(name = "googletest", version = "1.14.0.bcr.1")
1414
bazel_dep(name = "jsonnet_go", version = "0.20.0")
1515
bazel_dep(name = "opentelemetry-proto", version = "1.3.2")
16-
bazel_dep(name = "protobuf", version = "27.3")
16+
bazel_dep(name = "protobuf", version = "28.3")
1717
bazel_dep(name = "remote_config_cc")
1818
bazel_dep(name = "rules_antlr")
1919
bazel_dep(name = "rules_cc", version = "0.0.9")
20-
bazel_dep(name = "rules_go", version = "0.50.0")
20+
bazel_dep(name = "rules_go", version = "0.50.1")
2121
bazel_dep(name = "rules_jsonnet", version = "0.6.0")
22-
bazel_dep(name = "rules_oci", version = "1.8.0")
22+
bazel_dep(name = "rules_oci", version = "2.0.1")
2323
bazel_dep(name = "rules_pkg", version = "1.0.1")
24+
25+
# NB 2024-11-18: rules_proto is 7.0.2 in bb-storage, but held back to be compatible with bb-remote-execution.
2426
bazel_dep(name = "rules_proto", version = "6.0.2")
25-
bazel_dep(name = "toolchains_llvm", version = "1.1.2")
26-
bazel_dep(name = "toolchains_protoc", version = "0.3.1")
27+
bazel_dep(name = "toolchains_llvm", version = "1.2.0")
28+
bazel_dep(name = "toolchains_protoc", version = "0.3.4")
2729

2830
# # Workarounds 2026-06-27
2931
# ERROR: in tag at https://bcr.bazel.build/modules/grpc-java/1.62.2/MODULE.bazel:89:15: no repository visible as '@com_google_protobuf_javalite' to the repository '@@grpc-java~', but referenced by label '@com_google_protobuf_javalite//:protobuf_javalite' in attribute 'target' of tag 'override'. Is the module 'grpc-java' missing a bazel_dep or use_repo(..., "com_google_protobuf_javalite")?
@@ -75,8 +77,8 @@ local_path_override(
7577

7678
git_override(
7779
module_name = "bazel_remote_apis",
78-
# commit = "de1d77b12feb81f96909f0410991c3c966d9d8e7", # bb-storage
79-
commit = "a6328f5026d3b2ae27bd8efd86a0f1057ccab361", # bb-remote-execution
80+
commit = "253013303c9e1d52ebdeb5a3f0f869919e882f20", # bb-storage
81+
# commit = "a6328f5026d3b2ae27bd8efd86a0f1057ccab361", # bb-remote-execution
8082
remote = "https://github.com/bazelbuild/remote-apis.git",
8183
)
8284

@@ -88,13 +90,13 @@ git_override(
8890

8991
git_override(
9092
module_name = "com_github_buildbarn_bb_remote_execution",
91-
commit = "2c788ba32d1e2d5416002db8a361556eb02de469",
93+
commit = "8a43a7749390a8253a1cf17bae37cc2fe8617dad",
9294
remote = "https://github.com/buildbarn/bb-remote-execution.git",
9395
)
9496

9597
git_override(
9698
module_name = "com_github_buildbarn_bb_storage",
97-
commit = "0941111f29e31905e4081e6262bccf0c123940ed",
99+
commit = "9cc3bc2af044eab9a9e11c9f461b0c1e7fc992f2",
98100
remote = "https://github.com/buildbarn/bb-storage.git",
99101
)
100102

@@ -121,7 +123,7 @@ git_override(
121123
)
122124

123125
go_sdk = use_extension("@rules_go//go:extensions.bzl", "go_sdk")
124-
go_sdk.download(version = "1.23.0")
126+
go_sdk.download(version = "1.23.3")
125127

126128
go_deps = use_extension("@gazelle//:extensions.bzl", "go_deps")
127129
go_deps.from_file(go_mod = "//:go.mod")
@@ -167,6 +169,13 @@ go_deps_dev.module_override(
167169
path = "github.com/hanwen/go-fuse/v2",
168170
)
169171

172+
# NB 2024-11-18: Solve issues with BUILD file paths in xds.
173+
# https://github.com/cncf/xds/issues/104
174+
go_deps_dev.gazelle_override(
175+
build_file_generation = "on",
176+
path = "github.com/cncf/xds/go",
177+
)
178+
170179
cc_configure = use_extension("@bazel_tools//tools/cpp:cc_configure.bzl", "cc_configure_extension")
171180
use_repo(cc_configure, "local_config_cc_toolchains")
172181

MODULE.bazel.lock

+247-215
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

README.md

+3-3
Original file line numberDiff line numberDiff line change
@@ -35,8 +35,8 @@ at the top right in the GitHub Actions page.
3535
| Repository | Container images and binaries |
3636
| ---------- | ----------------------------- |
3737
| [bb-browser](https://github.com/buildbarn/bb-browser) [`af89e4bc66`](https://github.com/buildbarn/bb-browser/commits/af89e4bc66f01ec022f8473a0068b8b6866662e2)<br/>2023-09-17 04:20:39 UTC | [ghcr.io/buildbarn/bb-browser:20240930T111151Z-af89e4b](https://ghcr.io/buildbarn/bb-browser:20240930T111151Z-af89e4b)<br/>[CI artifacts](https://github.com/buildbarn/bb-browser/actions/runs/11104924905) |
38-
| [bb-remote-execution](https://github.com/buildbarn/bb-remote-execution) [`2c788ba32d`](https://github.com/buildbarn/bb-remote-execution/commits/2c788ba32d1e2d5416002db8a361556eb02de469)<br/>2023-10-04 10:23:25 UTC | [ghcr.io/buildbarn/bb-runner-installer:20241010T174523Z-2c788ba](https://ghcr.io/buildbarn/bb-runner-installer:20241010T174523Z-2c788ba)<br/>[ghcr.io/buildbarn/bb-scheduler:20241010T174523Z-2c788ba](https://ghcr.io/buildbarn/bb-scheduler:20241010T174523Z-2c788ba)<br/>[ghcr.io/buildbarn/bb-worker:20241010T174523Z-2c788ba](https://ghcr.io/buildbarn/bb-worker:20241010T174523Z-2c788ba)<br/>[CI artifacts](https://github.com/buildbarn/bb-remote-execution/actions/runs/11279270098) |
39-
| [bb-storage](https://github.com/buildbarn/bb-storage) [`0941111f29`](https://github.com/buildbarn/bb-storage/commits/0941111f29e31905e4081e6262bccf0c123940ed)<br/>2023-10-08 11:11:12 UTC | [ghcr.io/buildbarn/bb-storage:20241007T042721Z-0941111](https://ghcr.io/buildbarn/bb-storage:20241007T042721Z-0941111)<br/>[CI artifacts](https://github.com/buildbarn/bb-storage/actions/runs/11208671455) |
38+
| [bb-remote-execution](https://github.com/buildbarn/bb-remote-execution) [`8a43a77493`](https://github.com/buildbarn/bb-remote-execution/commits/8a43a7749390a8253a1cf17bae37cc2fe8617dad)<br/>2023-10-04 10:23:25 UTC | [ghcr.io/buildbarn/bb-runner-installer:20241030T155505Z-8a43a77](https://ghcr.io/buildbarn/bb-runner-installer:20241030T155505Z-8a43a77)<br/>[ghcr.io/buildbarn/bb-scheduler:20241030T155505Z-8a43a77](https://ghcr.io/buildbarn/bb-scheduler:20241030T155505Z-8a43a77)<br/>[ghcr.io/buildbarn/bb-worker:20241030T155505Z-8a43a77](https://ghcr.io/buildbarn/bb-worker:20241030T155505Z-8a43a77)<br/>[CI artifacts](https://github.com/buildbarn/bb-remote-execution/actions/runs/11596945646) |
39+
| [bb-storage](https://github.com/buildbarn/bb-storage) [`9cc3bc2af0`](https://github.com/buildbarn/bb-storage/commits/9cc3bc2af044eab9a9e11c9f461b0c1e7fc992f2)<br/>2023-10-08 11:11:12 UTC | [ghcr.io/buildbarn/bb-storage:20241117T113434Z-9cc3bc2](https://ghcr.io/buildbarn/bb-storage:20241117T113434Z-9cc3bc2)<br/>[CI artifacts](https://github.com/buildbarn/bb-storage/actions/runs/11878499223) |
4040

4141
## Changelog
4242

@@ -249,5 +249,5 @@ sed -i -e '1,4d' -e '$d' lockfile.patch
249249
sed -i -E 's/^.{29}//' lockfile.patch
250250
251251
git apply lockfile.patch
252-
git add lockfile.patch
252+
git add MODULE.bazel.lock
253253
```

changelog.md

+5
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,8 @@
1+
# 2024-11-12
2+
3+
* Double the number of KeyLocationMap attempts
4+
* Rename Grafana metric name "old_current_new" to "old_new_current"
5+
16
# 2024-10-24
27

38
* Use more dependencies through modules and avoid a few patches

docker-compose/docker-compose.yml

+7-7
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
version: '3'
22
services:
33
frontend:
4-
image: ghcr.io/buildbarn/bb-storage:20241007T042721Z-0941111
4+
image: ghcr.io/buildbarn/bb-storage:20241117T113434Z-9cc3bc2
55
command:
66
- /config/frontend.jsonnet
77
expose:
@@ -12,7 +12,7 @@ services:
1212
- ./config:/config
1313

1414
storage-0:
15-
image: ghcr.io/buildbarn/bb-storage:20241007T042721Z-0941111
15+
image: ghcr.io/buildbarn/bb-storage:20241117T113434Z-9cc3bc2
1616
command:
1717
- /config/storage.jsonnet
1818
expose:
@@ -24,7 +24,7 @@ services:
2424
- ./volumes/storage-cas-0:/storage-cas
2525

2626
storage-1:
27-
image: ghcr.io/buildbarn/bb-storage:20241007T042721Z-0941111
27+
image: ghcr.io/buildbarn/bb-storage:20241117T113434Z-9cc3bc2
2828
command:
2929
- /config/storage.jsonnet
3030
expose:
@@ -36,7 +36,7 @@ services:
3636
- ./volumes/storage-cas-1:/storage-cas
3737

3838
scheduler:
39-
image: ghcr.io/buildbarn/bb-scheduler:20241010T174523Z-2c788ba
39+
image: ghcr.io/buildbarn/bb-scheduler:20241030T155505Z-8a43a77
4040
command:
4141
- /config/scheduler.jsonnet
4242
expose:
@@ -63,13 +63,13 @@ services:
6363
- ./config:/config
6464

6565
runner-installer:
66-
image: ghcr.io/buildbarn/bb-runner-installer:20241010T174523Z-2c788ba
66+
image: ghcr.io/buildbarn/bb-runner-installer:20241030T155505Z-8a43a77
6767
volumes:
6868
- ./volumes/bb:/bb
6969

7070
# The FUSE worker is the most efficient configuration.
7171
worker-fuse-ubuntu22-04:
72-
image: ghcr.io/buildbarn/bb-worker:20241010T174523Z-2c788ba
72+
image: ghcr.io/buildbarn/bb-worker:20241030T155505Z-8a43a77
7373
command:
7474
- /config/worker-fuse-ubuntu22-04.jsonnet
7575
# Need to be privileged for the FUSE mounting to work.
@@ -105,7 +105,7 @@ services:
105105
# For situations where the more efficient FUSE worker is not supported,
106106
# the classic hardlinking example is shown here.
107107
worker-hardlinking-ubuntu22-04:
108-
image: ghcr.io/buildbarn/bb-worker:20241010T174523Z-2c788ba
108+
image: ghcr.io/buildbarn/bb-worker:20241030T155505Z-8a43a77
109109
command:
110110
- /config/worker-hardlinking-ubuntu22-04.jsonnet
111111
privileged: false

go.mod

+59-59
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ replace google.golang.org/protobuf => google.golang.org/protobuf v1.32.0
1515
replace go.opentelemetry.io/otel/trace v1.25.0 => go.opentelemetry.io/otel/trace v1.24.0
1616

1717
// Use the same version as bb-remote-execution.
18-
replace github.com/hanwen/go-fuse/v2 v2.6.2 => github.com/hanwen/go-fuse/v2 v2.5.1
18+
replace github.com/hanwen/go-fuse/v2 v2.6.4 => github.com/hanwen/go-fuse/v2 v2.5.1
1919

2020
// Use the same version as bb-storage.
2121
// Or we add a dep to cncf/xds, with build file errors: https://github.com/cncf/xds/issues/104
@@ -24,47 +24,47 @@ replace cloud.google.com/go/storage v1.45.0 => cloud.google.com/go/storage v1.43
2424
require (
2525
github.com/bazelbuild/rules_go v0.49.0
2626
github.com/buildbarn/bb-browser v0.0.0-20240930111151-af89e4bc66f0
27-
github.com/buildbarn/bb-remote-execution v0.0.0-20241010174523-2c788ba32d1e
28-
github.com/buildbarn/bb-storage v0.0.0-20241007042721-0941111f29e3
29-
golang.org/x/lint v0.0.0-20210508222113-6edffad5e616
27+
github.com/buildbarn/bb-remote-execution v0.0.0-20241030155505-8a43a7749390
28+
github.com/buildbarn/bb-storage v0.0.0-20241117113434-9cc3bc2af044
29+
golang.org/x/lint v0.0.0-20241112194109-818c5a804067
3030
mvdan.cc/gofumpt v0.7.0
3131
)
3232

3333
require (
3434
cel.dev/expr v0.18.0 // indirect
3535
cloud.google.com/go v0.116.0 // indirect
36-
cloud.google.com/go/auth v0.9.9 // indirect
37-
cloud.google.com/go/auth/oauth2adapt v0.2.4 // indirect
36+
cloud.google.com/go/auth v0.10.2 // indirect
37+
cloud.google.com/go/auth/oauth2adapt v0.2.5 // indirect
3838
cloud.google.com/go/compute/metadata v0.5.2 // indirect
3939
cloud.google.com/go/iam v1.2.2 // indirect
4040
cloud.google.com/go/longrunning v0.6.2 // indirect
4141
cloud.google.com/go/monitoring v1.21.2 // indirect
42-
cloud.google.com/go/storage v1.45.0 // indirect
42+
cloud.google.com/go/storage v1.47.0 // indirect
4343
git.sr.ht/~sbinet/gg v0.6.0 // indirect
44-
github.com/GoogleCloudPlatform/opentelemetry-operations-go/detectors/gcp v1.24.3 // indirect
45-
github.com/GoogleCloudPlatform/opentelemetry-operations-go/exporter/metric v0.48.3 // indirect
46-
github.com/GoogleCloudPlatform/opentelemetry-operations-go/internal/resourcemapping v0.48.3 // indirect
44+
github.com/GoogleCloudPlatform/opentelemetry-operations-go/detectors/gcp v1.25.0 // indirect
45+
github.com/GoogleCloudPlatform/opentelemetry-operations-go/exporter/metric v0.49.0 // indirect
46+
github.com/GoogleCloudPlatform/opentelemetry-operations-go/internal/resourcemapping v0.49.0 // indirect
4747
github.com/ajstarks/svgo v0.0.0-20211024235047-1546f124cd8b // indirect
4848
github.com/aohorodnyk/mimeheader v0.0.6 // indirect
49-
github.com/aws/aws-sdk-go-v2 v1.32.2 // indirect
49+
github.com/aws/aws-sdk-go-v2 v1.32.4 // indirect
5050
github.com/aws/aws-sdk-go-v2/aws/protocol/eventstream v1.6.6 // indirect
51-
github.com/aws/aws-sdk-go-v2/config v1.28.0 // indirect
52-
github.com/aws/aws-sdk-go-v2/credentials v1.17.41 // indirect
53-
github.com/aws/aws-sdk-go-v2/feature/ec2/imds v1.16.17 // indirect
54-
github.com/aws/aws-sdk-go-v2/internal/configsources v1.3.21 // indirect
55-
github.com/aws/aws-sdk-go-v2/internal/endpoints/v2 v2.6.21 // indirect
51+
github.com/aws/aws-sdk-go-v2/config v1.28.4 // indirect
52+
github.com/aws/aws-sdk-go-v2/credentials v1.17.45 // indirect
53+
github.com/aws/aws-sdk-go-v2/feature/ec2/imds v1.16.19 // indirect
54+
github.com/aws/aws-sdk-go-v2/internal/configsources v1.3.23 // indirect
55+
github.com/aws/aws-sdk-go-v2/internal/endpoints/v2 v2.6.23 // indirect
5656
github.com/aws/aws-sdk-go-v2/internal/ini v1.8.1 // indirect
57-
github.com/aws/aws-sdk-go-v2/internal/v4a v1.3.21 // indirect
57+
github.com/aws/aws-sdk-go-v2/internal/v4a v1.3.23 // indirect
5858
github.com/aws/aws-sdk-go-v2/service/internal/accept-encoding v1.12.0 // indirect
59-
github.com/aws/aws-sdk-go-v2/service/internal/checksum v1.4.2 // indirect
60-
github.com/aws/aws-sdk-go-v2/service/internal/presigned-url v1.12.2 // indirect
61-
github.com/aws/aws-sdk-go-v2/service/internal/s3shared v1.18.2 // indirect
62-
github.com/aws/aws-sdk-go-v2/service/s3 v1.66.0 // indirect
63-
github.com/aws/aws-sdk-go-v2/service/sso v1.24.2 // indirect
64-
github.com/aws/aws-sdk-go-v2/service/ssooidc v1.28.2 // indirect
65-
github.com/aws/aws-sdk-go-v2/service/sts v1.32.2 // indirect
66-
github.com/aws/smithy-go v1.22.0 // indirect
67-
github.com/bazelbuild/remote-apis v0.0.0-20240926071355-6777112ef7de // indirect
59+
github.com/aws/aws-sdk-go-v2/service/internal/checksum v1.4.4 // indirect
60+
github.com/aws/aws-sdk-go-v2/service/internal/presigned-url v1.12.4 // indirect
61+
github.com/aws/aws-sdk-go-v2/service/internal/s3shared v1.18.4 // indirect
62+
github.com/aws/aws-sdk-go-v2/service/s3 v1.67.0 // indirect
63+
github.com/aws/aws-sdk-go-v2/service/sso v1.24.5 // indirect
64+
github.com/aws/aws-sdk-go-v2/service/ssooidc v1.28.4 // indirect
65+
github.com/aws/aws-sdk-go-v2/service/sts v1.33.0 // indirect
66+
github.com/aws/smithy-go v1.22.1 // indirect
67+
github.com/bazelbuild/remote-apis v0.0.0-20241031050812-253013303c9e // indirect
6868
github.com/beorn7/perks v1.0.1 // indirect
6969
github.com/buildbarn/go-xdr v0.0.0-20240702182809-236788cf9e89 // indirect
7070
github.com/buildkite/terminal-to-html v3.2.0+incompatible // indirect
@@ -76,7 +76,7 @@ require (
7676
github.com/envoyproxy/go-control-plane v0.13.1 // indirect
7777
github.com/envoyproxy/protoc-gen-validate v1.1.0 // indirect
7878
github.com/felixge/httpsnoop v1.0.4 // indirect
79-
github.com/fsnotify/fsnotify v1.7.0 // indirect
79+
github.com/fsnotify/fsnotify v1.8.0 // indirect
8080
github.com/fxtlabs/primes v0.0.0-20150821004651-dad82d10a449 // indirect
8181
github.com/go-fonts/liberation v0.3.3 // indirect
8282
github.com/go-jose/go-jose/v3 v3.0.3 // indirect
@@ -92,12 +92,12 @@ require (
9292
github.com/google/s2a-go v0.1.8 // indirect
9393
github.com/google/uuid v1.6.0 // indirect
9494
github.com/googleapis/enterprise-certificate-proxy v0.3.4 // indirect
95-
github.com/googleapis/gax-go/v2 v2.13.0 // indirect
95+
github.com/googleapis/gax-go/v2 v2.14.0 // indirect
9696
github.com/gorilla/mux v1.8.1 // indirect
9797
github.com/grpc-ecosystem/go-grpc-middleware v1.4.0 // indirect
9898
github.com/grpc-ecosystem/go-grpc-prometheus v1.2.0 // indirect
99-
github.com/grpc-ecosystem/grpc-gateway/v2 v2.22.0 // indirect
100-
github.com/hanwen/go-fuse/v2 v2.6.2 // indirect
99+
github.com/grpc-ecosystem/grpc-gateway/v2 v2.23.0 // indirect
100+
github.com/hanwen/go-fuse/v2 v2.6.4 // indirect
101101
github.com/jmespath/go-jmespath v0.4.0 // indirect
102102
github.com/kballard/go-shellquote v0.0.0-20180428030007-95032a82bc51 // indirect
103103
github.com/klauspost/compress v1.17.11 // indirect
@@ -107,41 +107,41 @@ require (
107107
github.com/pmezard/go-difflib v1.0.0 // indirect
108108
github.com/prometheus/client_golang v1.20.5 // indirect
109109
github.com/prometheus/client_model v0.6.1 // indirect
110-
github.com/prometheus/common v0.60.0 // indirect
110+
github.com/prometheus/common v0.60.1 // indirect
111111
github.com/prometheus/procfs v0.15.1 // indirect
112112
github.com/sercand/kuberesolver/v5 v5.1.1 // indirect
113113
go.opencensus.io v0.24.0 // indirect
114-
go.opentelemetry.io/contrib/detectors/gcp v1.31.0 // indirect
115-
go.opentelemetry.io/contrib/instrumentation/google.golang.org/grpc/otelgrpc v0.56.0 // indirect
116-
go.opentelemetry.io/contrib/instrumentation/net/http/otelhttp v0.56.0 // indirect
117-
go.opentelemetry.io/contrib/propagators/b3 v1.31.0 // indirect
118-
go.opentelemetry.io/otel v1.31.0 // indirect
114+
go.opentelemetry.io/contrib/detectors/gcp v1.32.0 // indirect
115+
go.opentelemetry.io/contrib/instrumentation/google.golang.org/grpc/otelgrpc v0.57.0 // indirect
116+
go.opentelemetry.io/contrib/instrumentation/net/http/otelhttp v0.57.0 // indirect
117+
go.opentelemetry.io/contrib/propagators/b3 v1.32.0 // indirect
118+
go.opentelemetry.io/otel v1.32.0 // indirect
119119
go.opentelemetry.io/otel/exporters/jaeger v1.17.0 // indirect
120-
go.opentelemetry.io/otel/exporters/otlp/otlptrace v1.31.0 // indirect
121-
go.opentelemetry.io/otel/metric v1.31.0 // indirect
122-
go.opentelemetry.io/otel/sdk v1.31.0 // indirect
123-
go.opentelemetry.io/otel/sdk/metric v1.31.0 // indirect
124-
go.opentelemetry.io/otel/trace v1.31.0 // indirect
120+
go.opentelemetry.io/otel/exporters/otlp/otlptrace v1.32.0 // indirect
121+
go.opentelemetry.io/otel/metric v1.32.0 // indirect
122+
go.opentelemetry.io/otel/sdk v1.32.0 // indirect
123+
go.opentelemetry.io/otel/sdk/metric v1.32.0 // indirect
124+
go.opentelemetry.io/otel/trace v1.32.0 // indirect
125125
go.opentelemetry.io/proto/otlp v1.3.1 // indirect
126-
golang.org/x/crypto v0.28.0 // indirect
127-
golang.org/x/image v0.21.0 // indirect
128-
golang.org/x/mod v0.21.0 // indirect
129-
golang.org/x/net v0.30.0 // indirect
130-
golang.org/x/oauth2 v0.23.0 // indirect
131-
golang.org/x/sync v0.8.0 // indirect
132-
golang.org/x/sys v0.26.0 // indirect
133-
golang.org/x/text v0.19.0 // indirect
134-
golang.org/x/time v0.7.0 // indirect
135-
golang.org/x/tools v0.26.0 // indirect
126+
golang.org/x/crypto v0.29.0 // indirect
127+
golang.org/x/image v0.22.0 // indirect
128+
golang.org/x/mod v0.22.0 // indirect
129+
golang.org/x/net v0.31.0 // indirect
130+
golang.org/x/oauth2 v0.24.0 // indirect
131+
golang.org/x/sync v0.9.0 // indirect
132+
golang.org/x/sys v0.27.0 // indirect
133+
golang.org/x/text v0.20.0 // indirect
134+
golang.org/x/time v0.8.0 // indirect
135+
golang.org/x/tools v0.27.0 // indirect
136136
gonum.org/v1/plot v0.15.0 // indirect
137-
google.golang.org/api v0.203.0 // indirect
138-
google.golang.org/genproto v0.0.0-20241021214115-324edc3d5d38 // indirect
139-
google.golang.org/genproto/googleapis/api v0.0.0-20241021214115-324edc3d5d38 // indirect
140-
google.golang.org/genproto/googleapis/bytestream v0.0.0-20241021214115-324edc3d5d38 // indirect
141-
google.golang.org/genproto/googleapis/rpc v0.0.0-20241021214115-324edc3d5d38 // indirect
142-
google.golang.org/grpc v1.67.1 // indirect
137+
google.golang.org/api v0.206.0 // indirect
138+
google.golang.org/genproto v0.0.0-20241113202542-65e8d215514f // indirect
139+
google.golang.org/genproto/googleapis/api v0.0.0-20241113202542-65e8d215514f // indirect
140+
google.golang.org/genproto/googleapis/bytestream v0.0.0-20241113202542-65e8d215514f // indirect
141+
google.golang.org/genproto/googleapis/rpc v0.0.0-20241113202542-65e8d215514f // indirect
142+
google.golang.org/grpc v1.68.0 // indirect
143143
google.golang.org/grpc/security/advancedtls v1.0.0 // indirect
144-
google.golang.org/grpc/stats/opentelemetry v0.0.0-20241023165937-8212cf037683 // indirect
145-
google.golang.org/protobuf v1.35.1 // indirect
144+
google.golang.org/grpc/stats/opentelemetry v0.0.0-20241028142157-ada6787961b3 // indirect
145+
google.golang.org/protobuf v1.35.2 // indirect
146146
sigs.k8s.io/yaml v1.4.0 // indirect
147147
)

0 commit comments

Comments
 (0)