@backstage/create-app 0.4.15 → 0.4.16
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,24 @@
|
|
|
1
1
|
# @backstage/create-app
|
|
2
2
|
|
|
3
|
+
## 0.4.16
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- c945cd9f7e: Adds missing `/catalog-graph` route to `<CatalogGraphPage/>`.
|
|
8
|
+
|
|
9
|
+
To fix this problem for a recently created app please update your `app/src/App.tsx`
|
|
10
|
+
|
|
11
|
+
```diff
|
|
12
|
+
+ import { CatalogGraphPage } from '@backstage/plugin-catalog-graph';
|
|
13
|
+
|
|
14
|
+
... omitted ...
|
|
15
|
+
|
|
16
|
+
</Route>
|
|
17
|
+
<Route path="/settings" element={<UserSettingsPage />} />
|
|
18
|
+
+ <Route path="/catalog-graph" element={<CatalogGraphPage />} />
|
|
19
|
+
</FlatRoutes>
|
|
20
|
+
```
|
|
21
|
+
|
|
3
22
|
## 0.4.15
|
|
4
23
|
|
|
5
24
|
### Patch Changes
|
package/dist/index.cjs.js
CHANGED
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@backstage/create-app",
|
|
3
3
|
"description": "A CLI that helps you create your own Backstage app",
|
|
4
|
-
"version": "0.4.
|
|
4
|
+
"version": "0.4.16",
|
|
5
5
|
"private": false,
|
|
6
6
|
"publishConfig": {
|
|
7
7
|
"access": "public"
|
|
@@ -57,5 +57,5 @@
|
|
|
57
57
|
"dist",
|
|
58
58
|
"templates"
|
|
59
59
|
],
|
|
60
|
-
"gitHead": "
|
|
60
|
+
"gitHead": "0c722e77190fc3772377336586e2dfc39dfdf466"
|
|
61
61
|
}
|
|
@@ -29,6 +29,7 @@ import { Root } from './components/Root';
|
|
|
29
29
|
import { AlertDisplay, OAuthRequestDialog } from '@backstage/core-components';
|
|
30
30
|
import { createApp } from '@backstage/app-defaults';
|
|
31
31
|
import { FlatRoutes } from '@backstage/core-app-api';
|
|
32
|
+
import { CatalogGraphPage } from '@backstage/plugin-catalog-graph';
|
|
32
33
|
|
|
33
34
|
const app = createApp({
|
|
34
35
|
apis,
|
|
@@ -80,6 +81,7 @@ const routes = (
|
|
|
80
81
|
{searchPage}
|
|
81
82
|
</Route>
|
|
82
83
|
<Route path="/settings" element={<UserSettingsPage />} />
|
|
84
|
+
<Route path="/catalog-graph" element={<CatalogGraphPage />} />
|
|
83
85
|
</FlatRoutes>
|
|
84
86
|
);
|
|
85
87
|
|