From 49637d0206c22ff943a5a9de4f0ccc8f50c28de5 Mon Sep 17 00:00:00 2001 From: Sebastiaan van Stijn Date: Sun, 21 Jan 2024 14:07:36 +0100 Subject: [PATCH] api/types: remove deprecated image-types These types were deprecated in 48cacbca24c48d451db6e6bfbb08dffa36d97078 (v25.0), and moved to api/types/image. This patch removes the aliases for; - api/types.ImageDeleteResponseItem - api/types.ImageSummary - api/types.ImageMetadata Signed-off-by: Sebastiaan van Stijn --- api/types/types_deprecated.go | 15 --------------- 1 file changed, 15 deletions(-) diff --git a/api/types/types_deprecated.go b/api/types/types_deprecated.go index 647198b9e2..38f004a26a 100644 --- a/api/types/types_deprecated.go +++ b/api/types/types_deprecated.go @@ -6,21 +6,6 @@ import ( "github.com/docker/docker/api/types/swarm" ) -// ImageDeleteResponseItem image delete response item. -// -// Deprecated: use [image.DeleteResponse]. -type ImageDeleteResponseItem = image.DeleteResponse - -// ImageSummary image summary. -// -// Deprecated: use [image.Summary]. -type ImageSummary = image.Summary - -// ImageMetadata contains engine-local data about the image. -// -// Deprecated: use [image.Metadata]. -type ImageMetadata = image.Metadata - // ServiceCreateResponse contains the information returned to a client // on the creation of a new service. //