Merge pull request #9070 from backstage/rugvip/deproute

explore,catalog-graph: use entityRouteRef directly
This commit is contained in:
Patrik Oldsberg
2022-01-21 12:32:56 +01:00
committed by GitHub
14 changed files with 69 additions and 40 deletions
+13
View File
@@ -0,0 +1,13 @@
---
'@backstage/plugin-catalog-graph': patch
---
Deprecated the external `catalogEntity` route as this is now imported directly from `@backstage/plugin-catalog-react` instead.
This means you can remove the route binding from your `App.tsx`:
```diff
- bind(catalogGraphPlugin.externalRoutes, {
- catalogEntity: catalogPlugin.routes.catalogEntity,
- });
```
+13
View File
@@ -0,0 +1,13 @@
---
'@backstage/plugin-explore': patch
---
Deprecated the external `catalogEntity` route as this is now imported directly from `@backstage/plugin-catalog-react` instead.
This means you can remove the route binding from your `App.tsx`:
```diff
- bind(explorePlugin.externalRoutes, {
- catalogEntity: catalogPlugin.routes.catalogEntity,
- });
```