@backstage/config-loader 0.9.3-next.0 → 0.9.3
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +23 -0
- package/package.json +3 -3
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,28 @@
|
|
|
1
1
|
# @backstage/config-loader
|
|
2
2
|
|
|
3
|
+
## 0.9.3
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- f685e1398f: Loading of app configurations now reference the `@deprecated` construct from
|
|
8
|
+
JSDoc to determine if a property in-use has been deprecated. Users are notified
|
|
9
|
+
of deprecated keys in the format:
|
|
10
|
+
|
|
11
|
+
```txt
|
|
12
|
+
The configuration key 'catalog.processors.githubOrg' of app-config.yaml is deprecated and may be removed soon. Configure a GitHub integration instead.
|
|
13
|
+
```
|
|
14
|
+
|
|
15
|
+
When the `withDeprecatedKeys` option is set to `true` in the `process` method
|
|
16
|
+
of `loadConfigSchema`, the user will be notified that deprecated keys have been
|
|
17
|
+
identified in their app configuration.
|
|
18
|
+
|
|
19
|
+
The `backend-common` and `plugin-app-backend` packages have been updated to set
|
|
20
|
+
`withDeprecatedKeys` to true so that users are notified of deprecated settings
|
|
21
|
+
by default.
|
|
22
|
+
|
|
23
|
+
- Updated dependencies
|
|
24
|
+
- @backstage/config@0.1.13
|
|
25
|
+
|
|
3
26
|
## 0.9.3-next.0
|
|
4
27
|
|
|
5
28
|
### Patch Changes
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@backstage/config-loader",
|
|
3
3
|
"description": "Config loading functionality used by Backstage backend, and CLI",
|
|
4
|
-
"version": "0.9.3
|
|
4
|
+
"version": "0.9.3",
|
|
5
5
|
"private": false,
|
|
6
6
|
"publishConfig": {
|
|
7
7
|
"access": "public",
|
|
@@ -31,7 +31,7 @@
|
|
|
31
31
|
},
|
|
32
32
|
"dependencies": {
|
|
33
33
|
"@backstage/cli-common": "^0.1.6",
|
|
34
|
-
"@backstage/config": "^0.1.13
|
|
34
|
+
"@backstage/config": "^0.1.13",
|
|
35
35
|
"@backstage/errors": "^0.2.0",
|
|
36
36
|
"@backstage/types": "^0.1.1",
|
|
37
37
|
"@types/json-schema": "^7.0.6",
|
|
@@ -58,6 +58,6 @@
|
|
|
58
58
|
"files": [
|
|
59
59
|
"dist"
|
|
60
60
|
],
|
|
61
|
-
"gitHead": "
|
|
61
|
+
"gitHead": "600d6e3c854bbfb12a0078ca6f726d1c0d1fea0b",
|
|
62
62
|
"module": "dist/index.esm.js"
|
|
63
63
|
}
|