Version Packages

This commit is contained in:
github-actions[bot]
2021-01-28 10:46:08 +00:00
parent a84f3535a9
commit cda741034d
97 changed files with 523 additions and 315 deletions
+18
View File
@@ -1,5 +1,23 @@
# @backstage/config-loader
## 0.5.0
### Minor Changes
- ef7957be4: Removed support for the deprecated `$data` placeholder.
- ef7957be4: Enable further processing of configuration files included using the `$include` placeholder. Meaning that for example for example `$env` includes will be processed as usual in included files.
### Patch Changes
- ef7957be4: Added support for environment variable substitutions in string configuration values using a `${VAR}` placeholder. All environment variables must be available, or the entire expression will be evaluated to `undefined`. To escape a substitution, use `${...}`, which will end up as `${...}`.
For example:
```yaml
app:
baseUrl: https://${BASE_HOST}
```
## 0.4.1
### Patch Changes
+1 -1
View File
@@ -1,7 +1,7 @@
{
"name": "@backstage/config-loader",
"description": "Config loading functionality used by Backstage backend, and CLI",
"version": "0.4.1",
"version": "0.5.0",
"private": false,
"publishConfig": {
"access": "public",