From f27f5197e2511864817c168d08fbf7ab82751714 Mon Sep 17 00:00:00 2001 From: blam Date: Fri, 28 Jan 2022 16:49:05 +0100 Subject: [PATCH] create-app: apply changeset for hot release Co-authored-by: Patrik Oldsberg Signed-off-by: blam --- .changeset/early-cooks-brake.md | 18 ++++++++++++++++++ .changeset/patched.json | 4 +++- 2 files changed, 21 insertions(+), 1 deletion(-) create mode 100644 .changeset/early-cooks-brake.md diff --git a/.changeset/early-cooks-brake.md b/.changeset/early-cooks-brake.md new file mode 100644 index 0000000000..3a657223b2 --- /dev/null +++ b/.changeset/early-cooks-brake.md @@ -0,0 +1,18 @@ +--- +'@backstage/create-app': patch +--- + +Adds missing `/catalog-graph` route to ``. + +To fix this problem for a recently created app please update your `app/src/App.tsx` + +```diff ++ import { CatalogGraphPage } from '@backstage/plugin-catalog-graph'; + ... omitted ... + + } /> ++ } /> + +``` + +This fix also exists in version `0.4.16`, which is part of the `v0.65.1` release of Backstage. diff --git a/.changeset/patched.json b/.changeset/patched.json index 1029c8f106..f2a4688500 100644 --- a/.changeset/patched.json +++ b/.changeset/patched.json @@ -1,3 +1,5 @@ { - "currentReleaseVersion": {} + "currentReleaseVersion": { + "@backstage/create-app": "0.4.16" + } }