Skip to content

Commit c3eecf4

Browse files
committed
Update to newest imgcrypt, aufs and zfs
Older versions transitively dragged in k8s.io/kubernetes, the newer versions do not. Signed-off-by: Davanum Srinivas <[email protected]>
1 parent 54a63a3 commit c3eecf4

274 files changed

Lines changed: 16285 additions & 3194 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.

go.mod

Lines changed: 12 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -4,22 +4,22 @@ go 1.15
44

55
require (
66
github.com/BurntSushi/toml v0.3.1
7-
github.com/Microsoft/go-winio v0.4.16
7+
github.com/Microsoft/go-winio v0.4.17-0.20210211115548-6eac466e5fa3
88
github.com/Microsoft/hcsshim v0.8.14
9-
github.com/Microsoft/hcsshim/test v0.0.0-20201218223536-d3e5debf77da
10-
github.com/containerd/aufs v0.0.0-20200908144142-dab0cbea06f4
9+
github.com/Microsoft/hcsshim/test v0.0.0-20210227013316-43a75bb4edd3
10+
github.com/containerd/aufs v0.0.0-20201003224125-76a6863f2989
1111
github.com/containerd/btrfs v0.0.0-20201111183144-404b9149801e
1212
github.com/containerd/cgroups v0.0.0-20210114181951-8a68de567b68
1313
github.com/containerd/console v1.0.1
14-
github.com/containerd/continuity v0.0.0-20201208142359-180525291bb7
14+
github.com/containerd/continuity v0.0.0-20210208174643-50096c924a4e
1515
github.com/containerd/fifo v0.0.0-20201026212402-0724c46b320c
1616
github.com/containerd/go-cni v1.0.1
1717
github.com/containerd/go-runc v0.0.0-20200220073739-7016d3ce2328
18-
github.com/containerd/imgcrypt v1.0.1
18+
github.com/containerd/imgcrypt v1.0.4-0.20210301171431-0ae5c75f59ba
1919
github.com/containerd/nri v0.0.0-20201007170849-eb1350a75164
2020
github.com/containerd/ttrpc v1.0.2
2121
github.com/containerd/typeurl v1.0.1
22-
github.com/containerd/zfs v0.0.0-20200918131355-0a33824f23a2
22+
github.com/containerd/zfs v0.0.0-20210301145711-11e8f1707f62
2323
github.com/containernetworking/plugins v0.8.6
2424
github.com/coreos/go-systemd/v22 v22.1.0
2525
github.com/davecgh/go-spew v1.1.1
@@ -31,11 +31,11 @@ require (
3131
github.com/gogo/googleapis v1.4.0
3232
github.com/gogo/protobuf v1.3.2
3333
github.com/golang/protobuf v1.4.3
34-
github.com/google/go-cmp v0.5.2
34+
github.com/google/go-cmp v0.5.4
3535
github.com/google/uuid v1.1.2
3636
github.com/grpc-ecosystem/go-grpc-prometheus v1.2.0
3737
github.com/hashicorp/go-multierror v1.0.0
38-
github.com/imdario/mergo v0.3.10
38+
github.com/imdario/mergo v0.3.11
3939
github.com/klauspost/compress v1.11.3
4040
github.com/moby/sys/mountinfo v0.4.0
4141
github.com/moby/sys/symlink v0.1.0
@@ -52,10 +52,10 @@ require (
5252
github.com/urfave/cli v1.22.2
5353
go.etcd.io/bbolt v1.3.5
5454
golang.org/x/net v0.0.0-20201224014010-6772e930b67b
55-
golang.org/x/sync v0.0.0-20201020160332-67f06af15bc9
56-
golang.org/x/sys v0.0.0-20201202213521-69691e467435
57-
google.golang.org/grpc v1.30.0
58-
gotest.tools/v3 v3.0.2
55+
golang.org/x/sync v0.0.0-20201207232520-09787c993a3a
56+
golang.org/x/sys v0.0.0-20210124154548-22da62e12c0c
57+
google.golang.org/grpc v1.33.2
58+
gotest.tools/v3 v3.0.3
5959
k8s.io/api v0.20.1
6060
k8s.io/apimachinery v0.20.1
6161
k8s.io/apiserver v0.20.1

go.sum

Lines changed: 43 additions & 3 deletions
Large diffs are not rendered by default.

vendor/github.com/Microsoft/go-winio/CODEOWNERS

Lines changed: 1 addition & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

vendor/github.com/Microsoft/go-winio/backuptar/tar.go

Lines changed: 6 additions & 5 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

vendor/github.com/Microsoft/go-winio/fileinfo.go

Lines changed: 24 additions & 12 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

vendor/github.com/Microsoft/go-winio/go.mod

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

vendor/github.com/Microsoft/go-winio/go.sum

Lines changed: 6 additions & 8 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

vendor/github.com/Microsoft/go-winio/hvsock.go

Lines changed: 2 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

vendor/github.com/Microsoft/go-winio/pkg/etw/eventdata.go

Lines changed: 2 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

vendor/github.com/Microsoft/go-winio/pkg/etw/eventopt.go

Lines changed: 2 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)