From f0e9f82d0cf3dbed4be728b9ff4229f6a4b114a1 Mon Sep 17 00:00:00 2001 From: blam Date: Fri, 28 Jan 2022 16:55:52 +0100 Subject: [PATCH] create-app: copying the changelog from 0.4.16 release Co-authored-by: Patrik Oldsberg Signed-off-by: blam --- .changeset/early-cooks-brake.md | 15 +-------------- packages/create-app/CHANGELOG.md | 19 +++++++++++++++++++ 2 files changed, 20 insertions(+), 14 deletions(-) diff --git a/.changeset/early-cooks-brake.md b/.changeset/early-cooks-brake.md index 3a657223b2..3037d71ff4 100644 --- a/.changeset/early-cooks-brake.md +++ b/.changeset/early-cooks-brake.md @@ -2,17 +2,4 @@ '@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. +Apply the fix from `0.4.16`, which is part of the `v0.65.1` release of Backstage. diff --git a/packages/create-app/CHANGELOG.md b/packages/create-app/CHANGELOG.md index 3c426293af..6200003dc4 100644 --- a/packages/create-app/CHANGELOG.md +++ b/packages/create-app/CHANGELOG.md @@ -1,5 +1,24 @@ # @backstage/create-app +## 0.4.16 + +### Patch Changes + +- c945cd9f7e: 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 ... + + + } /> + + } /> + + ``` + ## 0.4.15 ### Patch Changes