changesets

Signed-off-by: Tim Hansen <timbonicus@gmail.com>
This commit is contained in:
Tim Hansen
2021-08-19 15:46:03 -06:00
parent fee7a6bd49
commit 3ed78fca3b
3 changed files with 21 additions and 0 deletions
+6
View File
@@ -0,0 +1,6 @@
---
'@backstage/plugin-catalog-react': patch
---
Added a `useEntityKinds` hook to load a unique list of entity kinds from the catalog.
Fixed a bug in `EntityTypePicker` where the component did not hide when no types were available in returned entities.
+10
View File
@@ -0,0 +1,10 @@
---
'@backstage/core-components': minor
---
Changed the `titleComponent` prop on `ContentHeader` to accept `JSX.Element` instead of a React `ComponentType`. Usages of this prop should be converted from passing a component to passing in the rendered element:
```diff
-<ContentHeader titleComponent={MyComponent}>
+<ContentHeader titleComponent={<MyComponent />}>
```
+5
View File
@@ -0,0 +1,5 @@
---
'@backstage/plugin-catalog': patch
---
Added the ability to switch entity kind on the catalog index page. This is a non-breaking change, but if you created a custom `CatalogPage` and wish to use this feature, make the modifications shown on [#6895](https://github.com/backstage/backstage/pull/6895).