Skip to content

Commit c669751

Browse files
jackwhelptonaeneasr
authored andcommitted
vendor: Updates dependencies (#179)
1 parent fa707f0 commit c669751

File tree

5 files changed

+68
-101
lines changed

5 files changed

+68
-101
lines changed

docker/pkg/system/filesys_windows.go

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,6 @@ import (
1111
"time"
1212
"unsafe"
1313

14-
winio "github.com/Microsoft/go-winio"
1514
"golang.org/x/sys/windows"
1615
)
1716

@@ -104,13 +103,13 @@ func mkdirall(path string, applyACL bool, sddl string) error {
104103
// and Local System.
105104
func mkdirWithACL(name string, sddl string) error {
106105
sa := windows.SecurityAttributes{Length: 0}
107-
sd, err := winio.SddlToSecurityDescriptor(sddl)
106+
sd, err := windows.SecurityDescriptorFromString(sddl)
108107
if err != nil {
109108
return &os.PathError{Op: "mkdir", Path: name, Err: err}
110109
}
111110
sa.Length = uint32(unsafe.Sizeof(sa))
112111
sa.InheritHandle = 1
113-
sa.SecurityDescriptor = uintptr(unsafe.Pointer(&sd[0]))
112+
sa.SecurityDescriptor = sd
114113

115114
namep, err := windows.UTF16PtrFromString(name)
116115
if err != nil {

docker/pkg/system/syscall_windows.go

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -54,6 +54,7 @@ func GetOSVersion() OSVersion {
5454
return osv
5555
}
5656

57+
// ToString returns a textual representation of the version.
5758
func (osv OSVersion) ToString() string {
5859
return fmt.Sprintf("%d.%d.%d", osv.MajorVersion, osv.MinorVersion, osv.Build)
5960
}

dockertest.go

Lines changed: 20 additions & 31 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ import (
1010
"strings"
1111
"time"
1212

13-
"github.com/cenkalti/backoff"
13+
"github.com/cenkalti/backoff/v3"
1414
dc "github.com/ory/dockertest/v3/docker"
1515
"github.com/pkg/errors"
1616
)
@@ -29,33 +29,26 @@ type Resource struct {
2929

3030
// GetPort returns a resource's published port. You can use it to connect to the service via localhost, e.g. tcp://localhost:1231/
3131
func (r *Resource) GetPort(id string) string {
32-
if r.Container == nil {
33-
return ""
34-
} else if r.Container.NetworkSettings == nil {
32+
if r.Container == nil || r.Container.NetworkSettings == nil {
3533
return ""
3634
}
3735

3836
m, ok := r.Container.NetworkSettings.Ports[dc.Port(id)]
39-
if !ok {
40-
return ""
41-
} else if len(m) == 0 {
37+
if !ok || len(m) == 0 {
4238
return ""
4339
}
4440

4541
return m[0].HostPort
4642
}
4743

44+
// GetBoundIP returns a resource's published IP address.
4845
func (r *Resource) GetBoundIP(id string) string {
49-
if r.Container == nil {
50-
return ""
51-
} else if r.Container.NetworkSettings == nil {
46+
if r.Container == nil || r.Container.NetworkSettings == nil {
5247
return ""
5348
}
5449

5550
m, ok := r.Container.NetworkSettings.Ports[dc.Port(id)]
56-
if !ok {
57-
return ""
58-
} else if len(m) == 0 {
51+
if !ok || len(m) == 0 {
5952
return ""
6053
}
6154

@@ -64,18 +57,15 @@ func (r *Resource) GetBoundIP(id string) string {
6457

6558
// GetHostPort returns a resource's published port with an address.
6659
func (r *Resource) GetHostPort(portID string) string {
67-
if r.Container == nil {
68-
return ""
69-
} else if r.Container.NetworkSettings == nil {
60+
if r.Container == nil || r.Container.NetworkSettings == nil {
7061
return ""
7162
}
7263

7364
m, ok := r.Container.NetworkSettings.Ports[dc.Port(portID)]
74-
if !ok {
75-
return ""
76-
} else if len(m) == 0 {
65+
if !ok || len(m) == 0 {
7766
return ""
7867
}
68+
7969
ip := m[0].HostIP
8070
if ip == "0.0.0.0" {
8171
ip = "localhost"
@@ -128,7 +118,8 @@ func NewPool(endpoint string) (*Pool, error) {
128118
}
129119

130120
return &Pool{Client: client}, nil
131-
} else if os.Getenv("DOCKER_HOST") != "" {
121+
}
122+
if os.Getenv("DOCKER_HOST") != "" {
132123
endpoint = os.Getenv("DOCKER_HOST")
133124
} else if os.Getenv("DOCKER_URL") != "" {
134125
endpoint = os.Getenv("DOCKER_URL")
@@ -139,7 +130,7 @@ func NewPool(endpoint string) (*Pool, error) {
139130
}
140131
}
141132

142-
if os.Getenv("DOCKER_CERT_PATH") != "" && shouldPreferTls(endpoint) {
133+
if os.Getenv("DOCKER_CERT_PATH") != "" && shouldPreferTLS(endpoint) {
143134
return NewTLSPool(endpoint, os.Getenv("DOCKER_CERT_PATH"))
144135
}
145136

@@ -153,7 +144,7 @@ func NewPool(endpoint string) (*Pool, error) {
153144
}, nil
154145
}
155146

156-
func shouldPreferTls(endpoint string) bool {
147+
func shouldPreferTLS(endpoint string) bool {
157148
return !strings.HasPrefix(endpoint, "http://") && !strings.HasPrefix(endpoint, "unix://")
158149
}
159150

@@ -211,11 +202,10 @@ func (d *Pool) BuildAndRunWithBuildOptions(buildOpts *BuildOptions, runOpts *Run
211202
func (d *Pool) BuildAndRunWithOptions(dockerfilePath string, opts *RunOptions, hcOpts ...func(*dc.HostConfig)) (*Resource, error) {
212203
// Set the Dockerfile folder as build context
213204
dir, file := filepath.Split(dockerfilePath)
214-
buildOpts := BuildOptions{Dockerfile:file, ContextDir:dir}
205+
buildOpts := BuildOptions{Dockerfile: file, ContextDir: dir}
215206
return d.BuildAndRunWithBuildOptions(&buildOpts, opts, hcOpts...)
216207
}
217208

218-
219209
// BuildAndRun builds and starts a docker container
220210
func (d *Pool) BuildAndRun(name, dockerfilePath string, env []string) (*Resource, error) {
221211
return d.BuildAndRunWithOptions(dockerfilePath, &RunOptions{Name: name, Env: env})
@@ -248,15 +238,14 @@ func (d *Pool) RunWithOptions(opts *RunOptions, hcOpts ...func(*dc.HostConfig))
248238

249239
for _, m := range opts.Mounts {
250240
sd := strings.Split(m, ":")
251-
if len(sd) == 2 {
252-
mounts = append(mounts, dc.Mount{
253-
Source: sd[0],
254-
Destination: sd[1],
255-
RW: true,
256-
})
257-
} else {
241+
if len(sd) != 2 {
258242
return nil, errors.Wrap(fmt.Errorf("invalid mount format: got %s, expected <src>:<dst>", m), "")
259243
}
244+
mounts = append(mounts, dc.Mount{
245+
Source: sd[0],
246+
Destination: sd[1],
247+
RW: true,
248+
})
260249
}
261250

262251
if tag == "" {

go.mod

Lines changed: 11 additions & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -4,28 +4,22 @@ go 1.13
44

55
require (
66
github.com/Azure/go-ansiterm v0.0.0-20170929234023-d6e3b3328b78
7-
github.com/Microsoft/go-winio v0.4.7
7+
github.com/Microsoft/go-winio v0.4.14
88
github.com/Nvveen/Gotty v0.0.0-20120604004816-cd527374f1e5
9-
github.com/cenkalti/backoff v2.0.0+incompatible
10-
github.com/containerd/continuity v0.0.0-20180322171221-3e8f2ea4b190
11-
github.com/davecgh/go-spew v1.1.0 // indirect
12-
github.com/docker/go-connections v0.3.0
13-
github.com/docker/go-units v0.3.3
9+
github.com/cenkalti/backoff/v3 v3.0.0
10+
github.com/containerd/continuity v0.0.0-20190827140505-75bee3e2ccb6
11+
github.com/docker/go-connections v0.4.0
12+
github.com/docker/go-units v0.4.0
1413
github.com/google/go-cmp v0.2.0 // indirect
1514
github.com/gotestyourself/gotestyourself v1.3.0
15+
github.com/konsorten/go-windows-terminal-sequences v1.0.2 // indirect
1616
github.com/lib/pq v0.0.0-20180327071824-d34b9ff171c2
17-
github.com/onsi/ginkgo v1.10.1 // indirect
18-
github.com/onsi/gomega v1.7.0 // indirect
1917
github.com/opencontainers/go-digest v1.0.0-rc1 // indirect
2018
github.com/opencontainers/image-spec v1.0.1
2119
github.com/opencontainers/runc v1.0.0-rc5
22-
github.com/pkg/errors v0.8.0
23-
github.com/pmezard/go-difflib v1.0.0 // indirect
24-
github.com/sirupsen/logrus v1.0.5
25-
github.com/stretchr/testify v1.2.1
26-
golang.org/x/crypto v0.0.0-20180411161317-d6449816ce06 // indirect
27-
golang.org/x/net v0.0.0-20180906233101-161cd47e91fd
28-
golang.org/x/sys v0.0.0-20180909124046-d0be0721c37e
29-
gopkg.in/airbrake/gobrake.v2 v2.0.9 // indirect
30-
gopkg.in/gemnasium/logrus-airbrake-hook.v2 v2.1.2 // indirect
20+
github.com/pkg/errors v0.8.1
21+
github.com/sirupsen/logrus v1.4.2
22+
github.com/stretchr/testify v1.2.2
23+
golang.org/x/net v0.0.0-20191003171128-d98b1b443823
24+
golang.org/x/sys v0.0.0-20191005200804-aed5e4c7ecf9
3125
)

go.sum

Lines changed: 34 additions & 50 deletions
Original file line numberDiff line numberDiff line change
@@ -1,69 +1,53 @@
11
github.com/Azure/go-ansiterm v0.0.0-20170929234023-d6e3b3328b78 h1:w+iIsaOQNcT7OZ575w+acHgRric5iCyQh+xv+KJ4HB8=
22
github.com/Azure/go-ansiterm v0.0.0-20170929234023-d6e3b3328b78/go.mod h1:LmzpDX56iTiv29bbRTIsUNlaFfuhWRQBWjQdVyAevI8=
3-
github.com/Microsoft/go-winio v0.4.7 h1:vOvDiY/F1avSWlCWiKJjdYKz2jVjTK3pWPHndeG4OAY=
4-
github.com/Microsoft/go-winio v0.4.7/go.mod h1:VhR8bwka0BXejwEJY73c50VrPtXAaKcyvVC4A4RozmA=
3+
github.com/Microsoft/go-winio v0.4.14 h1:+hMXMk01us9KgxGb7ftKQt2Xpf5hH/yky+TDA+qxleU=
4+
github.com/Microsoft/go-winio v0.4.14/go.mod h1:qXqCSQ3Xa7+6tgxaGTIe4Kpcdsi+P8jBhyzoq1bpyYA=
55
github.com/Nvveen/Gotty v0.0.0-20120604004816-cd527374f1e5 h1:TngWCqHvy9oXAN6lEVMRuU21PR1EtLVZJmdB18Gu3Rw=
66
github.com/Nvveen/Gotty v0.0.0-20120604004816-cd527374f1e5/go.mod h1:lmUJ/7eu/Q8D7ML55dXQrVaamCz2vxCfdQBasLZfHKk=
7-
github.com/cenkalti/backoff v2.0.0+incompatible h1:5IIPUHhlnUZbcHQsQou5k1Tn58nJkeJL9U+ig5CHJbY=
8-
github.com/cenkalti/backoff v2.0.0+incompatible/go.mod h1:90ReRw6GdpyfrHakVjL/QHaoyV4aDUVVkXQJJJ3NXXM=
9-
github.com/containerd/continuity v0.0.0-20180322171221-3e8f2ea4b190 h1:xySrq2Xw0gX07PHM/LS8kuGpRd3hKDz+0/QvIJRILYk=
10-
github.com/containerd/continuity v0.0.0-20180322171221-3e8f2ea4b190/go.mod h1:GL3xCUCBDV3CZiTSEKksMWbLE66hEyuu9qyDOOqM47Y=
11-
github.com/davecgh/go-spew v1.1.0 h1:ZDRjVQ15GmhC3fiQ8ni8+OwkZQO4DARzQgrnXU1Liz8=
12-
github.com/davecgh/go-spew v1.1.0/go.mod h1:J7Y8YcW2NihsgmVo/mv3lAwl/skON4iLHjSsI+c5H38=
13-
github.com/docker/go-connections v0.3.0 h1:3lOnM9cSzgGwx8VfK/NGOW5fLQ0GjIlCkaktF+n1M6o=
14-
github.com/docker/go-connections v0.3.0/go.mod h1:Gbd7IOopHjR8Iph03tsViu4nIes5XhDvyHbTtUxmeec=
15-
github.com/docker/go-units v0.3.3 h1:Xk8S3Xj5sLGlG5g67hJmYMmUgXv5N4PhkjJHHqrwnTk=
16-
github.com/docker/go-units v0.3.3/go.mod h1:fgPhTUdO+D/Jk86RDLlptpiXQzgHJF7gydDDbaIK4Dk=
17-
github.com/fsnotify/fsnotify v1.4.7 h1:IXs+QLmnXW2CcXuY+8Mzv/fWEsPGWxqefPtCP5CnV9I=
18-
github.com/fsnotify/fsnotify v1.4.7/go.mod h1:jwhsz4b93w/PPRr/qN1Yymfu8t87LnFCMoQvtojpjFo=
19-
github.com/golang/protobuf v1.2.0 h1:P3YflyNX/ehuJFLhxviNdFxQPkGK5cDcApsge1SqnvM=
20-
github.com/golang/protobuf v1.2.0/go.mod h1:6lQm79b+lXiMfvg/cZm0SGofjICqVBUtrP5yJMmIC1U=
7+
github.com/cenkalti/backoff/v3 v3.0.0 h1:ske+9nBpD9qZsTBoF41nW5L+AIuFBKMeze18XQ3eG1c=
8+
github.com/cenkalti/backoff/v3 v3.0.0/go.mod h1:cIeZDE3IrqwwJl6VUwCN6trj1oXrTS4rc0ij+ULvLYs=
9+
github.com/containerd/continuity v0.0.0-20190827140505-75bee3e2ccb6 h1:NmTXa/uVnDyp0TY5MKi197+3HWcnYWfnHGyaFthlnGw=
10+
github.com/containerd/continuity v0.0.0-20190827140505-75bee3e2ccb6/go.mod h1:GL3xCUCBDV3CZiTSEKksMWbLE66hEyuu9qyDOOqM47Y=
11+
github.com/davecgh/go-spew v1.1.1 h1:vj9j/u1bqnvCEfJOwUhtlOARqs3+rkHYY13jYWTU97c=
12+
github.com/davecgh/go-spew v1.1.1/go.mod h1:J7Y8YcW2NihsgmVo/mv3lAwl/skON4iLHjSsI+c5H38=
13+
github.com/docker/go-connections v0.4.0 h1:El9xVISelRB7BuFusrZozjnkIM5YnzCViNKohAFqRJQ=
14+
github.com/docker/go-connections v0.4.0/go.mod h1:Gbd7IOopHjR8Iph03tsViu4nIes5XhDvyHbTtUxmeec=
15+
github.com/docker/go-units v0.4.0 h1:3uh0PgVws3nIA0Q+MwDC8yjEPf9zjRfZZWXZYDct3Tw=
16+
github.com/docker/go-units v0.4.0/go.mod h1:fgPhTUdO+D/Jk86RDLlptpiXQzgHJF7gydDDbaIK4Dk=
2117
github.com/google/go-cmp v0.2.0 h1:+dTQ8DZQJz0Mb/HjFlkptS1FeQ4cWSnN941F8aEG4SQ=
2218
github.com/google/go-cmp v0.2.0/go.mod h1:oXzfMopK8JAjlY9xF4vHSVASa0yLyX7SntLO5aqRK0M=
2319
github.com/gotestyourself/gotestyourself v1.3.0 h1:9X3T0HDKAY/58/sEPpTkmyOg4wbb1ab9tZfV44mTSeE=
2420
github.com/gotestyourself/gotestyourself v1.3.0/go.mod h1:zZKM6oeNM8k+FRljX1mnzVYeS8wiGgQyvST1/GafPbY=
25-
github.com/hpcloud/tail v1.0.0 h1:nfCOvKYfkgYP8hkirhJocXT2+zOD8yUNjXaWfTlyFKI=
26-
github.com/hpcloud/tail v1.0.0/go.mod h1:ab1qPbhIpdTxEkNHXyeSf5vhxWSCs/tWer42PpOxQnU=
21+
github.com/konsorten/go-windows-terminal-sequences v1.0.1/go.mod h1:T0+1ngSBFLxvqU3pZ+m/2kptfBszLMUkC4ZK/EgS/cQ=
22+
github.com/konsorten/go-windows-terminal-sequences v1.0.2 h1:DB17ag19krx9CFsz4o3enTrPXyIXCl+2iCXH/aMAp9s=
23+
github.com/konsorten/go-windows-terminal-sequences v1.0.2/go.mod h1:T0+1ngSBFLxvqU3pZ+m/2kptfBszLMUkC4ZK/EgS/cQ=
2724
github.com/lib/pq v0.0.0-20180327071824-d34b9ff171c2 h1:hRGSmZu7j271trc9sneMrpOW7GN5ngLm8YUZIPzf394=
2825
github.com/lib/pq v0.0.0-20180327071824-d34b9ff171c2/go.mod h1:5WUZQaWbwv1U+lTReE5YruASi9Al49XbQIvNi/34Woo=
29-
github.com/onsi/ginkgo v1.6.0/go.mod h1:lLunBs/Ym6LB5Z9jYTR76FiuTmxDTDusOGeTQH+WWjE=
30-
github.com/onsi/ginkgo v1.10.1 h1:q/mM8GF/n0shIN8SaAZ0V+jnLPzen6WIVZdiwrRlMlo=
31-
github.com/onsi/ginkgo v1.10.1/go.mod h1:lLunBs/Ym6LB5Z9jYTR76FiuTmxDTDusOGeTQH+WWjE=
32-
github.com/onsi/gomega v1.7.0 h1:XPnZz8VVBHjVsy1vzJmRwIcSwiUO+JFfrv/xGiigmME=
33-
github.com/onsi/gomega v1.7.0/go.mod h1:ex+gbHU/CVuBBDIJjb2X0qEXbFg53c61hWP/1CpauHY=
3426
github.com/opencontainers/go-digest v1.0.0-rc1 h1:WzifXhOVOEOuFYOJAW6aQqW0TooG2iki3E3Ii+WN7gQ=
3527
github.com/opencontainers/go-digest v1.0.0-rc1/go.mod h1:cMLVZDEM3+U2I4VmLI6N8jQYUd2OVphdqWwCJHrFt2s=
3628
github.com/opencontainers/image-spec v1.0.1 h1:JMemWkRwHx4Zj+fVxWoMCFm/8sYGGrUVojFA6h/TRcI=
3729
github.com/opencontainers/image-spec v1.0.1/go.mod h1:BtxoFyWECRxE4U/7sNtV5W15zMzWCbyJoFRP3s7yZA0=
3830
github.com/opencontainers/runc v1.0.0-rc5 h1:rYjdzMDXVly2Av0RLs3nf/iVkaWh2UrDhuTdTT2KggQ=
3931
github.com/opencontainers/runc v1.0.0-rc5/go.mod h1:qT5XzbpPznkRYVz/mWwUaVBUv2rmF59PVA73FjuZG0U=
40-
github.com/pkg/errors v0.8.0 h1:WdK/asTD0HN+q6hsWO3/vpuAkAr+tw6aNJNDFFf0+qw=
41-
github.com/pkg/errors v0.8.0/go.mod h1:bwawxfHBFNV+L2hUp1rHADufV3IMtnDRdf1r5NINEl0=
32+
github.com/pkg/errors v0.8.1 h1:iURUrRGxPUNPdy5/HRSm+Yj6okJ6UtLINN0Q9M4+h3I=
33+
github.com/pkg/errors v0.8.1/go.mod h1:bwawxfHBFNV+L2hUp1rHADufV3IMtnDRdf1r5NINEl0=
4234
github.com/pmezard/go-difflib v1.0.0 h1:4DBwDE0NGyQoBHbLQYPwSUPoCMWR5BEzIk/f1lZbAQM=
4335
github.com/pmezard/go-difflib v1.0.0/go.mod h1:iKH77koFhYxTK1pcRnkKkqfTogsbg7gZNVY4sRDYZ/4=
44-
github.com/sirupsen/logrus v1.0.5 h1:8c8b5uO0zS4X6RPl/sd1ENwSkIc0/H2PaHxE3udaE8I=
45-
github.com/sirupsen/logrus v1.0.5/go.mod h1:pMByvHTf9Beacp5x1UXfOR9xyW/9antXMhjMPG0dEzc=
46-
github.com/stretchr/testify v1.2.1 h1:52QO5WkIUcHGIR7EnGagH88x1bUzqGXTC5/1bDTUQ7U=
47-
github.com/stretchr/testify v1.2.1/go.mod h1:a8OnRcib4nhh0OaRAV+Yts87kKdq0PP7pXfy6kDkUVs=
48-
golang.org/x/crypto v0.0.0-20180411161317-d6449816ce06 h1:EOqG0JqGlLr+punVB69jvWCv/ErZKGlC7PMdyHfv+Bc=
49-
golang.org/x/crypto v0.0.0-20180411161317-d6449816ce06/go.mod h1:6SG95UA2DQfeDnfUPMdvaQW0Q7yPrPDi9nlGo2tz2b4=
50-
golang.org/x/net v0.0.0-20180906233101-161cd47e91fd h1:nTDtHvHSdCn1m6ITfMRqtOd/9+7a3s8RBNOZ3eYZzJA=
51-
golang.org/x/net v0.0.0-20180906233101-161cd47e91fd/go.mod h1:mL1N/T3taQHkDXs73rZJwtUhF3w3ftmwwsq0BUmARs4=
52-
golang.org/x/sync v0.0.0-20180314180146-1d60e4601c6f h1:wMNYb4v58l5UBM7MYRLPG6ZhfOqbKu7X5eyFl8ZhKvA=
53-
golang.org/x/sync v0.0.0-20180314180146-1d60e4601c6f/go.mod h1:RxMgew5VJxzue5/jJTE5uejpjVlOe/izrB70Jof72aM=
54-
golang.org/x/sys v0.0.0-20180909124046-d0be0721c37e h1:o3PsSEY8E4eXWkXrIP9YJALUkVZqzHJT5DOasTyn8Vs=
55-
golang.org/x/sys v0.0.0-20180909124046-d0be0721c37e/go.mod h1:STP8DvDyc/dI5b8T5hshtkjS+E42TnysNCUPdjciGhY=
56-
golang.org/x/text v0.3.0 h1:g61tztE5qeGQ89tm6NTjjM9VPIm088od1l6aSorWRWg=
36+
github.com/sirupsen/logrus v1.4.1/go.mod h1:ni0Sbl8bgC9z8RoU9G6nDWqqs/fq4eDPysMBDgk/93Q=
37+
github.com/sirupsen/logrus v1.4.2 h1:SPIRibHv4MatM3XXNO2BJeFLZwZ2LvZgfQ5+UNI2im4=
38+
github.com/sirupsen/logrus v1.4.2/go.mod h1:tLMulIdttU9McNUspp0xgXVQah82FyeX6MwdIuYE2rE=
39+
github.com/stretchr/objx v0.1.1/go.mod h1:HFkY916IF+rwdDfMAkV7OtwuqBVzrE8GR6GFx+wExME=
40+
github.com/stretchr/testify v1.2.2 h1:bSDNvY7ZPG5RlJ8otE/7V6gMiyenm9RtJ7IUVIAoJ1w=
41+
github.com/stretchr/testify v1.2.2/go.mod h1:a8OnRcib4nhh0OaRAV+Yts87kKdq0PP7pXfy6kDkUVs=
42+
golang.org/x/crypto v0.0.0-20190308221718-c2843e01d9a2/go.mod h1:djNgcEr1/C05ACkg1iLfiJU5Ep61QUkGW8qpdssI0+w=
43+
golang.org/x/net v0.0.0-20191003171128-d98b1b443823 h1:Ypyv6BNJh07T1pUSrehkLemqPKXhus2MkfktJ91kRh4=
44+
golang.org/x/net v0.0.0-20191003171128-d98b1b443823/go.mod h1:z5CRVTTTmAJ677TzLLGU+0bjPO0LkuOLi4/5GtJWs/s=
45+
golang.org/x/sys v0.0.0-20180905080454-ebe1bf3edb33/go.mod h1:STP8DvDyc/dI5b8T5hshtkjS+E42TnysNCUPdjciGhY=
46+
golang.org/x/sys v0.0.0-20190215142949-d0b11bdaac8a/go.mod h1:STP8DvDyc/dI5b8T5hshtkjS+E42TnysNCUPdjciGhY=
47+
golang.org/x/sys v0.0.0-20190422165155-953cdadca894/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs=
48+
golang.org/x/sys v0.0.0-20190507160741-ecd444e8653b/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs=
49+
golang.org/x/sys v0.0.0-20191003212358-c178f38b412c h1:6Zx7DRlKXf79yfxuQ/7GqV3w2y7aDsk6bGg0MzF5RVU=
50+
golang.org/x/sys v0.0.0-20191003212358-c178f38b412c/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs=
51+
golang.org/x/sys v0.0.0-20191005200804-aed5e4c7ecf9 h1:L2auWcuQIvxz9xSEqzESnV/QN/gNRXNApHi3fYwl2w0=
52+
golang.org/x/sys v0.0.0-20191005200804-aed5e4c7ecf9/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs=
5753
golang.org/x/text v0.3.0/go.mod h1:NqM8EUOU14njkJ3fqMW+pc6Ldnwhi/IjpwHt7yyuwOQ=
58-
gopkg.in/airbrake/gobrake.v2 v2.0.9 h1:7z2uVWwn7oVeeugY1DtlPAy5H+KYgB1KeKTnqjNatLo=
59-
gopkg.in/airbrake/gobrake.v2 v2.0.9/go.mod h1:/h5ZAUhDkGaJfjzjKLSjv6zCL6O0LLBxU4K+aSYdM/U=
60-
gopkg.in/check.v1 v0.0.0-20161208181325-20d25e280405 h1:yhCVgyC4o1eVCa2tZl7eS0r+SDo693bJlVdllGtEeKM=
61-
gopkg.in/check.v1 v0.0.0-20161208181325-20d25e280405/go.mod h1:Co6ibVJAznAaIkqp8huTwlJQCZ016jof/cbN4VW5Yz0=
62-
gopkg.in/fsnotify.v1 v1.4.7 h1:xOHLXZwVvI9hhs+cLKq5+I5onOuwQLhQwiu63xxlHs4=
63-
gopkg.in/fsnotify.v1 v1.4.7/go.mod h1:Tz8NjZHkW78fSQdbUxIjBTcgA1z1m8ZHf0WmKUhAMys=
64-
gopkg.in/gemnasium/logrus-airbrake-hook.v2 v2.1.2 h1:OAj3g0cR6Dx/R07QgQe8wkA9RNjB2u4i700xBkIT4e0=
65-
gopkg.in/gemnasium/logrus-airbrake-hook.v2 v2.1.2/go.mod h1:Xk6kEKp8OKb+X14hQBKWaSkCsqBpgog8nAV2xsGOxlo=
66-
gopkg.in/tomb.v1 v1.0.0-20141024135613-dd632973f1e7 h1:uRGJdciOHaEIrze2W8Q3AKkepLTh2hOroT7a+7czfdQ=
67-
gopkg.in/tomb.v1 v1.0.0-20141024135613-dd632973f1e7/go.mod h1:dt/ZhP58zS4L8KSrWDmTeBkI65Dw0HsyUHuEVlX15mw=
68-
gopkg.in/yaml.v2 v2.2.1 h1:mUhvW9EsL+naU5Q3cakzfE91YhliOondGd6ZrsDBHQE=
69-
gopkg.in/yaml.v2 v2.2.1/go.mod h1:hI93XBmqTisBFMUTm0b8Fm+jr3Dg1NNxqwp+5A1VGuI=

0 commit comments

Comments
 (0)