@backstage/core-compat-api 0.2.0-next.2 → 0.2.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 +31 -0
- package/package.json +10 -10
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,36 @@
|
|
|
1
1
|
# @backstage/core-compat-api
|
|
2
2
|
|
|
3
|
+
## 0.2.0
|
|
4
|
+
|
|
5
|
+
### Minor Changes
|
|
6
|
+
|
|
7
|
+
- e586f79: Add support to the new analytics api.
|
|
8
|
+
|
|
9
|
+
### Patch Changes
|
|
10
|
+
|
|
11
|
+
- 1fa5041: The backwards compatibility provider will now use the new `ComponentsApi` and `IconsApi` when implementing the old `AppContext`.
|
|
12
|
+
- edfd3a5: Updated dependency `@oriflame/backstage-plugin-score-card` to `^0.8.0`.
|
|
13
|
+
- bc621aa: Updates to use the new `RouteResolutionsApi`.
|
|
14
|
+
- 7155c30: Added `convertLegacyRouteRefs` for bulk conversion of plugin routes.
|
|
15
|
+
- 46b63de: Allow external route refs in the new system to have a `defaultTarget` pointing to a route that it'll resolve to by default if no explicit bindings were made by the adopter.
|
|
16
|
+
- 2f2a1d2: Plugins converted by `convertLegacyApp` now have their `routes` and `externalRoutes` included as well, allowing them to be used to bind external routes in configuration.
|
|
17
|
+
- 1184990: collectLegacyRoutes throws in case invalid <Route /> element is found
|
|
18
|
+
- Updated dependencies
|
|
19
|
+
- @backstage/frontend-plugin-api@0.6.0
|
|
20
|
+
- @backstage/core-app-api@1.12.0
|
|
21
|
+
- @backstage/core-plugin-api@1.9.0
|
|
22
|
+
- @backstage/version-bridge@1.0.7
|
|
23
|
+
|
|
24
|
+
## 0.2.0-next.3
|
|
25
|
+
|
|
26
|
+
### Patch Changes
|
|
27
|
+
|
|
28
|
+
- Updated dependencies
|
|
29
|
+
- @backstage/core-app-api@1.12.0-next.1
|
|
30
|
+
- @backstage/core-plugin-api@1.9.0-next.1
|
|
31
|
+
- @backstage/frontend-plugin-api@0.6.0-next.3
|
|
32
|
+
- @backstage/version-bridge@1.0.7
|
|
33
|
+
|
|
3
34
|
## 0.2.0-next.2
|
|
4
35
|
|
|
5
36
|
### Patch Changes
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@backstage/core-compat-api",
|
|
3
|
-
"version": "0.2.0
|
|
3
|
+
"version": "0.2.0",
|
|
4
4
|
"main": "dist/index.esm.js",
|
|
5
5
|
"types": "dist/index.d.ts",
|
|
6
6
|
"license": "Apache-2.0",
|
|
@@ -28,9 +28,9 @@
|
|
|
28
28
|
"postpack": "backstage-cli package postpack"
|
|
29
29
|
},
|
|
30
30
|
"dependencies": {
|
|
31
|
-
"@backstage/core-app-api": "^1.12.0
|
|
32
|
-
"@backstage/core-plugin-api": "^1.9.0
|
|
33
|
-
"@backstage/frontend-plugin-api": "^0.6.0
|
|
31
|
+
"@backstage/core-app-api": "^1.12.0",
|
|
32
|
+
"@backstage/core-plugin-api": "^1.9.0",
|
|
33
|
+
"@backstage/frontend-plugin-api": "^0.6.0",
|
|
34
34
|
"@backstage/version-bridge": "^1.0.7",
|
|
35
35
|
"@types/react": "^16.13.1 || ^17.0.0"
|
|
36
36
|
},
|
|
@@ -39,12 +39,12 @@
|
|
|
39
39
|
"react-router-dom": "6.0.0-beta.0 || ^6.3.0"
|
|
40
40
|
},
|
|
41
41
|
"devDependencies": {
|
|
42
|
-
"@backstage/cli": "^0.25.2
|
|
43
|
-
"@backstage/frontend-app-api": "^0.6.0
|
|
44
|
-
"@backstage/frontend-test-utils": "^0.1.2
|
|
45
|
-
"@backstage/plugin-catalog": "^1.17.0
|
|
46
|
-
"@backstage/plugin-puppetdb": "^0.1.13
|
|
47
|
-
"@backstage/plugin-stackstorm": "^0.1.11
|
|
42
|
+
"@backstage/cli": "^0.25.2",
|
|
43
|
+
"@backstage/frontend-app-api": "^0.6.0",
|
|
44
|
+
"@backstage/frontend-test-utils": "^0.1.2",
|
|
45
|
+
"@backstage/plugin-catalog": "^1.17.0",
|
|
46
|
+
"@backstage/plugin-puppetdb": "^0.1.13",
|
|
47
|
+
"@backstage/plugin-stackstorm": "^0.1.11",
|
|
48
48
|
"@oriflame/backstage-plugin-score-card": "^0.8.0",
|
|
49
49
|
"@testing-library/jest-dom": "^6.0.0",
|
|
50
50
|
"@testing-library/react": "^14.0.0"
|