-
Notifications
You must be signed in to change notification settings - Fork 64
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Bump all dependencies Signed-off-by: Silvin Lubecki <silvin.lubecki@docker.com>
- Loading branch information
1 parent
44062da
commit eae516c
Showing
9 changed files
with
525 additions
and
1,077 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,37 +1,98 @@ | ||
module github.com/docker/hub-tool | ||
|
||
go 1.15 | ||
go 1.21 | ||
|
||
require ( | ||
github.com/bitly/go-hostpool v0.1.0 // indirect | ||
github.com/cli/cli v1.14.0 | ||
github.com/containerd/containerd v1.7.13 | ||
github.com/docker/cli v25.0.3+incompatible | ||
github.com/docker/compose-cli v1.0.35 | ||
github.com/docker/distribution v2.8.3+incompatible | ||
github.com/docker/docker v25.0.3+incompatible | ||
github.com/docker/go-units v0.5.0 | ||
github.com/google/uuid v1.6.0 | ||
github.com/mattn/go-isatty v0.0.14 | ||
github.com/mgutz/ansi v0.0.0-20200706080929-d51e80ef957d | ||
github.com/moby/term v0.5.0 | ||
github.com/opencontainers/image-spec v1.1.0 | ||
github.com/pkg/errors v0.9.1 | ||
github.com/sirupsen/logrus v1.9.3 | ||
github.com/spf13/cobra v1.8.0 | ||
github.com/spf13/pflag v1.0.5 | ||
golang.org/x/sync v0.6.0 | ||
gopkg.in/square/go-jose.v2 v2.6.0 | ||
gotest.tools/v3 v3.5.1 | ||
) | ||
|
||
require ( | ||
github.com/AdaLogics/go-fuzz-headers v0.0.0-20230811130428-ced1acdcaa24 // indirect | ||
github.com/Azure/go-ansiterm v0.0.0-20210617225240-d185dfc1b5a1 // indirect | ||
github.com/Microsoft/go-winio v0.6.1 // indirect | ||
github.com/Microsoft/hcsshim v0.11.4 // indirect | ||
github.com/Shopify/logrus-bugsnag v0.0.0-20230117174420-439a4b8ba167 // indirect | ||
github.com/agl/ed25519 v0.0.0-20170116200512-5312a6153412 // indirect | ||
github.com/beorn7/perks v1.0.1 // indirect | ||
github.com/briandowns/spinner v1.11.1 // indirect | ||
github.com/bugsnag/bugsnag-go v1.5.3 // indirect | ||
github.com/cenkalti/backoff v2.2.1+incompatible // indirect | ||
github.com/cli/cli v1.1.0 | ||
github.com/cespare/xxhash/v2 v2.2.0 // indirect | ||
github.com/cli/safeexec v1.0.0 // indirect | ||
github.com/cloudflare/cfssl v1.4.1 // indirect | ||
github.com/containerd/containerd v1.4.3 | ||
github.com/docker/cli v20.10.3+incompatible | ||
github.com/docker/compose-cli v1.0.5-0.20201215113846-10a19b115968 | ||
github.com/docker/distribution v2.7.1+incompatible | ||
github.com/docker/docker v20.10.3+incompatible | ||
github.com/docker/docker-credential-helpers v0.6.4-0.20210125172408-38bea2ce277a // indirect | ||
github.com/docker/go-units v0.4.0 | ||
github.com/containerd/log v0.1.0 // indirect | ||
github.com/distribution/reference v0.5.0 // indirect | ||
github.com/docker/compose/v2 v2.2.0 // indirect | ||
github.com/docker/docker-credential-helpers v0.7.0 // indirect | ||
github.com/docker/go v1.5.1-1.0.20160303222718-d30aec9fd63c // indirect | ||
github.com/docker/go-connections v0.4.0 // indirect | ||
github.com/docker/go-metrics v0.0.1 // indirect | ||
github.com/docker/libtrust v0.0.0-20160708172513-aabc10ec26b7 // indirect | ||
github.com/fatih/color v1.9.0 // indirect | ||
github.com/felixge/httpsnoop v1.0.3 // indirect | ||
github.com/fvbommel/sortorder v1.0.2 // indirect | ||
github.com/go-logr/logr v1.2.4 // indirect | ||
github.com/go-logr/stdr v1.2.2 // indirect | ||
github.com/go-sql-driver/mysql v1.5.0 // indirect | ||
github.com/gofrs/uuid v3.3.0+incompatible // indirect | ||
github.com/google/uuid v1.1.2 | ||
github.com/gogo/protobuf v1.3.2 // indirect | ||
github.com/golang/protobuf v1.5.3 // indirect | ||
github.com/google/go-cmp v0.5.9 // indirect | ||
github.com/google/shlex v0.0.0-20191202100458-e7afc7fbc510 // indirect | ||
github.com/gorilla/mux v1.8.0 // indirect | ||
github.com/hailocab/go-hostpool v0.0.0-20160125115350-e80d13ce29ed // indirect | ||
github.com/hashicorp/go-version v1.6.0 // indirect | ||
github.com/inconshreveable/mousetrap v1.1.0 // indirect | ||
github.com/jinzhu/gorm v1.9.16 // indirect | ||
github.com/lib/pq v1.8.0 // indirect | ||
github.com/mattn/go-sqlite3 v1.14.3 // indirect | ||
github.com/miekg/pkcs11 v1.0.3 // indirect | ||
github.com/moby/sys/mount v0.2.0 // indirect | ||
github.com/moby/term v0.0.0-20201110203204-bea5bbe245bf | ||
github.com/opencontainers/image-spec v1.0.1 | ||
github.com/pkg/errors v0.9.1 | ||
github.com/sirupsen/logrus v1.7.0 | ||
github.com/spf13/cobra v1.1.1 | ||
github.com/spf13/pflag v1.0.5 | ||
golang.org/x/sync v0.0.0-20201020160332-67f06af15bc9 | ||
golang.org/x/sys v0.0.0-20210124154548-22da62e12c0c // indirect | ||
gopkg.in/square/go-jose.v2 v2.5.1 | ||
gotest.tools/v3 v3.0.3 | ||
github.com/klauspost/compress v1.16.0 // indirect | ||
github.com/lucasb-eyer/go-colorful v1.2.0 // indirect | ||
github.com/mattn/go-colorable v0.1.11 // indirect | ||
github.com/mattn/go-runewidth v0.0.10 // indirect | ||
github.com/matttproud/golang_protobuf_extensions v1.0.4 // indirect | ||
github.com/miekg/pkcs11 v1.1.1 // indirect | ||
github.com/moby/locker v1.0.1 // indirect | ||
github.com/moby/sys/sequential v0.5.0 // indirect | ||
github.com/morikuni/aec v1.0.0 // indirect | ||
github.com/muesli/termenv v0.8.1 // indirect | ||
github.com/opencontainers/go-digest v1.0.0 // indirect | ||
github.com/prometheus/client_golang v1.14.0 // indirect | ||
github.com/prometheus/client_model v0.3.0 // indirect | ||
github.com/prometheus/common v0.37.0 // indirect | ||
github.com/prometheus/procfs v0.8.0 // indirect | ||
github.com/rivo/uniseg v0.2.0 // indirect | ||
github.com/theupdateframework/notary v0.6.1 // indirect | ||
go.opentelemetry.io/contrib/instrumentation/net/http/otelhttp v0.45.0 // indirect | ||
go.opentelemetry.io/otel v1.19.0 // indirect | ||
go.opentelemetry.io/otel/metric v1.19.0 // indirect | ||
go.opentelemetry.io/otel/trace v1.19.0 // indirect | ||
golang.org/x/crypto v0.14.0 // indirect | ||
golang.org/x/mod v0.11.0 // indirect | ||
golang.org/x/net v0.17.0 // indirect | ||
golang.org/x/sys v0.13.0 // indirect | ||
golang.org/x/term v0.13.0 // indirect | ||
golang.org/x/tools v0.10.0 // indirect | ||
google.golang.org/genproto/googleapis/rpc v0.0.0-20230711160842-782d3b101e98 // indirect | ||
google.golang.org/grpc v1.58.3 // indirect | ||
google.golang.org/protobuf v1.31.0 // indirect | ||
gopkg.in/dancannon/gorethink.v3 v3.0.5 // indirect | ||
gopkg.in/fatih/pool.v2 v2.0.0 // indirect | ||
gopkg.in/gorethink/gorethink.v3 v3.0.5 // indirect | ||
) |
Oops, something went wrong.