changesets: add changesets for all config changes

This commit is contained in:
Patrik Oldsberg
2021-01-24 18:01:23 +01:00
parent 651561eda8
commit ef7957be48
4 changed files with 27 additions and 0 deletions
+5
View File
@@ -0,0 +1,5 @@
---
'@backstage/cli': patch
---
Add `--lax` option to `config:print` and `config:check`, which causes all environment variables to be assumed to be set.
+12
View File
@@ -0,0 +1,12 @@
---
'@backstage/config-loader': patch
---
Added support for environment variable substitutions in string configuration values using a `${VAR}` placeholder. All environment variables much 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}
```
+5
View File
@@ -0,0 +1,5 @@
---
'@backstage/config-loader': minor
---
Removed support for the deprecated `$data` placeholder.
+5
View File
@@ -0,0 +1,5 @@
---
'@backstage/config-loader': minor
---
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.