@backstage/core-plugin-api 1.8.0-next.0 → 1.8.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 +17 -0
- package/alpha/package.json +1 -1
- package/package.json +5 -5
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,22 @@
|
|
|
1
1
|
# @backstage/core-plugin-api
|
|
2
2
|
|
|
3
|
+
## 1.8.0
|
|
4
|
+
|
|
5
|
+
### Minor Changes
|
|
6
|
+
|
|
7
|
+
- 1e5b7d993a: `IconComponent` can now have a `fontSize` of `inherit`, which is useful for in-line icons.
|
|
8
|
+
- cb6db75bc2: Introduced `AnyRouteRefParams` as a replacement for `AnyParams`, which is now deprecated.
|
|
9
|
+
|
|
10
|
+
### Patch Changes
|
|
11
|
+
|
|
12
|
+
- 6c2b872153: Add official support for React 18.
|
|
13
|
+
- cb6db75bc2: Deprecated several types related to the routing system that are scheduled to be removed, as well as several fields on the route ref types themselves.
|
|
14
|
+
- 68fc9dc60e: Added a new `/alpha` export `convertLegacyRouteRef`, which is a temporary utility to allow existing route refs to be used with the new experimental packages.
|
|
15
|
+
- Updated dependencies
|
|
16
|
+
- @backstage/version-bridge@1.0.7
|
|
17
|
+
- @backstage/config@1.1.1
|
|
18
|
+
- @backstage/types@1.1.1
|
|
19
|
+
|
|
3
20
|
## 1.8.0-next.0
|
|
4
21
|
|
|
5
22
|
### Minor Changes
|
package/alpha/package.json
CHANGED
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@backstage/core-plugin-api",
|
|
3
3
|
"description": "Core API used by Backstage plugins",
|
|
4
|
-
"version": "1.8.0
|
|
4
|
+
"version": "1.8.0",
|
|
5
5
|
"publishConfig": {
|
|
6
6
|
"access": "public"
|
|
7
7
|
},
|
|
@@ -46,7 +46,7 @@
|
|
|
46
46
|
"dependencies": {
|
|
47
47
|
"@backstage/config": "^1.1.1",
|
|
48
48
|
"@backstage/types": "^1.1.1",
|
|
49
|
-
"@backstage/version-bridge": "^1.0.7
|
|
49
|
+
"@backstage/version-bridge": "^1.0.7",
|
|
50
50
|
"@types/react": "^16.13.1 || ^17.0.0",
|
|
51
51
|
"history": "^5.0.0",
|
|
52
52
|
"i18next": "^22.4.15"
|
|
@@ -57,9 +57,9 @@
|
|
|
57
57
|
"react-router-dom": "6.0.0-beta.0 || ^6.3.0"
|
|
58
58
|
},
|
|
59
59
|
"devDependencies": {
|
|
60
|
-
"@backstage/cli": "^0.24.0
|
|
61
|
-
"@backstage/core-app-api": "^1.11.1
|
|
62
|
-
"@backstage/test-utils": "^1.4.5
|
|
60
|
+
"@backstage/cli": "^0.24.0",
|
|
61
|
+
"@backstage/core-app-api": "^1.11.1",
|
|
62
|
+
"@backstage/test-utils": "^1.4.5",
|
|
63
63
|
"@testing-library/dom": "^9.0.0",
|
|
64
64
|
"@testing-library/jest-dom": "^6.0.0",
|
|
65
65
|
"@testing-library/react": "^14.0.0",
|