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