@backstage/core-app-api 0.1.18 → 0.1.22

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,55 @@
1
1
  # @backstage/core-app-api
2
2
 
3
+ ## 0.1.22
4
+
5
+ ### Patch Changes
6
+
7
+ - Reverted the `createApp` TypeScript type to match the one before version `0.1.21`, as it was an accidental breaking change.
8
+
9
+ ## 0.1.21
10
+
11
+ ### Patch Changes
12
+
13
+ - 0b1de52732: Migrated to using new `ErrorApiError` and `ErrorApiErrorContext` names.
14
+ - ecd1fcb80a: Deprecated the `BackstagePluginWithAnyOutput` type.
15
+ - 32bfbafb0f: Start exporting and marking several types as public to address errors in the API report.
16
+ - 014cbf8cb9: The `createApp` function from `@backstage/core-app-api` has been deprecated, with two new options being provided as a replacement.
17
+
18
+ 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`.
19
+
20
+ 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.
21
+
22
+ - 475edb5bc5: move the BehaviorSubject init into the constructor
23
+ - Updated dependencies
24
+ - @backstage/core-components@0.7.4
25
+ - @backstage/core-plugin-api@0.2.0
26
+ - @backstage/app-defaults@0.1.1
27
+
28
+ ## 0.1.20
29
+
30
+ ### Patch Changes
31
+
32
+ - 78c512ce8f: I have added default icons for the catalog, scaffolder, techdocs, and search.
33
+ - 8b4284cd5c: Improve API documentation for @backstage/core-plugin-api
34
+ - Updated dependencies
35
+ - @backstage/core-components@0.7.3
36
+ - @backstage/theme@0.2.13
37
+ - @backstage/core-plugin-api@0.1.13
38
+
39
+ ## 0.1.19
40
+
41
+ ### Patch Changes
42
+
43
+ - 10615525f3: Switch to use the json and observable types from `@backstage/types`
44
+ - 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.
45
+ - 925a967f36: Replace usage of test-utils-core with test-utils
46
+ - 6b615e92c8: Api cleanup, adding `@public` where necessary and tweaking some comments
47
+ - Updated dependencies
48
+ - @backstage/config@0.1.11
49
+ - @backstage/theme@0.2.12
50
+ - @backstage/core-components@0.7.2
51
+ - @backstage/core-plugin-api@0.1.12
52
+
3
53
  ## 0.1.18
4
54
 
5
55
  ### Patch Changes