create-app: apply changeset for hot release

Co-authored-by: Patrik Oldsberg <poldsberg@gmail.com>
Signed-off-by: blam <ben@blam.sh>
This commit is contained in:
blam
2022-01-28 16:49:05 +01:00
parent 24ef62048c
commit f27f5197e2
2 changed files with 21 additions and 1 deletions
+18
View File
@@ -0,0 +1,18 @@
---
'@backstage/create-app': patch
---
Adds missing `/catalog-graph` route to `<CatalogGraphPage/>`.
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 ...
</Route>
<Route path="/settings" element={<UserSettingsPage />} />
+ <Route path="/catalog-graph" element={<CatalogGraphPage />} />
</FlatRoutes>
```
This fix also exists in version `0.4.16`, which is part of the `v0.65.1` release of Backstage.
+3 -1
View File
@@ -1,3 +1,5 @@
{
"currentReleaseVersion": {}
"currentReleaseVersion": {
"@backstage/create-app": "0.4.16"
}
}