diff --git a/.changeset/remove-plugin-header-action-define-params.md b/.changeset/remove-plugin-header-action-define-params.md index 8bbdf99466..fa19efeb37 100644 --- a/.changeset/remove-plugin-header-action-define-params.md +++ b/.changeset/remove-plugin-header-action-define-params.md @@ -1,5 +1,5 @@ --- -'@backstage/frontend-plugin-api': minor +'@backstage/frontend-plugin-api': patch --- -**BREAKING**: Removed the `defineParams` callback from `PluginHeaderActionBlueprint`. Params are now typed inline on the factory, matching the pattern used by `PageBlueprint`, `SubPageBlueprint`, and others. To migrate, change `params: defineParams => defineParams({ ... })` to `params: { ... }` when calling `PluginHeaderActionBlueprint.make(...)`. +Removed the `defineParams` callback from `PluginHeaderActionBlueprint`. Params are now typed inline on the factory, matching the pattern used by `PageBlueprint`, `SubPageBlueprint`, and others.