From d51ae5ced9534fdcc66b2c2cc15f72f255190c6e Mon Sep 17 00:00:00 2001 From: Andy Feller Date: Mon, 29 Apr 2024 14:45:20 -0400 Subject: [PATCH] Update attestation's beta designation --- pkg/cmd/attestation/attestation.go | 4 ++-- pkg/cmd/attestation/download/download.go | 4 ++-- pkg/cmd/attestation/inspect/inspect.go | 4 ++-- pkg/cmd/attestation/tufrootverify/tufrootverify.go | 4 ++-- pkg/cmd/attestation/verify/verify.go | 4 ++-- 5 files changed, 10 insertions(+), 10 deletions(-) diff --git a/pkg/cmd/attestation/attestation.go b/pkg/cmd/attestation/attestation.go index 1283f4732..5b358a6bf 100644 --- a/pkg/cmd/attestation/attestation.go +++ b/pkg/cmd/attestation/attestation.go @@ -14,10 +14,10 @@ import ( func NewCmdAttestation(f *cmdutil.Factory) *cobra.Command { root := &cobra.Command{ Use: "attestation [subcommand]", - Short: "(BETA) Work with artifact attestations", + Short: "Work with artifact attestations", Aliases: []string{"at"}, Long: heredoc.Doc(` - # BETA: Feature subject to change + # NOTE: This feature is currently in beta, and subject to change. Download and verify artifact attestations. `), diff --git a/pkg/cmd/attestation/download/download.go b/pkg/cmd/attestation/download/download.go index a287edefd..fd6aa5f01 100644 --- a/pkg/cmd/attestation/download/download.go +++ b/pkg/cmd/attestation/download/download.go @@ -21,9 +21,9 @@ func NewDownloadCmd(f *cmdutil.Factory, runF func(*Options) error) *cobra.Comman downloadCmd := &cobra.Command{ Use: "download [ | oci://] [--owner | --repo]", Args: cmdutil.ExactArgs(1, "must specify file path or container image URI, as well as one of --owner or --repo"), - Short: "(BETA) Download an artifact's Sigstore bundle(s) for offline use", + Short: "Download an artifact's Sigstore bundle(s) for offline use", Long: heredoc.Docf(` - # BETA: Feature subject to change + # NOTE: This feature is currently in beta, and subject to change. Download an artifact's attestations, aka Sigstore bundle(s), for offline use. diff --git a/pkg/cmd/attestation/inspect/inspect.go b/pkg/cmd/attestation/inspect/inspect.go index fe3b240af..36682fac5 100644 --- a/pkg/cmd/attestation/inspect/inspect.go +++ b/pkg/cmd/attestation/inspect/inspect.go @@ -21,9 +21,9 @@ func NewInspectCmd(f *cmdutil.Factory, runF func(*Options) error) *cobra.Command Use: "inspect [ | oci://] --bundle ", Args: cmdutil.ExactArgs(1, "must specify file path or container image URI, as well --bundle"), Hidden: true, - Short: "(BETA) Inspect a sigstore bundle", + Short: "Inspect a sigstore bundle", Long: heredoc.Docf(` - # BETA: Feature subject to change + # NOTE: This feature is currently in beta, and subject to change. Inspect a downloaded Sigstore bundle for a given artifact. diff --git a/pkg/cmd/attestation/tufrootverify/tufrootverify.go b/pkg/cmd/attestation/tufrootverify/tufrootverify.go index 5a4f704b3..63d0f949b 100644 --- a/pkg/cmd/attestation/tufrootverify/tufrootverify.go +++ b/pkg/cmd/attestation/tufrootverify/tufrootverify.go @@ -21,10 +21,10 @@ func NewTUFRootVerifyCmd(f *cmdutil.Factory, runF func() error) *cobra.Command { var cmd = cobra.Command{ Use: "tuf-root-verify --mirror --root ", Args: cobra.ExactArgs(0), - Short: "(BETA) Verify the TUF repository from a provided TUF root", + Short: "Verify the TUF repository from a provided TUF root", Hidden: true, Long: heredoc.Docf(` - # BETA: Feature subject to change + # NOTE: This feature is currently in beta, and subject to change. Verify a TUF repository with a local TUF root. diff --git a/pkg/cmd/attestation/verify/verify.go b/pkg/cmd/attestation/verify/verify.go index ebf9ce61b..1b3a6b511 100644 --- a/pkg/cmd/attestation/verify/verify.go +++ b/pkg/cmd/attestation/verify/verify.go @@ -23,9 +23,9 @@ func NewVerifyCmd(f *cmdutil.Factory, runF func(*Options) error) *cobra.Command verifyCmd := &cobra.Command{ Use: "verify [ | oci://] [--owner | --repo]", Args: cmdutil.ExactArgs(1, "must specify file path or container image URI, as well as one of --owner or --repo"), - Short: "(BETA) Verify an artifact's integrity using attestations", + Short: "Verify an artifact's integrity using attestations", Long: heredoc.Docf(` - # BETA: Feature subject to change + # NOTE: This feature is currently in beta, and subject to change. Verify the integrity and provenance of an artifact using its associated cryptographically signed attestations.