From 6a50c4f70054cf6e60124d911e4ca8754617e21d Mon Sep 17 00:00:00 2001 From: Sebastiaan van Stijn Date: Mon, 12 Jun 2023 14:53:30 +0200 Subject: [PATCH] cli-plugins: remove deprecated Metadata.Experimental This field was marked deprecated in 977d3ae046ec6c64be8788a8712251ed547a2bdb, which is part of Docker 20.10 and up. This patch removes the field. Signed-off-by: Sebastiaan van Stijn --- cli-plugins/manager/metadata.go | 4 ---- 1 file changed, 4 deletions(-) diff --git a/cli-plugins/manager/metadata.go b/cli-plugins/manager/metadata.go index 5aaf5ca11a..2f24438638 100644 --- a/cli-plugins/manager/metadata.go +++ b/cli-plugins/manager/metadata.go @@ -22,8 +22,4 @@ type Metadata struct { ShortDescription string `json:",omitempty"` // URL is a pointer to the plugin's homepage. URL string `json:",omitempty"` - // Experimental specifies whether the plugin is experimental. - // - // Deprecated: experimental features are now always enabled in the CLI - Experimental bool `json:",omitempty"` }