Skip to content

Commit dd20549

Browse files
authored
Merge pull request moby#1975 from thaJeztah/unfork-docker
bump docker/docker to master and unfork dependencies
2 parents 0151ded + 873af34 commit dd20549

584 files changed

Lines changed: 77768 additions & 29842 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.

cmd/dnet/dnet_windows.go

Lines changed: 5 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -3,24 +3,23 @@ package main
33
import (
44
"fmt"
55
"os"
6-
"syscall"
76

87
"github.com/docker/docker/pkg/signal"
9-
"github.com/docker/docker/pkg/system"
108
"github.com/sirupsen/logrus"
9+
"golang.org/x/sys/windows"
1110
)
1211

1312
// Copied over from docker/daemon/debugtrap_windows.go
1413
func setupDumpStackTrap() {
1514
go func() {
16-
sa := syscall.SecurityAttributes{
15+
sa := windows.SecurityAttributes{
1716
Length: 0,
1817
}
19-
ev := "Global\\docker-daemon-" + fmt.Sprint(os.Getpid())
20-
if h, _ := system.CreateEvent(&sa, false, false, ev); h != 0 {
18+
ev, _ := windows.UTF16PtrFromString("Global\\docker-daemon-" + fmt.Sprint(os.Getpid()))
19+
if h, _ := windows.CreateEvent(&sa, 0, 0, ev); h != 0 {
2120
logrus.Debugf("Stackdump - waiting signal at %s", ev)
2221
for {
23-
syscall.WaitForSingleObject(h, syscall.INFINITE)
22+
windows.WaitForSingleObject(h, windows.INFINITE)
2423
signal.DumpStacks("")
2524
}
2625
}

vendor.conf

Lines changed: 32 additions & 23 deletions
Original file line numberDiff line numberDiff line change
@@ -1,44 +1,53 @@
1-
github.com/Azure/go-ansiterm 19f72df4d05d31cbe1c56bfc8045c96babff6c7e
1+
github.com/Azure/go-ansiterm d6e3b3328b783f23731bc4d058875b0371ff8109
22
github.com/BurntSushi/toml f706d00e3de6abe700c994cdd545a1a4915af060
3-
github.com/Microsoft/go-winio ce2922f643c8fd76b46cadc7f404a06282678b34
4-
github.com/Microsoft/hcsshim v0.6.3
3+
github.com/Microsoft/go-winio v0.4.5
4+
github.com/Microsoft/hcsshim v0.6.5
55
github.com/armon/go-metrics eb0af217e5e9747e41dd5303755356b62d28e3ec
66
github.com/armon/go-radix e39d623f12e8e41c7b5529e9a9dd67a1e2261f80
7-
github.com/boltdb/bolt c6ba97b89e0454fec9aa92e1d33a4e2c5fc1f631
7+
github.com/boltdb/bolt fff57c100f4dea1905678da7e90d92429dff2904
88
github.com/codegangsta/cli a65b733b303f0055f8d324d805f393cd3e7a7904
9-
github.com/coreos/etcd 925d1d74cec8c3b169c52fd4b2dc234a35934fce
10-
github.com/coreos/go-systemd b4a58d95188dd092ae20072bac14cece0e67c388
9+
github.com/containerd/console 84eeaae905fa414d03e07bcd6c8d3f19e7cf180e
10+
github.com/containerd/continuity 22694c680ee48fb8f50015b44618517e2bde77e8
11+
github.com/coreos/etcd v3.2.1
12+
github.com/coreos/go-semver v0.2.0
13+
github.com/coreos/go-systemd v4
1114
github.com/deckarep/golang-set ef32fa3046d9f249d399f98ebaf9be944430fd1d
1215

13-
github.com/docker/docker 2cac43e3573893cf8fd816e0ad5615426acb87f4 https://github.com/dmcgowan/docker.git
16+
github.com/docker/docker a3efe9722f34af5cf4443fe3a5c4e4e3e0457b54
1417
github.com/docker/go-connections 3ede32e2033de7505e6500d6c868c2b9ed9f169d
1518
github.com/docker/go-events 9461782956ad83b30282bf90e31fa6a70c255ba9
16-
github.com/docker/go-units 8e2d4523730c73120e10d4652f36ad6010998f4e
19+
github.com/docker/go-units 9e638d38cf6977a37a8ea0078f3ee75a7cdb2dd1
1720
github.com/docker/libkv 1d8431073ae03cdaedb198a89722f3aab6d418ef
1821

19-
github.com/godbus/dbus 5f6efc7ef2759c81b7ba876593971bfce311eab3
20-
github.com/gogo/protobuf 8d70fb3182befc465c4a1eac8ad4d38ff49778e2
21-
github.com/golang/protobuf f7137ae6b19afbfd61a94b746fda3b3fe0491874
22-
github.com/gorilla/context 215affda49addc4c8ef7e2534915df2c8c35c6cd
23-
github.com/gorilla/mux 8096f47503459bcc74d1f4c487b7e6e42e5746b5
24-
github.com/hashicorp/consul 954aec66231b79c161a4122b023fbcad13047f79
22+
github.com/godbus/dbus v4.0.0
23+
github.com/gogo/protobuf v0.4
24+
github.com/golang/protobuf 7a211bcf3bce0e3f1d74f9894916e6f116ae83b4
25+
github.com/gorilla/context v1.1
26+
github.com/gorilla/mux v1.1
27+
github.com/hashicorp/consul v0.5.2
2528
github.com/hashicorp/go-msgpack 71c2886f5a673a35f909803f38ece5810165097b
26-
github.com/hashicorp/go-multierror 2167c8ec40776024589f483a6b836489e47e1049
29+
github.com/hashicorp/go-multierror fcdddc395df1ddf4247c69bd436e84cfa0733f7e
2730
github.com/hashicorp/memberlist v0.1.0
2831
github.com/sean-/seed e2103e2c35297fb7e17febb81e49b312087a2372
2932
github.com/hashicorp/go-sockaddr acd314c5781ea706c710d9ea70069fd2e110d61d
3033
github.com/hashicorp/serf 598c54895cc5a7b1a24a398d635e8c0ea0959870
31-
github.com/mattn/go-shellwords 525bedee691b5a8df547cb5cf9f86b7fb1883e24
32-
github.com/miekg/dns d27455715200c7d3e321a1e5cadb27c9ee0b0f02
33-
github.com/opencontainers/runc 8694d576ea3ce3c9e2c804b7f91b4e1e9a575d1c https://github.com/dmcgowan/runc.git
34+
github.com/mattn/go-shellwords v1.0.3
35+
github.com/miekg/dns 75e6e86cc601825c5dbcd4e0c209eab180997cd7
36+
github.com/mrunalp/fileutils ed869b029674c0e9ce4c0dfa781405c2d9946d08
37+
github.com/opencontainers/go-digest a6d0ee40d4207ea02364bd3b9e8e77b9159ba1eb
38+
github.com/opencontainers/image-spec 372ad780f63454fbbbbcc7cf80e5b90245c13e13
39+
github.com/opencontainers/runc 0351df1c5a66838d0c392b4ac4cf9450de844e2d
40+
github.com/opencontainers/runtime-spec v1.0.0
41+
github.com/opencontainers/selinux v1.0.0-rc1
3442
github.com/samuel/go-zookeeper d0e0d8e11f318e000a8cc434616d69e329edc374
35-
github.com/seccomp/libseccomp-golang 1b506fc7c24eec5a3693cdcbed40d9c226cfc6a1
36-
github.com/sirupsen/logrus v1.0.1
43+
github.com/seccomp/libseccomp-golang 32f571b70023028bd57d9288c20efbcb237f3ce0
44+
github.com/sirupsen/logrus v1.0.3
3745
github.com/stretchr/testify dab07ac62d4905d3e48d17dc549c684ac3b7c15a
38-
github.com/syndtr/gocapability 2c00daeb6c3b45114c80ac44119e7b8801fdd852
46+
github.com/syndtr/gocapability db04d3cc01c8b54962a58ec7e491717d06cfcc16
3947
github.com/ugorji/go f1f1a805ed361a0e078bb537e4ea78cd37dcf065
4048
github.com/vishvananda/netlink bd6d5de5ccef2d66b0a26177928d0d8895d7f969
4149
github.com/vishvananda/netns 604eaf189ee867d8c147fafc28def2394e878d25
42-
golang.org/x/net c427ad74c6d7a814201695e9ffde0c5d400a7674
43-
golang.org/x/sys 8f0908ab3b2457e2e15403d3697c9ef5cb4b57a9
50+
golang.org/x/crypto 558b6879de74bc843225cde5686419267ff707ca
51+
golang.org/x/net 7dcfb8076726a3fdd9353b6b8a1f1b6be6811bd6
52+
golang.org/x/sys 07c182904dbd53199946ba614a412c61d3c548f5
4453
github.com/pkg/errors 839d9e913e063e28dfd0e6c7b7512793e0a48be9

vendor/github.com/Azure/go-ansiterm/csi_entry_state.go

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/Azure/go-ansiterm/csi_param_state.go

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/Azure/go-ansiterm/escape_intermediate_state.go

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/Azure/go-ansiterm/escape_state.go

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/Azure/go-ansiterm/osc_string_state.go

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

vendor/github.com/Azure/go-ansiterm/parser.go

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

vendor/github.com/Azure/go-ansiterm/parser_action_helpers.go

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

0 commit comments

Comments
 (0)