Version Packages

This commit is contained in:
github-actions[bot]
2021-11-18 11:52:08 +00:00
parent 70e4b222be
commit 99bf179ccf
246 changed files with 1632 additions and 1086 deletions
+21
View File
@@ -1,5 +1,26 @@
# @backstage/config-loader
## 0.8.0
### Minor Changes
- 1e99c73c75: Update `loadConfig` to return `LoadConfigResult` instead of an array of `AppConfig`.
This function is primarily used internally by other config loaders like `loadBackendConfig` which means no changes are required for most users.
If you use `loadConfig` directly you will need to update your usage from:
```diff
- const appConfigs = await loadConfig(options)
+ const { appConfigs } = await loadConfig(options)
```
### Patch Changes
- 8809b6c0dd: Update the json-schema dependency version.
- Updated dependencies
- @backstage/cli-common@0.1.6
## 0.7.2
### Patch Changes
+2 -2
View File
@@ -1,7 +1,7 @@
{
"name": "@backstage/config-loader",
"description": "Config loading functionality used by Backstage backend, and CLI",
"version": "0.7.2",
"version": "0.8.0",
"private": false,
"publishConfig": {
"access": "public",
@@ -30,7 +30,7 @@
"clean": "backstage-cli clean"
},
"dependencies": {
"@backstage/cli-common": "^0.1.5",
"@backstage/cli-common": "^0.1.6",
"@backstage/config": "^0.1.11",
"@backstage/errors": "^0.1.4",
"@backstage/types": "^0.1.1",