@backstage/app-defaults 1.5.0-next.2 → 1.5.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 +34 -0
- package/package.json +8 -8
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,39 @@
|
|
|
1
1
|
# @backstage/app-defaults
|
|
2
2
|
|
|
3
|
+
## 1.5.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
|
+
- 7f11009: Added stack trace display to `ErrorPage` and updated existing refs
|
|
12
|
+
|
|
13
|
+
### Patch Changes
|
|
14
|
+
|
|
15
|
+
- f899eec: Change default icon for `kind:resource` to the storage icon.
|
|
16
|
+
- 9aac2b0: Use `--cwd` as the first `yarn` argument
|
|
17
|
+
- 7da67ce: Change `defaultScopes` for Bitbucket auth from invalid `team` to `account`.
|
|
18
|
+
- 214f2da: Fix invalid HTTP status code 501 in Error Page
|
|
19
|
+
- Updated dependencies
|
|
20
|
+
- @backstage/core-components@0.14.0
|
|
21
|
+
- @backstage/core-app-api@1.12.0
|
|
22
|
+
- @backstage/theme@0.5.1
|
|
23
|
+
- @backstage/core-plugin-api@1.9.0
|
|
24
|
+
- @backstage/plugin-permission-react@0.4.20
|
|
25
|
+
|
|
26
|
+
## 1.5.0-next.3
|
|
27
|
+
|
|
28
|
+
### Patch Changes
|
|
29
|
+
|
|
30
|
+
- Updated dependencies
|
|
31
|
+
- @backstage/theme@0.5.1-next.1
|
|
32
|
+
- @backstage/core-components@0.14.0-next.2
|
|
33
|
+
- @backstage/core-app-api@1.12.0-next.1
|
|
34
|
+
- @backstage/core-plugin-api@1.9.0-next.1
|
|
35
|
+
- @backstage/plugin-permission-react@0.4.20-next.1
|
|
36
|
+
|
|
3
37
|
## 1.5.0-next.2
|
|
4
38
|
|
|
5
39
|
### Minor Changes
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@backstage/app-defaults",
|
|
3
3
|
"description": "Provides the default wiring of a Backstage App",
|
|
4
|
-
"version": "1.5.0
|
|
4
|
+
"version": "1.5.0",
|
|
5
5
|
"publishConfig": {
|
|
6
6
|
"access": "public",
|
|
7
7
|
"main": "dist/index.esm.js",
|
|
@@ -33,11 +33,11 @@
|
|
|
33
33
|
"start": "backstage-cli package start"
|
|
34
34
|
},
|
|
35
35
|
"dependencies": {
|
|
36
|
-
"@backstage/core-app-api": "^1.12.0
|
|
37
|
-
"@backstage/core-components": "^0.14.0
|
|
38
|
-
"@backstage/core-plugin-api": "^1.9.0
|
|
39
|
-
"@backstage/plugin-permission-react": "^0.4.20
|
|
40
|
-
"@backstage/theme": "^0.5.1
|
|
36
|
+
"@backstage/core-app-api": "^1.12.0",
|
|
37
|
+
"@backstage/core-components": "^0.14.0",
|
|
38
|
+
"@backstage/core-plugin-api": "^1.9.0",
|
|
39
|
+
"@backstage/plugin-permission-react": "^0.4.20",
|
|
40
|
+
"@backstage/theme": "^0.5.1",
|
|
41
41
|
"@material-ui/core": "^4.12.2",
|
|
42
42
|
"@material-ui/icons": "^4.9.1"
|
|
43
43
|
},
|
|
@@ -47,8 +47,8 @@
|
|
|
47
47
|
"react-router-dom": "6.0.0-beta.0 || ^6.3.0"
|
|
48
48
|
},
|
|
49
49
|
"devDependencies": {
|
|
50
|
-
"@backstage/cli": "^0.25.2
|
|
51
|
-
"@backstage/test-utils": "^1.5.0
|
|
50
|
+
"@backstage/cli": "^0.25.2",
|
|
51
|
+
"@backstage/test-utils": "^1.5.0",
|
|
52
52
|
"@testing-library/jest-dom": "^6.0.0",
|
|
53
53
|
"@testing-library/react": "^14.0.0",
|
|
54
54
|
"@types/react": "^16.13.1 || ^17.0.0"
|