From cafdcf283e541fc51fcd504efab0754220d248e7 Mon Sep 17 00:00:00 2001 From: Sebastiaan van Stijn Date: Tue, 9 May 2023 22:17:27 +0200 Subject: [PATCH] cli-plugins/manager: fix deprecation comment of Metadata.Experimental This field was marked deprecated in 977d3ae046ec6c64be8788a8712251ed547a2bdb, which is part of v20.10 and up, but the comment was missing a newline before the deprecation message, which may be picked up by IDEs, but is not matching the correct format, so may not be picked up by linters. This patch fixes the format, to make sure linters pick up that the field is deprecated. Signed-off-by: Sebastiaan van Stijn (cherry picked from commit 72e3813ab91d482c7a1f06abb16005cade7f002b) Signed-off-by: Sebastiaan van Stijn --- cli-plugins/manager/metadata.go | 1 + 1 file changed, 1 insertion(+) diff --git a/cli-plugins/manager/metadata.go b/cli-plugins/manager/metadata.go index 5c80c1db86..5aaf5ca11a 100644 --- a/cli-plugins/manager/metadata.go +++ b/cli-plugins/manager/metadata.go @@ -23,6 +23,7 @@ type Metadata struct { // 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"` }