From 3ed78fca3b00f44906758149bda69b6b474211b2 Mon Sep 17 00:00:00 2001 From: Tim Hansen Date: Thu, 19 Aug 2021 15:46:03 -0600 Subject: [PATCH] changesets Signed-off-by: Tim Hansen --- .changeset/cuddly-cooks-fry.md | 6 ++++++ .changeset/nasty-ads-nail.md | 10 ++++++++++ .changeset/short-years-smile.md | 5 +++++ 3 files changed, 21 insertions(+) create mode 100644 .changeset/cuddly-cooks-fry.md create mode 100644 .changeset/nasty-ads-nail.md create mode 100644 .changeset/short-years-smile.md diff --git a/.changeset/cuddly-cooks-fry.md b/.changeset/cuddly-cooks-fry.md new file mode 100644 index 0000000000..028b0291bd --- /dev/null +++ b/.changeset/cuddly-cooks-fry.md @@ -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. diff --git a/.changeset/nasty-ads-nail.md b/.changeset/nasty-ads-nail.md new file mode 100644 index 0000000000..e59a54ed84 --- /dev/null +++ b/.changeset/nasty-ads-nail.md @@ -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 +- ++}> +``` diff --git a/.changeset/short-years-smile.md b/.changeset/short-years-smile.md new file mode 100644 index 0000000000..6e7b882c1e --- /dev/null +++ b/.changeset/short-years-smile.md @@ -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).