@backstage/core-app-api 1.12.0-next.1 → 1.12.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 +20 -0
- package/package.json +4 -4
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,25 @@
|
|
|
1
1
|
# @backstage/core-app-api
|
|
2
2
|
|
|
3
|
+
## 1.12.0
|
|
4
|
+
|
|
5
|
+
### Minor Changes
|
|
6
|
+
|
|
7
|
+
- f919be9: Added a utility API for VMware Cloud auth; the API ref is available in the
|
|
8
|
+
`@backstage/core-plugin-api` and `@backstage/frontend-plugin-api` packages, the
|
|
9
|
+
implementation is in `@backstage/core-app-api` and a factory has been added to
|
|
10
|
+
`@backstage/app-defaults`.
|
|
11
|
+
|
|
12
|
+
### Patch Changes
|
|
13
|
+
|
|
14
|
+
- 9aac2b0: Use `--cwd` as the first `yarn` argument
|
|
15
|
+
- 8fe56a8: Widen `@types/react` dependency range to include version 18.
|
|
16
|
+
- 7da67ce: Change `defaultScopes` for Bitbucket auth from invalid `team` to `account`.
|
|
17
|
+
- Updated dependencies
|
|
18
|
+
- @backstage/core-plugin-api@1.9.0
|
|
19
|
+
- @backstage/config@1.1.1
|
|
20
|
+
- @backstage/types@1.1.1
|
|
21
|
+
- @backstage/version-bridge@1.0.7
|
|
22
|
+
|
|
3
23
|
## 1.12.0-next.1
|
|
4
24
|
|
|
5
25
|
### Minor Changes
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@backstage/core-app-api",
|
|
3
3
|
"description": "Core app API used by Backstage apps",
|
|
4
|
-
"version": "1.12.0
|
|
4
|
+
"version": "1.12.0",
|
|
5
5
|
"publishConfig": {
|
|
6
6
|
"access": "public"
|
|
7
7
|
},
|
|
@@ -40,7 +40,7 @@
|
|
|
40
40
|
},
|
|
41
41
|
"dependencies": {
|
|
42
42
|
"@backstage/config": "^1.1.1",
|
|
43
|
-
"@backstage/core-plugin-api": "^1.9.0
|
|
43
|
+
"@backstage/core-plugin-api": "^1.9.0",
|
|
44
44
|
"@backstage/types": "^1.1.1",
|
|
45
45
|
"@backstage/version-bridge": "^1.0.7",
|
|
46
46
|
"@types/prop-types": "^15.7.3",
|
|
@@ -59,8 +59,8 @@
|
|
|
59
59
|
"react-router-dom": "6.0.0-beta.0 || ^6.3.0"
|
|
60
60
|
},
|
|
61
61
|
"devDependencies": {
|
|
62
|
-
"@backstage/cli": "^0.25.2
|
|
63
|
-
"@backstage/test-utils": "^1.5.0
|
|
62
|
+
"@backstage/cli": "^0.25.2",
|
|
63
|
+
"@backstage/test-utils": "^1.5.0",
|
|
64
64
|
"@testing-library/dom": "^9.0.0",
|
|
65
65
|
"@testing-library/jest-dom": "^6.0.0",
|
|
66
66
|
"@testing-library/react": "^14.0.0",
|