create-app: copying the changelog from 0.4.16 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:55:52 +01:00
parent f27f5197e2
commit f0e9f82d0c
2 changed files with 20 additions and 14 deletions
+1 -14
View File
@@ -2,17 +2,4 @@
'@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.
Apply the fix from `0.4.16`, which is part of the `v0.65.1` release of Backstage.
+19
View File
@@ -1,5 +1,24 @@
# @backstage/create-app
## 0.4.16
### Patch Changes
- c945cd9f7e: 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>
```
## 0.4.15
### Patch Changes