@backstage/core-plugin-api 1.12.4-next.0 → 1.12.4-next.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/CHANGELOG.md CHANGED
@@ -1,5 +1,14 @@
1
1
  # @backstage/core-plugin-api
2
2
 
3
+ ## 1.12.4-next.1
4
+
5
+ ### Patch Changes
6
+
7
+ - 0452d02: Add optional `description` field to plugin-level feature flags.
8
+ - fe848e0: Changed `useApiHolder` to return an empty `ApiHolder` instead of throwing when used outside of an API context.
9
+ - Updated dependencies
10
+ - @backstage/frontend-plugin-api@0.15.0-next.1
11
+
3
12
  ## 1.12.4-next.0
4
13
 
5
14
  ### Patch Changes
package/dist/index.d.ts CHANGED
@@ -562,6 +562,8 @@ type BackstagePlugin<Routes extends AnyRoutes = {}, ExternalRoutes extends AnyEx
562
562
  type PluginFeatureFlagConfig = {
563
563
  /** Feature flag name */
564
564
  name: string;
565
+ /** Feature flag description */
566
+ description?: string;
565
567
  };
566
568
  /**
567
569
  * Plugin descriptor type.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@backstage/core-plugin-api",
3
- "version": "1.12.4-next.0",
3
+ "version": "1.12.4-next.1",
4
4
  "description": "Core API used by Backstage plugins",
5
5
  "backstage": {
6
6
  "role": "web-library"
@@ -59,15 +59,15 @@
59
59
  "dependencies": {
60
60
  "@backstage/config": "1.3.6",
61
61
  "@backstage/errors": "1.2.7",
62
- "@backstage/frontend-plugin-api": "0.14.2-next.0",
62
+ "@backstage/frontend-plugin-api": "0.15.0-next.1",
63
63
  "@backstage/types": "1.2.2",
64
64
  "@backstage/version-bridge": "1.0.12",
65
65
  "history": "^5.0.0",
66
66
  "zod": "^3.25.76"
67
67
  },
68
68
  "devDependencies": {
69
- "@backstage/cli": "0.35.5-next.0",
70
- "@backstage/core-app-api": "1.19.6-next.0",
69
+ "@backstage/cli": "0.36.0-next.2",
70
+ "@backstage/core-app-api": "1.19.6-next.1",
71
71
  "@backstage/test-utils": "1.7.16-next.0",
72
72
  "@testing-library/dom": "^10.0.0",
73
73
  "@testing-library/jest-dom": "^6.0.0",