Skip to content

Commit a9d6e1f

Browse files
authored
Merge pull request moby#3644 from AkihiroSuda/containerd-v1.7.0-beta.4
update containerd (v1.7.0-beta.4)
2 parents dbafcc8 + ef08cbe commit a9d6e1f

File tree

212 files changed

+8722
-2149
lines changed

Some content is hidden

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

212 files changed

+8722
-2149
lines changed

Dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
# syntax=docker/dockerfile-upstream:master
22

33
ARG RUNC_VERSION=v1.1.4
4-
ARG CONTAINERD_VERSION=v1.7.0-beta.3
4+
ARG CONTAINERD_VERSION=v1.7.0-beta.4
55
# containerd v1.6 for integration tests
6-
ARG CONTAINERD_ALT_VERSION_16=v1.6.16
6+
ARG CONTAINERD_ALT_VERSION_16=v1.6.18
77
ARG REGISTRY_VERSION=2.8.0
88
ARG ROOTLESSKIT_VERSION=v1.0.1
99
ARG CNI_VERSION=v1.2.0

cmd/buildkitd/main.go

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ import (
1414
"strings"
1515
"time"
1616

17-
"github.com/containerd/containerd/pkg/seed"
17+
"github.com/containerd/containerd/pkg/seed" //nolint:staticcheck // SA1019 deprecated
1818
"github.com/containerd/containerd/pkg/userns"
1919
"github.com/containerd/containerd/platforms"
2020
"github.com/containerd/containerd/remotes/docker"
@@ -73,6 +73,7 @@ func init() {
7373
apicaps.ExportedProduct = "buildkit"
7474
stack.SetVersionInfo(version.Version, version.Revision)
7575

76+
//nolint:staticcheck // SA1019 deprecated
7677
seed.WithTimeAndRand()
7778
if reexec.Init() {
7879
os.Exit(0)

frontend/gateway/pb/exit.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ package moby_buildkit_v1_frontend //nolint:revive
33
import (
44
"fmt"
55

6-
"github.com/containerd/typeurl"
6+
"github.com/containerd/typeurl/v2"
77
"github.com/moby/buildkit/util/grpcerrors"
88
)
99

go.mod

Lines changed: 21 additions & 21 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ require (
66
github.com/Azure/azure-sdk-for-go/sdk/azidentity v1.1.0
77
github.com/Azure/azure-sdk-for-go/sdk/storage/azblob v0.4.1
88
github.com/Microsoft/go-winio v0.6.0
9-
github.com/Microsoft/hcsshim v0.10.0-rc.4
9+
github.com/Microsoft/hcsshim v0.10.0-rc.5
1010
github.com/agext/levenshtein v1.2.3
1111
github.com/armon/circbuf v0.0.0-20190214190532-5111143e8da2
1212
github.com/aws/aws-sdk-go-v2/config v1.15.5
@@ -15,16 +15,16 @@ require (
1515
github.com/aws/aws-sdk-go-v2/service/s3 v1.26.9
1616
github.com/aws/smithy-go v1.11.2
1717
github.com/containerd/console v1.0.3
18-
github.com/containerd/containerd v1.7.0-beta.3
18+
github.com/containerd/containerd v1.7.0-beta.4
1919
github.com/containerd/continuity v0.3.0
2020
github.com/containerd/fuse-overlayfs-snapshotter v1.0.2
21-
github.com/containerd/go-cni v1.1.6
21+
github.com/containerd/go-cni v1.1.9-0.20230211172349-6603d5bd8941
2222
github.com/containerd/go-runc v1.0.0
2323
github.com/containerd/nydus-snapshotter v0.3.1
2424
github.com/containerd/stargz-snapshotter v0.14.1
2525
github.com/containerd/stargz-snapshotter/estargz v0.14.1
26-
github.com/containerd/typeurl v1.0.3-0.20220422153119-7f6e6d160d67
27-
github.com/coreos/go-systemd/v22 v22.4.0
26+
github.com/containerd/typeurl/v2 v2.1.0
27+
github.com/coreos/go-systemd/v22 v22.5.0
2828
github.com/docker/cli v23.0.0+incompatible
2929
github.com/docker/distribution v2.8.1+incompatible
3030
github.com/docker/docker v23.0.0+incompatible
@@ -66,26 +66,26 @@ require (
6666
github.com/tonistiigi/go-archvariant v1.0.0
6767
github.com/tonistiigi/units v0.0.0-20180711220420-6950e57a87ea
6868
github.com/tonistiigi/vt100 v0.0.0-20210615222946-8066bb97264f
69-
github.com/urfave/cli v1.22.10
69+
github.com/urfave/cli v1.22.12
7070
go.etcd.io/bbolt v1.3.6
7171
go.opentelemetry.io/contrib/instrumentation/google.golang.org/grpc/otelgrpc v0.37.0
7272
go.opentelemetry.io/contrib/instrumentation/net/http/httptrace/otelhttptrace v0.37.0
7373
go.opentelemetry.io/contrib/instrumentation/net/http/otelhttp v0.37.0
74-
go.opentelemetry.io/otel v1.11.2
74+
go.opentelemetry.io/otel v1.12.0
7575
go.opentelemetry.io/otel/exporters/jaeger v1.11.2
76-
go.opentelemetry.io/otel/exporters/otlp/otlptrace v1.11.2
77-
go.opentelemetry.io/otel/exporters/otlp/otlptrace/otlptracegrpc v1.11.2
78-
go.opentelemetry.io/otel/exporters/otlp/otlptrace/otlptracehttp v1.11.2
79-
go.opentelemetry.io/otel/sdk v1.11.2
80-
go.opentelemetry.io/otel/trace v1.11.2
76+
go.opentelemetry.io/otel/exporters/otlp/otlptrace v1.12.0
77+
go.opentelemetry.io/otel/exporters/otlp/otlptrace/otlptracegrpc v1.12.0
78+
go.opentelemetry.io/otel/exporters/otlp/otlptrace/otlptracehttp v1.12.0
79+
go.opentelemetry.io/otel/sdk v1.12.0
80+
go.opentelemetry.io/otel/trace v1.12.0
8181
go.opentelemetry.io/proto/otlp v0.19.0
8282
golang.org/x/crypto v0.2.0
8383
golang.org/x/net v0.5.0
8484
golang.org/x/sync v0.1.0
85-
golang.org/x/sys v0.4.0
85+
golang.org/x/sys v0.5.0
8686
golang.org/x/time v0.1.0
87-
google.golang.org/genproto v0.0.0-20221206210731-b1a01be3a5f6
88-
google.golang.org/grpc v1.52.1
87+
google.golang.org/genproto v0.0.0-20230131230820-1c016267d619
88+
google.golang.org/grpc v1.52.3
8989
google.golang.org/protobuf v1.28.1
9090
)
9191

@@ -112,10 +112,10 @@ require (
112112
github.com/beorn7/perks v1.0.1 // indirect
113113
github.com/cenkalti/backoff/v4 v4.2.0 // indirect
114114
github.com/cespare/xxhash/v2 v2.1.2 // indirect
115-
github.com/containerd/cgroups v1.0.5-0.20220816231112-7083cd60b721 // indirect
115+
github.com/containerd/cgroups v1.1.0 // indirect
116116
github.com/containerd/fifo v1.0.0 // indirect
117-
github.com/containerd/ttrpc v1.1.1-0.20220420014843-944ef4a40df3 // indirect
118-
github.com/containernetworking/cni v1.1.1 // indirect
117+
github.com/containerd/ttrpc v1.1.1-0.20230127163717-32fab2374638 // indirect
118+
github.com/containernetworking/cni v1.1.2 // indirect
119119
github.com/cpuguy83/go-md2man/v2 v2.0.2 // indirect
120120
github.com/cyphar/filepath-securejoin v0.2.3 // indirect
121121
github.com/davecgh/go-spew v1.1.1 // indirect
@@ -150,10 +150,10 @@ require (
150150
github.com/shibumi/go-pathspec v1.3.0 // indirect
151151
github.com/vbatts/tar-split v0.11.2 // indirect
152152
go.opencensus.io v0.24.0 // indirect
153-
go.opentelemetry.io/otel/exporters/otlp/internal/retry v1.11.2 // indirect
153+
go.opentelemetry.io/otel/exporters/otlp/internal/retry v1.12.0 // indirect
154154
go.opentelemetry.io/otel/metric v0.34.0 // indirect
155-
golang.org/x/mod v0.6.0 // indirect
155+
golang.org/x/mod v0.7.0 // indirect
156156
golang.org/x/text v0.6.0 // indirect
157-
golang.org/x/tools v0.2.0 // indirect
157+
golang.org/x/tools v0.5.0 // indirect
158158
gopkg.in/yaml.v3 v3.0.1 // indirect
159159
)

0 commit comments

Comments
 (0)