From dced38b1e4c96a432647ca40d1482e66c7bc7f36 Mon Sep 17 00:00:00 2001 From: wesleymccollam Date: Mon, 2 Mar 2026 12:24:58 -0500 Subject: [PATCH 1/2] add deprecation message to license command --- cmd/license/license.go | 1 + 1 file changed, 1 insertion(+) diff --git a/cmd/license/license.go b/cmd/license/license.go index ad44cefe..2c7e3d45 100644 --- a/cmd/license/license.go +++ b/cmd/license/license.go @@ -27,6 +27,7 @@ func NewLicenseCommand() *cobra.Command { Args: common.ExactArgs(0), DisableFlagsInUseLine: true, // We write our own flags in @Use attribute Example: licenseCommandExamples, + Deprecated: "This command is deprecated and will be removed in a future release.", Long: `Request a new evaluation license for a specific product and version. The new license request will be sent to the Ping Identity license server.`, From 3fe8a4b1d3abbaba13fa8ec4398c68388356d032 Mon Sep 17 00:00:00 2001 From: wesleymccollam Date: Tue, 3 Mar 2026 08:24:25 -0500 Subject: [PATCH 2/2] edit deprecated message --- cmd/license/license.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cmd/license/license.go b/cmd/license/license.go index 2c7e3d45..643c1ae3 100644 --- a/cmd/license/license.go +++ b/cmd/license/license.go @@ -27,7 +27,7 @@ func NewLicenseCommand() *cobra.Command { Args: common.ExactArgs(0), DisableFlagsInUseLine: true, // We write our own flags in @Use attribute Example: licenseCommandExamples, - Deprecated: "This command is deprecated and will be removed in a future release.", + Deprecated: "This command is deprecated and will be removed in the next major release.", Long: `Request a new evaluation license for a specific product and version. The new license request will be sent to the Ping Identity license server.`,