diff --git a/cmd/mockery.go b/cmd/mockery.go index eb7487c6..7b4579d9 100644 --- a/cmd/mockery.go +++ b/cmd/mockery.go @@ -238,9 +238,9 @@ func (r *RootApp) Run() error { if err != nil { return fmt.Errorf("failed to get package from config: %w", err) } - warnAlpha( + warnBeta( ctx, - "use of the 'packages' config variable is currently in an alpha state. Use at your own risk.", + "use of the 'packages' config variable is currently in a beta state. Use at your own risk.", map[string]any{ "discussion": "https://github.com/vektra/mockery/discussions/549", }) @@ -427,6 +427,6 @@ func infoDiscussion(ctx context.Context, message string, fields map[string]any) info(ctx, "DISCUSSION", message, fields) } -func warnAlpha(ctx context.Context, message string, fields map[string]any) { - warn(ctx, "ALPHA FEATURE", message, fields) +func warnBeta(ctx context.Context, message string, fields map[string]any) { + warn(ctx, "BETA FEATURE", message, fields) } diff --git a/docs/features.md b/docs/features.md index 29a08c3d..2527c8e2 100644 --- a/docs/features.md +++ b/docs/features.md @@ -94,8 +94,8 @@ func (_m *Handler) HandleMessage(m pubsub.Message) error { ------------------------ :octicons-tag-24: v2.21.0 ยท :material-test-tube: Alpha Feature -!!! danger - This feature is considered alpha. It is likely that bugs exist, and subfeatures may be added/subtracted/modified at any time. Use at your own risk. This warning will be updated as this feature matures. +!!! warning + This feature is considered beta. The feature set has been solidifed, but we are asking users to beta-test for any bugs. Use at your own risk. This warning will be updated as this feature matures. !!! info See the [Migration Docs](/mockery/migrating_to_packages/) on how to migrate to this new feature.