@backstage/core-plugin-api 0.1.12 → 0.2.2
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 +40 -0
- package/dist/index.d.ts +799 -117
- package/dist/index.esm.js +33 -12
- package/dist/index.esm.js.map +1 -1
- package/package.json +6 -6
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,45 @@
|
|
|
1
1
|
# @backstage/core-plugin-api
|
|
2
2
|
|
|
3
|
+
## 0.2.2
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- b291d0ed7e: Tweaked the logged deprecation warning for `createRouteRef` to hopefully make it more clear.
|
|
8
|
+
- bacb94ea8f: Documented the options of each of the extension creation functions.
|
|
9
|
+
- Updated dependencies
|
|
10
|
+
- @backstage/theme@0.2.14
|
|
11
|
+
|
|
12
|
+
## 0.2.1
|
|
13
|
+
|
|
14
|
+
### Patch Changes
|
|
15
|
+
|
|
16
|
+
- 950b36393c: Deprecated `register` option of `createPlugin` and the `outputs` methods of the plugin instance.
|
|
17
|
+
|
|
18
|
+
Introduces the `featureFlags` property to define your feature flags instead.
|
|
19
|
+
|
|
20
|
+
## 0.2.0
|
|
21
|
+
|
|
22
|
+
### Minor Changes
|
|
23
|
+
|
|
24
|
+
- 7e18ed7f29: Removed the unused `UserFlags` type.
|
|
25
|
+
- 7df99cdb77: Remove exports of unused types(`RouteOptions` and `RoutePath`).
|
|
26
|
+
|
|
27
|
+
### Patch Changes
|
|
28
|
+
|
|
29
|
+
- 37ebea2d68: Add deprecation warnings around `title` `icon` and `path` as they are no longer controlled when creating `routeRefs`
|
|
30
|
+
- 2dd2a7b2cc: Deprecated the `theme` property on `AppTheme`, replacing it with `Provider`. See https://backstage.io/docs/api/deprecations#app-theme for more details.
|
|
31
|
+
- b6a4bacdc4: Deprecated the `Error` and `ErrorContext` types, replacing them with identical `ErrorApiError` and `ErrorApiErrorContext` types.
|
|
32
|
+
|
|
33
|
+
## 0.1.13
|
|
34
|
+
|
|
35
|
+
### Patch Changes
|
|
36
|
+
|
|
37
|
+
- 4a336fd292: Deprecate use of extensions without name. Adds a warning to the developer console to prompt integrators to provide names for extensions.
|
|
38
|
+
- 8b4284cd5c: Improve API documentation for @backstage/core-plugin-api
|
|
39
|
+
- e059aea7b9: Deprecate unused ApiRef types
|
|
40
|
+
- Updated dependencies
|
|
41
|
+
- @backstage/theme@0.2.13
|
|
42
|
+
|
|
3
43
|
## 0.1.12
|
|
4
44
|
|
|
5
45
|
### Patch Changes
|