Skip to content

Commit aa03c41

Browse files
geroplona-agent
andcommitted
Bump google.golang.org/grpc v1.69.4 -> v1.79.3
Also upgrades transitive dependencies: - go.opentelemetry.io/contrib/instrumentation/google.golang.org/grpc/otelgrpc v0.56.0 -> v0.66.0 - go.opentelemetry.io/otel v1.31.0 -> v1.41.0 - google.golang.org/protobuf v1.35.2 -> v1.36.11 - golang.org/x/net v0.33.0 -> v0.50.0 - golang.org/x/crypto v0.31.0 -> v0.48.0 Co-authored-by: Ona <no-reply@ona.com>
1 parent 31e5984 commit aa03c41

567 files changed

Lines changed: 73891 additions & 61522 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

.devcontainer/Dockerfile

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
FROM mcr.microsoft.com/devcontainers/base:ubuntu-24.04
2+
3+
# use this Dockerfile to install additional tools you might need, e.g.
4+
# RUN apt-get update && export DEBIAN_FRONTEND=noninteractive \
5+
# && apt-get -y install --no-install-recommends <your-package-list-here>

.devcontainer/devcontainer.json

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
// The Dev Container format allows you to configure your environment. At the heart of it
2+
// is a Docker image or Dockerfile which controls the tools available in your environment.
3+
//
4+
// See https://aka.ms/devcontainer.json for more information.
5+
{
6+
"name": "Ona",
7+
// Use "image": "mcr.microsoft.com/devcontainers/base:ubuntu-24.04",
8+
// instead of the build to use a pre-built image.
9+
"build": {
10+
"context": ".",
11+
"dockerfile": "Dockerfile"
12+
}
13+
// Features add additional features to your environment. See https://containers.dev/features
14+
// Beware: features are not supported on all platforms and may have unintended side-effects.
15+
// "features": {
16+
// "ghcr.io/devcontainers/features/docker-in-docker": {
17+
// "moby": false
18+
// }
19+
// }
20+
}

go.mod

Lines changed: 23 additions & 20 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,8 @@
11
module github.com/moby/buildkit
22

3-
go 1.22.0
3+
go 1.24.0
4+
5+
toolchain go1.24.4
46

57
require (
68
github.com/Azure/azure-sdk-for-go/sdk/azcore v1.16.0
@@ -38,7 +40,7 @@ require (
3840
github.com/docker/go-units v0.5.0
3941
github.com/gofrs/flock v0.12.1
4042
github.com/golang/protobuf v1.5.4
41-
github.com/google/go-cmp v0.6.0
43+
github.com/google/go-cmp v0.7.0
4244
github.com/google/shlex v0.0.0-20191202100458-e7afc7fbc510
4345
github.com/hashicorp/go-cleanhttp v0.5.2
4446
github.com/hashicorp/go-immutable-radix/v2 v2.1.0
@@ -70,7 +72,7 @@ require (
7072
github.com/serialx/hashring v0.0.0-20200727003509-22c0c7ab6b1b
7173
github.com/sirupsen/logrus v1.9.3
7274
github.com/spdx/tools-golang v0.5.3
73-
github.com/stretchr/testify v1.10.0
75+
github.com/stretchr/testify v1.11.1
7476
github.com/tonistiigi/dchapes-mode v0.0.0-20241001053921-ca0759fec205
7577
github.com/tonistiigi/fsutil v0.0.0-20250113203817-b14e27f4135a
7678
github.com/tonistiigi/go-actions-cache v0.0.0-20250228231703-3e9a6642607f
@@ -81,32 +83,32 @@ require (
8183
github.com/urfave/cli v1.22.16
8284
github.com/vishvananda/netlink v1.3.1-0.20240922070040-084abd93d350
8385
go.etcd.io/bbolt v1.3.11
84-
go.opentelemetry.io/contrib/instrumentation/google.golang.org/grpc/otelgrpc v0.56.0
86+
go.opentelemetry.io/contrib/instrumentation/google.golang.org/grpc/otelgrpc v0.66.0
8587
go.opentelemetry.io/contrib/instrumentation/net/http/httptrace/otelhttptrace v0.56.0
8688
go.opentelemetry.io/contrib/instrumentation/net/http/otelhttp v0.56.0
87-
go.opentelemetry.io/otel v1.31.0
89+
go.opentelemetry.io/otel v1.41.0
8890
go.opentelemetry.io/otel/exporters/jaeger v1.17.0
8991
go.opentelemetry.io/otel/exporters/otlp/otlpmetric/otlpmetricgrpc v1.31.0
9092
go.opentelemetry.io/otel/exporters/otlp/otlpmetric/otlpmetrichttp v1.31.0
9193
go.opentelemetry.io/otel/exporters/otlp/otlptrace v1.31.0
9294
go.opentelemetry.io/otel/exporters/otlp/otlptrace/otlptracegrpc v1.31.0
9395
go.opentelemetry.io/otel/exporters/otlp/otlptrace/otlptracehttp v1.31.0
9496
go.opentelemetry.io/otel/exporters/prometheus v0.42.0
95-
go.opentelemetry.io/otel/sdk v1.31.0
96-
go.opentelemetry.io/otel/sdk/metric v1.31.0
97-
go.opentelemetry.io/otel/trace v1.31.0
97+
go.opentelemetry.io/otel/sdk v1.41.0
98+
go.opentelemetry.io/otel/sdk/metric v1.41.0
99+
go.opentelemetry.io/otel/trace v1.41.0
98100
go.opentelemetry.io/proto/otlp v1.3.1
99-
golang.org/x/crypto v0.31.0
101+
golang.org/x/crypto v0.48.0
100102
golang.org/x/exp v0.0.0-20241108190413-2d47ceb2692f
101-
golang.org/x/mod v0.22.0
102-
golang.org/x/net v0.33.0
103-
golang.org/x/sync v0.10.0
104-
golang.org/x/sys v0.29.0
103+
golang.org/x/mod v0.32.0
104+
golang.org/x/net v0.50.0
105+
golang.org/x/sync v0.19.0
106+
golang.org/x/sys v0.41.0
105107
golang.org/x/time v0.6.0
106-
google.golang.org/genproto/googleapis/rpc v0.0.0-20241021214115-324edc3d5d38
107-
google.golang.org/grpc v1.69.4
108+
google.golang.org/genproto/googleapis/rpc v0.0.0-20260209200024-4cfbd4190f57
109+
google.golang.org/grpc v1.79.3
108110
google.golang.org/grpc/cmd/protoc-gen-go-grpc v1.5.1
109-
google.golang.org/protobuf v1.35.2
111+
google.golang.org/protobuf v1.36.11
110112
kernel.org/pub/linux/libs/security/libcap/cap v1.2.73
111113
tags.cncf.io/container-device-interface v0.8.1
112114
)
@@ -148,7 +150,7 @@ require (
148150
github.com/felixge/fgprof v0.9.3 // indirect
149151
github.com/felixge/httpsnoop v1.0.4 // indirect
150152
github.com/fsnotify/fsnotify v1.7.0 // indirect
151-
github.com/go-logr/logr v1.4.2 // indirect
153+
github.com/go-logr/logr v1.4.3 // indirect
152154
github.com/go-logr/stdr v1.2.2 // indirect
153155
github.com/gogo/protobuf v1.3.2 // indirect
154156
github.com/golang-jwt/jwt/v5 v5.2.1 // indirect
@@ -178,9 +180,10 @@ require (
178180
github.com/vbatts/tar-split v0.11.6 // indirect
179181
github.com/vishvananda/netns v0.0.5 // indirect
180182
go.opencensus.io v0.24.0 // indirect
181-
go.opentelemetry.io/otel/metric v1.31.0 // indirect
182-
golang.org/x/text v0.21.0 // indirect
183-
google.golang.org/genproto/googleapis/api v0.0.0-20241021214115-324edc3d5d38 // indirect
183+
go.opentelemetry.io/auto/sdk v1.2.1 // indirect
184+
go.opentelemetry.io/otel/metric v1.41.0 // indirect
185+
golang.org/x/text v0.34.0 // indirect
186+
google.golang.org/genproto/googleapis/api v0.0.0-20251202230838-ff82c1b0f217 // indirect
184187
gopkg.in/yaml.v3 v3.0.1 // indirect
185188
kernel.org/pub/linux/libs/security/libcap/psx v1.2.73 // indirect
186189
sigs.k8s.io/yaml v1.4.0 // indirect

0 commit comments

Comments
 (0)