@backstage/core-app-api 0.1.17 → 0.1.21

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,64 @@
1
1
  # @backstage/core-app-api
2
2
 
3
+ ## 0.1.21
4
+
5
+ ### Patch Changes
6
+
7
+ - 0b1de52732: Migrated to using new `ErrorApiError` and `ErrorApiErrorContext` names.
8
+ - ecd1fcb80a: Deprecated the `BackstagePluginWithAnyOutput` type.
9
+ - 32bfbafb0f: Start exporting and marking several types as public to address errors in the API report.
10
+ - 014cbf8cb9: The `createApp` function from `@backstage/core-app-api` has been deprecated, with two new options being provided as a replacement.
11
+
12
+ The first and most commonly used one is `createApp` from the new `@backstage/app-defaults` package, which behaves just like the existing `createApp`. In the future this method is likely to be expanded to add more APIs and other pieces into the default setup, for example the Utility APIs from `@backstage/integration-react`.
13
+
14
+ The other option that we now provide is to use `createSpecializedApp` from `@backstage/core-app-api`. This is a more low-level API where you need to provide a full set of options, including your own `components`, `icons`, `defaultApis`, and `themes`. The `createSpecializedApp` way of creating an app is particularly useful if you are not using `@backstage/core-components` or MUI, as it allows you to avoid those dependencies completely.
15
+
16
+ - 475edb5bc5: move the BehaviorSubject init into the constructor
17
+ - Updated dependencies
18
+ - @backstage/core-components@0.7.4
19
+ - @backstage/core-plugin-api@0.2.0
20
+ - @backstage/app-defaults@0.1.1
21
+
22
+ ## 0.1.20
23
+
24
+ ### Patch Changes
25
+
26
+ - 78c512ce8f: I have added default icons for the catalog, scaffolder, techdocs, and search.
27
+ - 8b4284cd5c: Improve API documentation for @backstage/core-plugin-api
28
+ - Updated dependencies
29
+ - @backstage/core-components@0.7.3
30
+ - @backstage/theme@0.2.13
31
+ - @backstage/core-plugin-api@0.1.13
32
+
33
+ ## 0.1.19
34
+
35
+ ### Patch Changes
36
+
37
+ - 10615525f3: Switch to use the json and observable types from `@backstage/types`
38
+ - 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.
39
+ - 925a967f36: Replace usage of test-utils-core with test-utils
40
+ - 6b615e92c8: Api cleanup, adding `@public` where necessary and tweaking some comments
41
+ - Updated dependencies
42
+ - @backstage/config@0.1.11
43
+ - @backstage/theme@0.2.12
44
+ - @backstage/core-components@0.7.2
45
+ - @backstage/core-plugin-api@0.1.12
46
+
47
+ ## 0.1.18
48
+
49
+ ### Patch Changes
50
+
51
+ - 202f322927: Atlassian auth provider
52
+
53
+ - AtlassianAuth added to core-app-api
54
+ - Atlassian provider added to plugin-auth-backend
55
+ - Updated user-settings with Atlassian connection
56
+
57
+ - 36e67d2f24: Internal updates to apply more strict checks to throw errors.
58
+ - Updated dependencies
59
+ - @backstage/core-components@0.7.1
60
+ - @backstage/core-plugin-api@0.1.11
61
+
3
62
  ## 0.1.17
4
63
 
5
64
  ### Patch Changes