mirror of
https://github.com/moby/moby.git
synced 2026-01-11 18:51:37 +00:00
- deprecate sockets.GetProxyEnv, sockets.DialerFromEnvironment - add support for unix sockets on Windows - remove legacy CBC cipher suites from client config - align client and server defaults to be the same. - remove support for encrypted TLS private keys. - nat: optimize ParsePortSpec full diff: https://github.com/docker/go-connections/compare/v0.5.0...v0.6.0 Signed-off-by: Sebastiaan van Stijn <github@gone.nl>
35 lines
1.1 KiB
Modula-2
35 lines
1.1 KiB
Modula-2
module github.com/moby/moby/client
|
|
|
|
go 1.23.0
|
|
|
|
require (
|
|
github.com/Microsoft/go-winio v0.6.2
|
|
github.com/containerd/errdefs v1.0.0
|
|
github.com/containerd/errdefs/pkg v0.3.0
|
|
github.com/distribution/reference v0.6.0
|
|
github.com/docker/go-connections v0.6.0
|
|
github.com/docker/go-units v0.5.0
|
|
github.com/moby/moby/api v1.52.0-alpha.1
|
|
github.com/moby/term v0.5.2
|
|
github.com/opencontainers/go-digest v1.0.0
|
|
github.com/opencontainers/image-spec v1.1.1
|
|
go.opentelemetry.io/contrib/instrumentation/net/http/otelhttp v0.60.0
|
|
go.opentelemetry.io/otel/trace v1.35.0
|
|
gotest.tools/v3 v3.5.2
|
|
)
|
|
|
|
require (
|
|
github.com/Azure/go-ansiterm v0.0.0-20250102033503-faa5f7b0171c // indirect
|
|
github.com/felixge/httpsnoop v1.0.4 // indirect
|
|
github.com/go-logr/logr v1.4.2 // indirect
|
|
github.com/go-logr/stdr v1.2.2 // indirect
|
|
github.com/google/go-cmp v0.7.0 // indirect
|
|
github.com/moby/docker-image-spec v1.3.1 // indirect
|
|
go.opentelemetry.io/auto/sdk v1.1.0 // indirect
|
|
go.opentelemetry.io/otel v1.35.0 // indirect
|
|
go.opentelemetry.io/otel/metric v1.35.0 // indirect
|
|
golang.org/x/sys v0.33.0 // indirect
|
|
)
|
|
|
|
replace github.com/moby/moby/api => ../api
|