@backstage/frontend-app-api 0.7.3-next.1 → 0.7.3
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 +6 -6
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,39 @@
|
|
|
1
1
|
# @backstage/frontend-app-api
|
|
2
2
|
|
|
3
|
+
## 0.7.3
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- d3c39fc: Allow for the disabling of external routes through config, which was rendered impossible after the introduction of default targets.
|
|
8
|
+
|
|
9
|
+
```yaml
|
|
10
|
+
app:
|
|
11
|
+
routes:
|
|
12
|
+
bindings:
|
|
13
|
+
# This has the effect of removing the button for registering new
|
|
14
|
+
# catalog entities in the scaffolder template list view
|
|
15
|
+
scaffolder.registerComponent: false
|
|
16
|
+
```
|
|
17
|
+
|
|
18
|
+
- Updated dependencies
|
|
19
|
+
- @backstage/core-components@0.14.9
|
|
20
|
+
- @backstage/core-app-api@1.14.0
|
|
21
|
+
- @backstage/frontend-plugin-api@0.6.7
|
|
22
|
+
- @backstage/config@1.2.0
|
|
23
|
+
- @backstage/core-plugin-api@1.9.3
|
|
24
|
+
- @backstage/errors@1.2.4
|
|
25
|
+
- @backstage/theme@0.5.6
|
|
26
|
+
- @backstage/types@1.1.1
|
|
27
|
+
- @backstage/version-bridge@1.0.8
|
|
28
|
+
|
|
29
|
+
## 0.7.3-next.2
|
|
30
|
+
|
|
31
|
+
### Patch Changes
|
|
32
|
+
|
|
33
|
+
- Updated dependencies
|
|
34
|
+
- @backstage/core-components@0.14.9-next.1
|
|
35
|
+
- @backstage/frontend-plugin-api@0.6.7-next.1
|
|
36
|
+
|
|
3
37
|
## 0.7.3-next.1
|
|
4
38
|
|
|
5
39
|
### Patch Changes
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@backstage/frontend-app-api",
|
|
3
|
-
"version": "0.7.3
|
|
3
|
+
"version": "0.7.3",
|
|
4
4
|
"backstage": {
|
|
5
5
|
"role": "web-library"
|
|
6
6
|
},
|
|
@@ -33,11 +33,11 @@
|
|
|
33
33
|
},
|
|
34
34
|
"dependencies": {
|
|
35
35
|
"@backstage/config": "^1.2.0",
|
|
36
|
-
"@backstage/core-app-api": "^1.
|
|
37
|
-
"@backstage/core-components": "^0.14.9
|
|
36
|
+
"@backstage/core-app-api": "^1.14.0",
|
|
37
|
+
"@backstage/core-components": "^0.14.9",
|
|
38
38
|
"@backstage/core-plugin-api": "^1.9.3",
|
|
39
39
|
"@backstage/errors": "^1.2.4",
|
|
40
|
-
"@backstage/frontend-plugin-api": "^0.6.7
|
|
40
|
+
"@backstage/frontend-plugin-api": "^0.6.7",
|
|
41
41
|
"@backstage/theme": "^0.5.6",
|
|
42
42
|
"@backstage/types": "^1.1.1",
|
|
43
43
|
"@backstage/version-bridge": "^1.0.8",
|
|
@@ -47,8 +47,8 @@
|
|
|
47
47
|
"lodash": "^4.17.21"
|
|
48
48
|
},
|
|
49
49
|
"devDependencies": {
|
|
50
|
-
"@backstage/cli": "^0.26.11
|
|
51
|
-
"@backstage/test-utils": "^1.5.8
|
|
50
|
+
"@backstage/cli": "^0.26.11",
|
|
51
|
+
"@backstage/test-utils": "^1.5.8",
|
|
52
52
|
"@testing-library/jest-dom": "^6.0.0",
|
|
53
53
|
"@testing-library/react": "^15.0.0"
|
|
54
54
|
},
|