@backstage/core-plugin-api 1.0.3 → 1.0.5-next.0

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,31 @@
1
1
  # @backstage/core-plugin-api
2
2
 
3
+ ## 1.0.5-next.0
4
+
5
+ ### Patch Changes
6
+
7
+ - 80da5162c7: Introduced a new experimental feature that allows you to declare plugin-wide options for your plugin by defining
8
+ `__experimentalConfigure` in your `createPlugin` options. See https://backstage.io/docs/plugins/customization.md for more information.
9
+
10
+ This is an experimental feature and it will have breaking changes in the future.
11
+
12
+ ## 1.0.4
13
+
14
+ ### Patch Changes
15
+
16
+ - 881fc75a75: Internal tweak removing usage of explicit type parameters for the `BackstagePlugin` type.
17
+ - a70869e775: Updated dependency `msw` to `^0.43.0`.
18
+ - 8006d0f9bf: Updated dependency `msw` to `^0.44.0`.
19
+ - 2990fff4e5: Enabled the `@backstage/core-plugin-api/alpha` entry point.
20
+
21
+ ## 1.0.4-next.0
22
+
23
+ ### Patch Changes
24
+
25
+ - 881fc75a75: Internal tweak removing usage of explicit type parameters for the `BackstagePlugin` type.
26
+ - a70869e775: Updated dependency `msw` to `^0.43.0`.
27
+ - 2990fff4e5: Enabled the `@backstage/core-plugin-api/alpha` entry point.
28
+
3
29
  ## 1.0.3
4
30
 
5
31
  ### Patch Changes
@@ -0,0 +1,6 @@
1
+ {
2
+ "name": "@backstage/core-plugin-api",
3
+ "version": "1.0.5-next.0",
4
+ "main": "../dist/index.esm.js",
5
+ "types": "../dist/index.alpha.d.ts"
6
+ }