@backstage/create-app 0.0.0-nightly-20220209022121 → 0.0.0-nightly-20220210021913
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 +9 -2
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
# @backstage/create-app
|
|
2
2
|
|
|
3
|
-
## 0.0.0-nightly-
|
|
3
|
+
## 0.0.0-nightly-20220210021913
|
|
4
4
|
|
|
5
5
|
### Patch Changes
|
|
6
6
|
|
|
@@ -341,11 +341,18 @@
|
|
|
341
341
|
}
|
|
342
342
|
```
|
|
343
343
|
|
|
344
|
+
The `.fromConfig` of the `DefaultCatalogCollator` also now takes a `tokenManager` as a parameter.
|
|
345
|
+
|
|
346
|
+
```diff
|
|
347
|
+
- collator: DefaultCatalogCollator.fromConfig(config, { discovery }),
|
|
348
|
+
+ collator: DefaultCatalogCollator.fromConfig(config, { discovery, tokenManager }),
|
|
349
|
+
```
|
|
350
|
+
|
|
344
351
|
- a0d446c8ec: Replaced EntitySystemDiagramCard with EntityCatalogGraphCard
|
|
345
352
|
|
|
346
353
|
To make this change to an existing app:
|
|
347
354
|
|
|
348
|
-
Add `@backstage/plugin-catalog-graph` as a `dependency` in `packages/app/package.json`
|
|
355
|
+
Add `@backstage/plugin-catalog-graph` as a `dependency` in `packages/app/package.json` or `cd packages/app && yarn add @backstage/plugin-catalog-graph`.
|
|
349
356
|
|
|
350
357
|
Apply the following changes to the `packages/app/src/components/catalog/EntityPage.tsx` file:
|
|
351
358
|
|
package/package.json
CHANGED