Version Packages

This commit is contained in:
github-actions[bot]
2021-01-07 10:31:20 +00:00
parent 6a8d1eeb18
commit 28d7f319f4
94 changed files with 373 additions and 312 deletions
+21
View File
@@ -1,5 +1,26 @@
# @backstage/config-loader
## 0.4.1
### Patch Changes
- ad5c56fd9: Deprecate `$data` and replace it with `$include` which allows for any type of json value to be read from external files. In addition, `$include` can be used without a path, which causes the value at the root of the file to be loaded.
Most usages of `$data` can be directly replaced with `$include`, except if the referenced value is not a string, in which case the value needs to be changed. For example:
```yaml
# app-config.yaml
foo:
$data: foo.yaml#myValue # replacing with $include will turn the value into a number
$data: bar.yaml#myValue # replacing with $include is safe
# foo.yaml
myValue: 0xf00
# bar.yaml
myValue: bar
```
## 0.4.0
### Minor 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.0",
"version": "0.4.1",
"private": false,
"publishConfig": {
"access": "public",