@backstage/core-plugin-api 0.1.10 → 0.2.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 +45 -0
- package/dist/index.d.ts +805 -194
- package/dist/index.esm.js +30 -12
- package/dist/index.esm.js.map +1 -1
- package/package.json +9 -9
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,50 @@
|
|
|
1
1
|
# @backstage/core-plugin-api
|
|
2
2
|
|
|
3
|
+
## 0.2.0
|
|
4
|
+
|
|
5
|
+
### Minor Changes
|
|
6
|
+
|
|
7
|
+
- 7e18ed7f29: Removed the unused `UserFlags` type.
|
|
8
|
+
- 7df99cdb77: Remove exports of unused types(`RouteOptions` and `RoutePath`).
|
|
9
|
+
|
|
10
|
+
### Patch Changes
|
|
11
|
+
|
|
12
|
+
- 37ebea2d68: Add deprecation warnings around `title` `icon` and `path` as they are no longer controlled when creating `routeRefs`
|
|
13
|
+
- 2dd2a7b2cc: Deprecated the `theme` property on `AppTheme`, replacing it with `Provider`. See https://backstage.io/docs/api/deprecations#app-theme for more details.
|
|
14
|
+
- b6a4bacdc4: Deprecated the `Error` and `ErrorContext` types, replacing them with identical `ErrorApiError` and `ErrorApiErrorContext` types.
|
|
15
|
+
|
|
16
|
+
## 0.1.13
|
|
17
|
+
|
|
18
|
+
### Patch Changes
|
|
19
|
+
|
|
20
|
+
- 4a336fd292: Deprecate use of extensions without name. Adds a warning to the developer console to prompt integrators to provide names for extensions.
|
|
21
|
+
- 8b4284cd5c: Improve API documentation for @backstage/core-plugin-api
|
|
22
|
+
- e059aea7b9: Deprecate unused ApiRef types
|
|
23
|
+
- Updated dependencies
|
|
24
|
+
- @backstage/theme@0.2.13
|
|
25
|
+
|
|
26
|
+
## 0.1.12
|
|
27
|
+
|
|
28
|
+
### Patch Changes
|
|
29
|
+
|
|
30
|
+
- 41c49884d2: Start using the new `@backstage/types` package. Initially, this means using the `Observable` and `Json*` types from there. The types also remain in their old places but deprecated, and will be removed in a future release.
|
|
31
|
+
- 925a967f36: Replace usage of test-utils-core with test-utils
|
|
32
|
+
- Updated dependencies
|
|
33
|
+
- @backstage/config@0.1.11
|
|
34
|
+
- @backstage/theme@0.2.12
|
|
35
|
+
|
|
36
|
+
## 0.1.11
|
|
37
|
+
|
|
38
|
+
### Patch Changes
|
|
39
|
+
|
|
40
|
+
- 202f322927: Atlassian auth provider
|
|
41
|
+
|
|
42
|
+
- AtlassianAuth added to core-app-api
|
|
43
|
+
- Atlassian provider added to plugin-auth-backend
|
|
44
|
+
- Updated user-settings with Atlassian connection
|
|
45
|
+
|
|
46
|
+
- 36e67d2f24: Internal updates to apply more strict checks to throw errors.
|
|
47
|
+
|
|
3
48
|
## 0.1.10
|
|
4
49
|
|
|
5
50
|
### Patch Changes
|