Version Packages

This commit is contained in:
github-actions[bot]
2021-09-09 14:47:05 +00:00
parent 7e88bea17d
commit 866ec85375
104 changed files with 616 additions and 482 deletions
+27
View File
@@ -1,5 +1,32 @@
# @backstage/create-app
## 0.3.40
### Patch Changes
- a5013957e: Updated the search configuration class to use the static `fromConfig`-based constructor for the `DefaultCatalogCollator`.
To apply this change to an existing app, replace the following line in `search.ts`:
```diff
-collator: new DefaultCatalogCollator({ discovery })
+collator: DefaultCatalogCollator.fromConfig(config, { discovery })
```
The `config` parameter was not needed before, so make sure you also add that in the signature of `createPlugin`
in `search.ts`:
```diff
export default async function createPlugin({
logger,
discovery,
+ config,
}: PluginEnvironment) {
```
- Updated dependencies
- @backstage/cli-common@0.1.3
## 0.3.39
### Patch Changes
+2 -2
View File
@@ -1,7 +1,7 @@
{
"name": "@backstage/create-app",
"description": "Create app package for Backstage",
"version": "0.3.39",
"version": "0.3.40",
"private": false,
"publishConfig": {
"access": "public"
@@ -27,7 +27,7 @@
"start": "nodemon --"
},
"dependencies": {
"@backstage/cli-common": "^0.1.2",
"@backstage/cli-common": "^0.1.3",
"chalk": "^4.0.0",
"commander": "^6.1.0",
"fs-extra": "9.1.0",