@backstage/core-app-api 0.6.0 → 1.0.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 +16 -0
- package/dist/index.d.ts +1 -1
- package/dist/index.esm.js.map +1 -1
- package/package.json +9 -9
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,21 @@
|
|
|
1
1
|
# @backstage/core-app-api
|
|
2
2
|
|
|
3
|
+
## 1.0.0
|
|
4
|
+
|
|
5
|
+
### Major Changes
|
|
6
|
+
|
|
7
|
+
- b58c70c223: This package has been promoted to v1.0! To understand how this change affects the package, please check out our [versioning policy](https://backstage.io/docs/overview/versioning-policy).
|
|
8
|
+
|
|
9
|
+
### Patch Changes
|
|
10
|
+
|
|
11
|
+
- a422d7ce5e: chore(deps): bump `@testing-library/react` from 11.2.6 to 12.1.3
|
|
12
|
+
- f24ef7864e: Minor typo fixes
|
|
13
|
+
- Updated dependencies
|
|
14
|
+
- @backstage/core-plugin-api@1.0.0
|
|
15
|
+
- @backstage/version-bridge@1.0.0
|
|
16
|
+
- @backstage/config@1.0.0
|
|
17
|
+
- @backstage/types@1.0.0
|
|
18
|
+
|
|
3
19
|
## 0.6.0
|
|
4
20
|
|
|
5
21
|
### Minor Changes
|
package/dist/index.d.ts
CHANGED
|
@@ -648,7 +648,7 @@ declare type AppOptions = {
|
|
|
648
648
|
apis?: Iterable<AnyApiFactory>;
|
|
649
649
|
/**
|
|
650
650
|
* A collection of ApiFactories to register in the application as default APIs.
|
|
651
|
-
*
|
|
651
|
+
* These APIs cannot be overridden by plugin factories, but can be overridden
|
|
652
652
|
* by plugin APIs provided through the
|
|
653
653
|
* A collection of ApiFactories to register in the application to either
|
|
654
654
|
* add new ones, or override factories provided by default or by plugins.
|