diff -Nru golang-github-fsouza-go-dockerclient-1.6.3/appveyor.yml golang-github-fsouza-go-dockerclient-1.6.0/appveyor.yml --- golang-github-fsouza-go-dockerclient-1.6.3/appveyor.yml 2020-02-20 19:25:13.000000000 +0000 +++ golang-github-fsouza-go-dockerclient-1.6.0/appveyor.yml 2019-11-08 21:11:21.000000000 +0000 @@ -7,9 +7,8 @@ GOPROXY: https://proxy.golang.org GO111MODULE: on matrix: - - GOVERSION: "1.12.17" - - GOVERSION: "1.13.8" - - GOVERSION: "1.14rc1" + - GOVERSION: "1.12.13" + - GOVERSION: "1.13.4" install: - choco install make - set PATH=%GOPATH%\bin;c:\go\bin;%PATH% diff -Nru golang-github-fsouza-go-dockerclient-1.6.3/auth.go golang-github-fsouza-go-dockerclient-1.6.0/auth.go --- golang-github-fsouza-go-dockerclient-1.6.3/auth.go 2020-02-20 19:25:13.000000000 +0000 +++ golang-github-fsouza-go-dockerclient-1.6.0/auth.go 2019-11-08 21:11:21.000000000 +0000 @@ -30,7 +30,7 @@ ServerAddress string `json:"serveraddress,omitempty"` // IdentityToken can be supplied with the identitytoken response of the AuthCheck call - // see https://pkg.go.dev/github.com/docker/docker/api/types?tab=doc#AuthConfig + // see https://godoc.org/github.com/docker/docker/api/types#AuthConfig // It can be used in place of password not in conjunction with it IdentityToken string `json:"identitytoken,omitempty"` @@ -170,14 +170,9 @@ if conf.Auth == "" { continue } - - // support both padded and unpadded encoding data, err := base64.StdEncoding.DecodeString(conf.Auth) if err != nil { - data, err = base64.StdEncoding.WithPadding(base64.NoPadding).DecodeString(conf.Auth) - } - if err != nil { - return nil, errors.New("error decoding plaintext credentials") + return nil, err } userpass := strings.SplitN(string(data), ":", 2) diff -Nru golang-github-fsouza-go-dockerclient-1.6.3/AUTHORS golang-github-fsouza-go-dockerclient-1.6.0/AUTHORS --- golang-github-fsouza-go-dockerclient-1.6.3/AUTHORS 2020-02-20 19:25:13.000000000 +0000 +++ golang-github-fsouza-go-dockerclient-1.6.0/AUTHORS 2019-11-08 21:11:21.000000000 +0000 @@ -139,7 +139,6 @@ Mike Dillon Mrunal Patel Nate Jones -Nathan Pemberton Nguyen Sy Thanh Son Nicholas Van Wiggeren Nick Ethier diff -Nru golang-github-fsouza-go-dockerclient-1.6.3/container.go golang-github-fsouza-go-dockerclient-1.6.0/container.go --- golang-github-fsouza-go-dockerclient-1.6.3/container.go 2020-02-20 19:25:13.000000000 +0000 +++ golang-github-fsouza-go-dockerclient-1.6.0/container.go 2019-11-08 21:11:21.000000000 +0000 @@ -730,15 +730,6 @@ CgroupPermissions string `json:"CgroupPermissions,omitempty" yaml:"CgroupPermissions,omitempty" toml:"CgroupPermissions,omitempty"` } -// A list of requests for devices to be sent to device drivers -type DeviceRequest struct { - Driver string `json:"Driver,omitempty" yaml:"Driver,omitempty" toml:"Driver,omitempty"` - Count int `json:"Count,omitempty" yaml:"Count,omitempty" toml:"Count,omitempty"` - DeviceIDs []string `json:"DeviceIDs,omitempty" yaml:"DeviceIDs,omitempty" toml:"DeviceIDs,omitempty"` - Capabilities [][]string `json:"Capabilities,omitempty" yaml:"Capabilities,omitempty" toml:"Capabilities,omitempty"` - Options map[string]string `json:"Options,omitempty" yaml:"Options,omitempty" toml:"Options,omitempty"` -} - // BlockWeight represents a relative device weight for an individual device inside // of a container type BlockWeight struct { @@ -780,7 +771,6 @@ RestartPolicy RestartPolicy `json:"RestartPolicy,omitempty" yaml:"RestartPolicy,omitempty" toml:"RestartPolicy,omitempty"` Devices []Device `json:"Devices,omitempty" yaml:"Devices,omitempty" toml:"Devices,omitempty"` DeviceCgroupRules []string `json:"DeviceCgroupRules,omitempty" yaml:"DeviceCgroupRules,omitempty" toml:"DeviceCgroupRules,omitempty"` - DeviceRequests []DeviceRequest `json:"DeviceRequests,omitempty" yaml:"DeviceRequests,omitempty" toml:"DeviceRequests,omitempty"` LogConfig LogConfig `json:"LogConfig,omitempty" yaml:"LogConfig,omitempty" toml:"LogConfig,omitempty"` SecurityOpt []string `json:"SecurityOpt,omitempty" yaml:"SecurityOpt,omitempty" toml:"SecurityOpt,omitempty"` CgroupnsMode string `json:"CgroupnsMode,omitempty" yaml:"CgroupnsMode,omitempty" toml:"CgroupnsMode,omitempty"` // v1.40+ @@ -798,7 +788,6 @@ CPUPeriod int64 `json:"CpuPeriod,omitempty" yaml:"CpuPeriod,omitempty" toml:"CpuPeriod,omitempty"` CPURealtimePeriod int64 `json:"CpuRealtimePeriod,omitempty" yaml:"CpuRealtimePeriod,omitempty" toml:"CpuRealtimePeriod,omitempty"` CPURealtimeRuntime int64 `json:"CpuRealtimeRuntime,omitempty" yaml:"CpuRealtimeRuntime,omitempty" toml:"CpuRealtimeRuntime,omitempty"` - NanoCPUs int64 `json:"NanoCpus,omitempty" yaml:"NanoCpus,omitempty" toml:"NanoCpus,omitempty"` BlkioWeight int64 `json:"BlkioWeight,omitempty" yaml:"BlkioWeight,omitempty" toml:"BlkioWeight,omitempty"` BlkioWeightDevice []BlockWeight `json:"BlkioWeightDevice,omitempty" yaml:"BlkioWeightDevice,omitempty" toml:"BlkioWeightDevice,omitempty"` BlkioDeviceReadBps []BlockLimit `json:"BlkioDeviceReadBps,omitempty" yaml:"BlkioDeviceReadBps,omitempty" toml:"BlkioDeviceReadBps,omitempty"` diff -Nru golang-github-fsouza-go-dockerclient-1.6.3/debian/changelog golang-github-fsouza-go-dockerclient-1.6.0/debian/changelog --- golang-github-fsouza-go-dockerclient-1.6.3/debian/changelog 2020-02-26 22:50:08.000000000 +0000 +++ golang-github-fsouza-go-dockerclient-1.6.0/debian/changelog 2022-04-06 19:21:37.000000000 +0000 @@ -1,10 +1,10 @@ -golang-github-fsouza-go-dockerclient (1.6.3-1) unstable; urgency=medium +golang-github-fsouza-go-dockerclient (1.6.0-2ubuntu0.20.04.1) focal; urgency=medium - * New upstream release. - * Standards-Version: 4.5.0. - * Depend on non-transitional "logrus-dev" package. + * Build with Golang 1.16 (LP: #1960449). + - d/control: b-d on golang-1.16-go instead of golang-any. + - d/rules: add Golang 1.16 to $PATH since it is not the default. - -- Dmitry Smirnov Thu, 27 Feb 2020 09:50:08 +1100 + -- Lucas Kanashiro Wed, 06 Apr 2022 16:21:37 -0300 golang-github-fsouza-go-dockerclient (1.6.0-2) unstable; urgency=medium diff -Nru golang-github-fsouza-go-dockerclient-1.6.3/debian/compat golang-github-fsouza-go-dockerclient-1.6.0/debian/compat --- golang-github-fsouza-go-dockerclient-1.6.3/debian/compat 1970-01-01 00:00:00.000000000 +0000 +++ golang-github-fsouza-go-dockerclient-1.6.0/debian/compat 2019-09-11 07:40:01.000000000 +0000 @@ -0,0 +1 @@ +12 diff -Nru golang-github-fsouza-go-dockerclient-1.6.3/debian/control golang-github-fsouza-go-dockerclient-1.6.0/debian/control --- golang-github-fsouza-go-dockerclient-1.6.3/debian/control 2020-02-26 22:49:33.000000000 +0000 +++ golang-github-fsouza-go-dockerclient-1.6.0/debian/control 2022-04-06 19:21:37.000000000 +0000 @@ -1,12 +1,13 @@ Source: golang-github-fsouza-go-dockerclient Section: devel Priority: optional -Standards-Version: 4.5.0 -Maintainer: pkg-go +Standards-Version: 4.4.1 +Maintainer: Ubuntu Developers +XSBC-Original-Maintainer: pkg-go Uploaders: Dmitry Smirnov -Build-Depends: debhelper-compat (= 12), +Build-Depends: debhelper (>= 12~), dh-golang, - golang-any, + golang-1.16-go, golang-github-docker-docker-dev (>= 17.12.1~), golang-github-docker-go-units-dev, golang-github-google-go-cmp-dev (>= 0.2.0~), @@ -26,12 +27,12 @@ Package: golang-github-fsouza-go-dockerclient-dev Architecture: all Depends: ${misc:Depends}, + golang-logrus-dev, golang-github-docker-docker-dev (>= 17.12.1~), golang-github-docker-go-units-dev, - golang-github-gorilla-context-dev, - golang-github-gorilla-mux-dev, # golang-github-opencontainers-runc-dev, - golang-github-sirupsen-logrus-dev, + golang-github-gorilla-mux-dev, + golang-github-gorilla-context-dev, golang-github-stretchr-testify-dev, golang-golang-x-net-dev, golang-golang-x-sys-dev, diff -Nru golang-github-fsouza-go-dockerclient-1.6.3/debian/rules golang-github-fsouza-go-dockerclient-1.6.0/debian/rules --- golang-github-fsouza-go-dockerclient-1.6.3/debian/rules 2019-09-27 00:21:35.000000000 +0000 +++ golang-github-fsouza-go-dockerclient-1.6.0/debian/rules 2022-04-06 19:21:35.000000000 +0000 @@ -7,5 +7,8 @@ export DH_GOLANG_INSTALL_EXTRA := testing/data export DH_GOLANG_EXCLUDES := internal/jsonmessage +# Build with Golang 1.16 +export PATH := /usr/lib/go-1.16/bin:$(PATH) + %: dh $@ --buildsystem=golang --with=golang --builddirectory=_build diff -Nru golang-github-fsouza-go-dockerclient-1.6.3/.golangci.yaml golang-github-fsouza-go-dockerclient-1.6.0/.golangci.yaml --- golang-github-fsouza-go-dockerclient-1.6.3/.golangci.yaml 2020-02-20 19:25:13.000000000 +0000 +++ golang-github-fsouza-go-dockerclient-1.6.0/.golangci.yaml 2019-11-08 21:11:21.000000000 +0000 @@ -25,6 +25,5 @@ - gochecknoglobals - gocognit - goconst - - gomnd - lll - wsl diff -Nru golang-github-fsouza-go-dockerclient-1.6.3/go.mod golang-github-fsouza-go-dockerclient-1.6.0/go.mod --- golang-github-fsouza-go-dockerclient-1.6.3/go.mod 2020-02-20 19:25:13.000000000 +0000 +++ golang-github-fsouza-go-dockerclient-1.6.0/go.mod 2019-11-08 21:11:21.000000000 +0000 @@ -11,12 +11,12 @@ github.com/docker/docker v1.4.2-0.20191101170500-ac7306503d23 github.com/docker/go-connections v0.4.0 // indirect github.com/docker/go-units v0.4.0 - github.com/google/go-cmp v0.4.0 - github.com/gorilla/mux v1.7.4 + github.com/google/go-cmp v0.3.1 + github.com/gorilla/mux v1.7.3 github.com/morikuni/aec v0.0.0-20170113033406-39771216ff4c // indirect github.com/opencontainers/go-digest v1.0.0-rc1 // indirect github.com/opencontainers/image-spec v1.0.1 // indirect github.com/opencontainers/runc v0.1.1 // indirect - golang.org/x/crypto v0.0.0-20200220183623-bac4c82f6975 + golang.org/x/crypto v0.0.0-20190927123631-a832865fa7ad google.golang.org/grpc v1.22.0 // indirect ) diff -Nru golang-github-fsouza-go-dockerclient-1.6.3/go.sum golang-github-fsouza-go-dockerclient-1.6.0/go.sum --- golang-github-fsouza-go-dockerclient-1.6.3/go.sum 2020-02-20 19:25:13.000000000 +0000 +++ golang-github-fsouza-go-dockerclient-1.6.0/go.sum 2019-11-08 21:11:21.000000000 +0000 @@ -41,10 +41,10 @@ github.com/golang/protobuf v1.3.1/go.mod h1:6lQm79b+lXiMfvg/cZm0SGofjICqVBUtrP5yJMmIC1U= github.com/google/go-cmp v0.2.0/go.mod h1:oXzfMopK8JAjlY9xF4vHSVASa0yLyX7SntLO5aqRK0M= github.com/google/go-cmp v0.3.0/go.mod h1:8QqcDgzrUqlUb/G2PQTWiueGozuR1884gddMywk6iLU= -github.com/google/go-cmp v0.4.0 h1:xsAVV57WRhGj6kEIi8ReJzQlHHqcBYCElAvkovg3B/4= -github.com/google/go-cmp v0.4.0/go.mod h1:v8dTdLbMG2kIc/vJvl+f65V22dbkXbowE6jgT/gNBxE= -github.com/gorilla/mux v1.7.4 h1:VuZ8uybHlWmqV03+zRzdwKL4tUnIp1MAQtp1mIFE1bc= -github.com/gorilla/mux v1.7.4/go.mod h1:DVbg23sWSpFRCP0SfiEN6jmj59UnW/n46BH5rLB71So= +github.com/google/go-cmp v0.3.1 h1:Xye71clBPdm5HgqGwUkwhbynsUJZhDbS20FvLhQ2izg= +github.com/google/go-cmp v0.3.1/go.mod h1:8QqcDgzrUqlUb/G2PQTWiueGozuR1884gddMywk6iLU= +github.com/gorilla/mux v1.7.3 h1:gnP5JzjVOuiZD07fKKToCAOjS0yOpj/qPETTXCCS6hw= +github.com/gorilla/mux v1.7.3/go.mod h1:1lud6UwP+6orDFRuTfBEV8e9/aOM/c4fVVCaMa2zaAs= github.com/hashicorp/errwrap v0.0.0-20141028054710-7554cd9344ce/go.mod h1:YH+1FKiLXxHSkmPseP+kNlulaMuP3n2brvKWEqk/Jc4= github.com/hashicorp/go-multierror v0.0.0-20161216184304-ed905158d874/go.mod h1:JMRHfdO9jKNzS/+BTlxCjKNQHg/jZAft8U7LloJvN7I= github.com/hashicorp/golang-lru v0.5.1 h1:0hERBMJE1eitiLkihrMvRVBYAkpHzc/J3QdDN+dAcgU= @@ -84,8 +84,8 @@ go.opencensus.io v0.22.0/go.mod h1:+kGneAE2xo2IficOXnaByMWTGM9T73dGwxeWcUqIpI8= golang.org/x/crypto v0.0.0-20190308221718-c2843e01d9a2 h1:VklqNMn3ovrHsnt90PveolxSbWFaJdECFbxSq0Mqo2M= golang.org/x/crypto v0.0.0-20190308221718-c2843e01d9a2/go.mod h1:djNgcEr1/C05ACkg1iLfiJU5Ep61QUkGW8qpdssI0+w= -golang.org/x/crypto v0.0.0-20200220183623-bac4c82f6975 h1:/Tl7pH94bvbAAHBdZJT947M/+gp0+CqQXDtMRC0fseo= -golang.org/x/crypto v0.0.0-20200220183623-bac4c82f6975/go.mod h1:LzIPMQfyMNhhGPhUkYOs5KpL4U8rLKemX1yGLhDgUto= +golang.org/x/crypto v0.0.0-20190927123631-a832865fa7ad h1:5E5raQxcv+6CZ11RrBYQe5WRbUIWpScjh0kvHZkZIrQ= +golang.org/x/crypto v0.0.0-20190927123631-a832865fa7ad/go.mod h1:yigFU9vqHzYiE8UmvKecakEJjdnWj3jj499lnFckfCI= golang.org/x/exp v0.0.0-20190121172915-509febef88a4/go.mod h1:CJ0aWSM057203Lf6IL+f9T1iT9GByDxfZKAQTCR3kQA= golang.org/x/lint v0.0.0-20181026193005-c67002cb31c3/go.mod h1:UVdnD1Gm6xHRNCYTkRU2/jEulfH38KcIWyp/GAMgvoE= golang.org/x/lint v0.0.0-20190227174305-5b3e6a55c961/go.mod h1:wehouNa3lNwaWXcvxsM5YxQ5yQlVC4a0KAMCusXpPoU= @@ -119,8 +119,6 @@ golang.org/x/tools v0.0.0-20190226205152-f727befe758c/go.mod h1:9Yl7xja0Znq3iFh3HoIrodX9oNMXvdceNzlUR8zjMvY= golang.org/x/tools v0.0.0-20190311212946-11955173bddd/go.mod h1:LCzVGOaR6xXOjkQ3onu1FJEFr0SW1gC7cKk1uF8kGRs= golang.org/x/tools v0.0.0-20190524140312-2c0ae7006135/go.mod h1:RgjU9mgBXZiqYHBnxXauZ1Gv1EHHAz9KjViQ78xBX0Q= -golang.org/x/xerrors v0.0.0-20191204190536-9bdfabe68543 h1:E7g+9GITq07hpfrRu66IVDexMakfv52eLZ2CXBWiKr4= -golang.org/x/xerrors v0.0.0-20191204190536-9bdfabe68543/go.mod h1:I/5z698sn9Ka8TeJc9MKroUUfqBBauWjQqLJ2OPfmY0= google.golang.org/appengine v1.1.0/go.mod h1:EbEs0AVv82hx2wNQdGPgUI5lhzA/G0D9YwlJXL52JkM= google.golang.org/appengine v1.4.0/go.mod h1:xpcJRLb0r/rnEns0DIKYYv+WjYCduHsrkT7/EB5XEv4= google.golang.org/genproto v0.0.0-20180817151627-c66870c02cf8/go.mod h1:JiN7NxoALGmiZfu7CAH4rXhgtRTLTxftemlI0sWmxmc= diff -Nru golang-github-fsouza-go-dockerclient-1.6.3/LICENSE golang-github-fsouza-go-dockerclient-1.6.0/LICENSE --- golang-github-fsouza-go-dockerclient-1.6.3/LICENSE 2020-02-20 19:25:13.000000000 +0000 +++ golang-github-fsouza-go-dockerclient-1.6.0/LICENSE 2019-11-08 21:11:21.000000000 +0000 @@ -1,4 +1,4 @@ -Copyright (c) 2013-2020, go-dockerclient authors +Copyright (c) 2013-2019, go-dockerclient authors All rights reserved. Redistribution and use in source and binary forms, with or without diff -Nru golang-github-fsouza-go-dockerclient-1.6.3/README.md golang-github-fsouza-go-dockerclient-1.6.0/README.md --- golang-github-fsouza-go-dockerclient-1.6.3/README.md 2020-02-20 19:25:13.000000000 +0000 +++ golang-github-fsouza-go-dockerclient-1.6.0/README.md 2019-11-08 21:11:21.000000000 +0000 @@ -2,7 +2,7 @@ [![Travis Build Status](https://travis-ci.com/fsouza/go-dockerclient.svg?branch=master)](https://travis-ci.com/fsouza/go-dockerclient) [![AppVeyor Build status](https://ci.appveyor.com/api/projects/status/4yusq1f9dqbicobt?svg=true)](https://ci.appveyor.com/project/fsouza/go-dockerclient) -[![GoDoc](https://img.shields.io/badge/api-Godoc-blue.svg?style=flat-square)](https://pkg.go.dev/github.com/docker/docker/api/types?tab=doc#AuthConfig) +[![GoDoc](https://img.shields.io/badge/api-Godoc-blue.svg?style=flat-square)](https://godoc.org/github.com/fsouza/go-dockerclient) This package presents a client for the Docker remote API. It also provides support for the extensions in the [Swarm API](https://docs.docker.com/swarm/swarm-api/). diff -Nru golang-github-fsouza-go-dockerclient-1.6.3/swarm_service.go golang-github-fsouza-go-dockerclient-1.6.0/swarm_service.go --- golang-github-fsouza-go-dockerclient-1.6.3/swarm_service.go 2020-02-20 19:25:13.000000000 +0000 +++ golang-github-fsouza-go-dockerclient-1.6.0/swarm_service.go 2019-11-08 21:11:21.000000000 +0000 @@ -147,7 +147,6 @@ // See https://goo.gl/DwvNMd for more details. type ListServicesOptions struct { Filters map[string][]string - Status bool Context context.Context } diff -Nru golang-github-fsouza-go-dockerclient-1.6.3/swarm_service_test.go golang-github-fsouza-go-dockerclient-1.6.0/swarm_service_test.go --- golang-github-fsouza-go-dockerclient-1.6.3/swarm_service_test.go 2020-02-20 19:25:13.000000000 +0000 +++ golang-github-fsouza-go-dockerclient-1.6.0/swarm_service_test.go 2019-11-08 21:11:21.000000000 +0000 @@ -138,7 +138,7 @@ client := newTestClient(&FakeRoundTripper{message: "no such service", status: http.StatusNotFound}) err := client.RemoveService(RemoveServiceOptions{ID: "a2334"}) expected := &NoSuchService{ID: "a2334"} - if e := err.(*NoSuchService); e.ID != expected.ID { + if !reflect.DeepEqual(err, expected) { t.Errorf("RemoveService: Wrong error returned. Want %#v. Got %#v.", expected, err) } } @@ -253,7 +253,7 @@ update := UpdateServiceOptions{} err := client.UpdateService("notfound", update) expected := &NoSuchService{ID: "notfound"} - if e := err.(*NoSuchService); e.ID != expected.ID { + if !reflect.DeepEqual(err, expected) { t.Errorf("UpdateService: Wrong error returned. Want %#v. Got %#v.", expected, err) } } @@ -266,7 +266,7 @@ t.Errorf("InspectService: Expected service, got %#v", service) } expected := &NoSuchService{ID: "notfound"} - if e := err.(*NoSuchService); e.ID != expected.ID { + if !reflect.DeepEqual(err, expected) { t.Errorf("InspectService: Wrong error returned. Want %#v. Got %#v.", expected, err) } } @@ -608,7 +608,7 @@ var client Client err := client.GetServiceLogs(LogsServiceOptions{}) expected := &NoSuchService{ID: ""} - if e := err.(*NoSuchService); e.ID != expected.ID { + if !reflect.DeepEqual(err, expected) { t.Errorf("AttachToContainer: wrong error. Want %#v. Got %#v.", expected, err) } } diff -Nru golang-github-fsouza-go-dockerclient-1.6.3/tls.go golang-github-fsouza-go-dockerclient-1.6.0/tls.go --- golang-github-fsouza-go-dockerclient-1.6.3/tls.go 2020-02-20 19:25:13.000000000 +0000 +++ golang-github-fsouza-go-dockerclient-1.6.0/tls.go 2019-11-08 21:11:21.000000000 +0000 @@ -106,6 +106,7 @@ InsecureSkipVerify: cfg.InsecureSkipVerify, //nolint:gosec MaxVersion: cfg.MaxVersion, MinVersion: cfg.MinVersion, + NameToCertificate: cfg.NameToCertificate, NextProtos: cfg.NextProtos, PreferServerCipherSuites: cfg.PreferServerCipherSuites, Rand: cfg.Rand, diff -Nru golang-github-fsouza-go-dockerclient-1.6.3/travis-scripts/win-setup.bash golang-github-fsouza-go-dockerclient-1.6.0/travis-scripts/win-setup.bash --- golang-github-fsouza-go-dockerclient-1.6.3/travis-scripts/win-setup.bash 2020-02-20 19:25:13.000000000 +0000 +++ golang-github-fsouza-go-dockerclient-1.6.0/travis-scripts/win-setup.bash 2019-11-08 21:11:21.000000000 +0000 @@ -1,5 +1,5 @@ #!/bin/bash -x if [[ $TRAVIS_OS_NAME == "windows" ]]; then - choco install make + choco install make --version 3.81.4 fi diff -Nru golang-github-fsouza-go-dockerclient-1.6.3/.travis.yml golang-github-fsouza-go-dockerclient-1.6.0/.travis.yml --- golang-github-fsouza-go-dockerclient-1.6.3/.travis.yml 2020-02-20 19:25:13.000000000 +0000 +++ golang-github-fsouza-go-dockerclient-1.6.0/.travis.yml 2019-11-08 21:11:21.000000000 +0000 @@ -3,7 +3,6 @@ go: - 1.12.x - 1.13.x - - 1.14rc1 os: - linux - osx