From 6fa7d183204046300b972ee4cb8a121e17770e86 Mon Sep 17 00:00:00 2001 From: Sebastiaan van Stijn Date: Mon, 1 Sep 2025 17:33:32 +0200 Subject: [PATCH] cli-plugins/manager: deprecate ReexecEnvvar This alias was added in 4321293972a4ed804e8c063868cc5da6147ce73b, which is part of v28.0, but did not deprecate them. They are no longer used in the CLI itself, but may be used by cli-plugin implementations. Signed-off-by: Sebastiaan van Stijn --- cli-plugins/manager/manager.go | 2 ++ 1 file changed, 2 insertions(+) diff --git a/cli-plugins/manager/manager.go b/cli-plugins/manager/manager.go index b76dbbe37667..bab031811761 100644 --- a/cli-plugins/manager/manager.go +++ b/cli-plugins/manager/manager.go @@ -23,6 +23,8 @@ const ( // used to originally invoke the docker CLI when executing a // plugin. Assuming $PATH and $CWD remain unchanged this should allow // the plugin to re-execute the original CLI. + // + // Deprecated: use [metadata.ReexecEnvvar]. This alias will be removed in the next release. ReexecEnvvar = metadata.ReexecEnvvar )