@backstage/core-plugin-api 1.10.7-next.0 → 1.10.7
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 +11 -0
- package/package.json +8 -8
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,16 @@
|
|
|
1
1
|
# @backstage/core-plugin-api
|
|
2
2
|
|
|
3
|
+
## 1.10.7
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- 73f6cc3: The `TranslationApi` now supports interpolation of JSX elements by passing them directly as values to the translation function. If any of the provided interpolation values are JSX elements, the translation function will return a JSX element instead of a string.
|
|
8
|
+
- Updated dependencies
|
|
9
|
+
- @backstage/config@1.3.2
|
|
10
|
+
- @backstage/errors@1.2.7
|
|
11
|
+
- @backstage/types@1.2.1
|
|
12
|
+
- @backstage/version-bridge@1.0.11
|
|
13
|
+
|
|
3
14
|
## 1.10.7-next.0
|
|
4
15
|
|
|
5
16
|
### Patch Changes
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@backstage/core-plugin-api",
|
|
3
|
-
"version": "1.10.7
|
|
3
|
+
"version": "1.10.7",
|
|
4
4
|
"description": "Core API used by Backstage plugins",
|
|
5
5
|
"backstage": {
|
|
6
6
|
"role": "web-library"
|
|
@@ -57,16 +57,16 @@
|
|
|
57
57
|
"test": "backstage-cli package test"
|
|
58
58
|
},
|
|
59
59
|
"dependencies": {
|
|
60
|
-
"@backstage/config": "1.3.2",
|
|
61
|
-
"@backstage/errors": "1.2.7",
|
|
62
|
-
"@backstage/types": "1.2.1",
|
|
63
|
-
"@backstage/version-bridge": "1.0.11",
|
|
60
|
+
"@backstage/config": "^1.3.2",
|
|
61
|
+
"@backstage/errors": "^1.2.7",
|
|
62
|
+
"@backstage/types": "^1.2.1",
|
|
63
|
+
"@backstage/version-bridge": "^1.0.11",
|
|
64
64
|
"history": "^5.0.0"
|
|
65
65
|
},
|
|
66
66
|
"devDependencies": {
|
|
67
|
-
"@backstage/cli": "0.32.1
|
|
68
|
-
"@backstage/core-app-api": "1.
|
|
69
|
-
"@backstage/test-utils": "1.7.8
|
|
67
|
+
"@backstage/cli": "^0.32.1",
|
|
68
|
+
"@backstage/core-app-api": "^1.17.0",
|
|
69
|
+
"@backstage/test-utils": "^1.7.8",
|
|
70
70
|
"@testing-library/dom": "^10.0.0",
|
|
71
71
|
"@testing-library/jest-dom": "^6.0.0",
|
|
72
72
|
"@testing-library/react": "^16.0.0",
|