@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.
Files changed (2) hide show
  1. package/CHANGELOG.md +9 -2
  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-20220209022121
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
@@ -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.0.0-nightly-20220209022121",
4
+ "version": "0.0.0-nightly-20220210021913",
5
5
  "private": false,
6
6
  "publishConfig": {
7
7
  "access": "public"