Merge branch 'master' of https://github.com/mufaddal7/backstage-1 into feature/EntitySystemDiagramCard

This commit is contained in:
mufaddal motiwala
2022-01-21 18:55:32 +05:30
57 changed files with 281 additions and 129 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-search': minor
---
Forwarding classes to HomePageSearchBar instead of using className prop. For custom styles of the HomePageSearchBar, use classes prop instead:
```diff
<HomePageSearchBar
- className={searchBar}
+ classes={{ root: classes.searchBar }}
placeholder="Search"
/>
```
+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,
- });
```
+5
View File
@@ -0,0 +1,5 @@
---
'@backstage/techdocs-common': patch
---
Fix interpolated string for "Failed to generate docs from ..."
+5
View File
@@ -0,0 +1,5 @@
---
'@backstage/plugin-techdocs': patch
---
Code snippets now include a "copy to clipboard" button.