From 7ecdb624008a49db6e47c1a49af72ba207e831ae Mon Sep 17 00:00:00 2001 From: Camila Belo Date: Thu, 21 Aug 2025 14:40:21 +0200 Subject: [PATCH] docs: update nfs status Signed-off-by: Camila Belo --- docs/frontend-system/architecture/33-utility-apis.md | 4 ---- docs/frontend-system/building-plugins/02-testing.md | 6 ------ docs/frontend-system/index.md | 2 +- 3 files changed, 1 insertion(+), 11 deletions(-) diff --git a/docs/frontend-system/architecture/33-utility-apis.md b/docs/frontend-system/architecture/33-utility-apis.md index ce67956281..44d31f7200 100644 --- a/docs/frontend-system/architecture/33-utility-apis.md +++ b/docs/frontend-system/architecture/33-utility-apis.md @@ -5,10 +5,6 @@ sidebar_label: Utility APIs description: Utility APIs --- -:::note Note -The new frontend system is in alpha and is only supported by a small number of plugins. -::: - ## Overview Utility APIs are pieces of standalone functionality, interfaces that can be requested by plugins to use. They are defined by a TypeScript interface as well as a reference (an "API ref") used to access its implementation. They can be provided both by plugins and the core framework, and are themselves [extensions](../architecture/20-extensions.md) that can have inputs, be replaced, and be declaratively configured in your app-config. diff --git a/docs/frontend-system/building-plugins/02-testing.md b/docs/frontend-system/building-plugins/02-testing.md index cf3fb42b82..21449a5bef 100644 --- a/docs/frontend-system/building-plugins/02-testing.md +++ b/docs/frontend-system/building-plugins/02-testing.md @@ -7,12 +7,6 @@ description: Testing plugins in the frontend system # Testing Frontend Plugins -:::note Note - -The new frontend system is in alpha, and some plugins do not yet fully implement it. - -::: - Utilities for testing frontend features and components are available in `@backstage/frontend-test-utils`. ## Testing React components diff --git a/docs/frontend-system/index.md b/docs/frontend-system/index.md index 13ece9725b..dff54289c9 100644 --- a/docs/frontend-system/index.md +++ b/docs/frontend-system/index.md @@ -7,6 +7,6 @@ description: The Frontend System ## Status -The new frontend system is in alpha, and only a few plugins support the system so far. We do not yet recommend migrating any apps to the new system. If you add support for the new system to your plugin, please do so under a `/alpha` sub-path export. +We recommend migrating any apps to the new system. If you add support for the new system to your plugin, please do so under a `/alpha` sub-path export. You can find an example app setup in the [`app-next` package](https://github.com/backstage/backstage/tree/master/packages/app-next).