@backstage/core-app-api 1.0.1-next.1 → 1.0.1
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 +14 -0
- package/package.json +7 -7
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,19 @@
|
|
|
1
1
|
# @backstage/core-app-api
|
|
2
2
|
|
|
3
|
+
## 1.0.1
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- 7c7919777e: build(deps-dev): bump `@testing-library/react-hooks` from 7.0.2 to 8.0.0
|
|
8
|
+
- 24254fd433: build(deps): bump `@testing-library/user-event` from 13.5.0 to 14.0.0
|
|
9
|
+
- 3ff2bfb66e: Refactored the route collection logic to prepare for future changes and avoid duplicate element tree traversal for the analytics context.
|
|
10
|
+
- a7bb762dab: fixed empty body issue for POST requests using FetchAPI with 'plugin://' prefix
|
|
11
|
+
- 230ad0826f: Bump to using `@types/node` v16
|
|
12
|
+
- c47509e1a0: Implemented changes suggested by Deepsource.io including multiple double non-null assertion operators and unexpected awaits for non-promise values.
|
|
13
|
+
- Updated dependencies
|
|
14
|
+
- @backstage/core-plugin-api@1.0.1
|
|
15
|
+
- @backstage/version-bridge@1.0.1
|
|
16
|
+
|
|
3
17
|
## 1.0.1-next.1
|
|
4
18
|
|
|
5
19
|
### Patch 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.0.1
|
|
4
|
+
"version": "1.0.1",
|
|
5
5
|
"private": false,
|
|
6
6
|
"publishConfig": {
|
|
7
7
|
"access": "public",
|
|
@@ -34,9 +34,9 @@
|
|
|
34
34
|
},
|
|
35
35
|
"dependencies": {
|
|
36
36
|
"@backstage/config": "^1.0.0",
|
|
37
|
-
"@backstage/core-plugin-api": "^1.0.1
|
|
37
|
+
"@backstage/core-plugin-api": "^1.0.1",
|
|
38
38
|
"@backstage/types": "^1.0.0",
|
|
39
|
-
"@backstage/version-bridge": "^1.0.
|
|
39
|
+
"@backstage/version-bridge": "^1.0.1",
|
|
40
40
|
"@types/prop-types": "^15.7.3",
|
|
41
41
|
"prop-types": "^15.7.2",
|
|
42
42
|
"react-router-dom": "6.0.0-beta.0",
|
|
@@ -49,11 +49,11 @@
|
|
|
49
49
|
"react": "^16.13.1 || ^17.0.0"
|
|
50
50
|
},
|
|
51
51
|
"devDependencies": {
|
|
52
|
-
"@backstage/cli": "^0.17.0
|
|
53
|
-
"@backstage/test-utils": "^1.0.1
|
|
52
|
+
"@backstage/cli": "^0.17.0",
|
|
53
|
+
"@backstage/test-utils": "^1.0.1",
|
|
54
54
|
"@testing-library/jest-dom": "^5.10.1",
|
|
55
55
|
"@testing-library/react": "^12.1.3",
|
|
56
|
-
"@testing-library/react-hooks": "^
|
|
56
|
+
"@testing-library/react-hooks": "^8.0.0",
|
|
57
57
|
"@testing-library/user-event": "^14.0.0",
|
|
58
58
|
"@types/jest": "^26.0.7",
|
|
59
59
|
"@types/node": "^16.11.26",
|
|
@@ -66,5 +66,5 @@
|
|
|
66
66
|
"config.d.ts"
|
|
67
67
|
],
|
|
68
68
|
"configSchema": "config.d.ts",
|
|
69
|
-
"gitHead": "
|
|
69
|
+
"gitHead": "e0e44c433319711c2fb8b175db411a621f7aaec2"
|
|
70
70
|
}
|