From 328fac3a63beca24f18db63b5931e95f1054fd37 Mon Sep 17 00:00:00 2001 From: Sebastiaan van Stijn Date: Fri, 31 Mar 2023 02:40:34 +0200 Subject: [PATCH] cli/context/docker: remove deprecated Endpoint.TLSPassword This field was deprecated in 15535d45947a5501248ba2bfbc433486f782a604, which is part of docker 23.0, so users should have had a chance to migrate. Signed-off-by: Sebastiaan van Stijn --- cli/context/docker/load.go | 6 ------ 1 file changed, 6 deletions(-) diff --git a/cli/context/docker/load.go b/cli/context/docker/load.go index 09ec40505a..76f6eaf305 100644 --- a/cli/context/docker/load.go +++ b/cli/context/docker/load.go @@ -25,12 +25,6 @@ type EndpointMeta = context.EndpointMetaBase type Endpoint struct { EndpointMeta TLSData *context.TLSData - - // Deprecated: Use of encrypted TLS private keys has been deprecated, and - // will be removed in a future release. Golang has deprecated support for - // legacy PEM encryption (as specified in RFC 1423), as it is insecure by - // design (see https://go-review.googlesource.com/c/go/+/264159). - TLSPassword string } // WithTLSData loads TLS materials for the endpoint