@backstage/config-loader 1.10.0-next.0 → 1.10.0
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 +15 -0
- package/package.json +8 -7
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,20 @@
|
|
|
1
1
|
# @backstage/config-loader
|
|
2
2
|
|
|
3
|
+
## 1.10.0
|
|
4
|
+
|
|
5
|
+
### Minor Changes
|
|
6
|
+
|
|
7
|
+
- 2fd73aa: The include transforms applied during config loading will now only apply to the known keys `$file`, `$env`, and `$include`. Any other key that begins with a `# @backstage/config-loader will now be passed through as is.
|
|
8
|
+
|
|
9
|
+
### Patch Changes
|
|
10
|
+
|
|
11
|
+
- f422984: Added `@types/minimist` to `devDependencies`
|
|
12
|
+
- Updated dependencies
|
|
13
|
+
- @backstage/cli-common@0.1.15
|
|
14
|
+
- @backstage/config@1.3.2
|
|
15
|
+
- @backstage/errors@1.2.7
|
|
16
|
+
- @backstage/types@1.2.1
|
|
17
|
+
|
|
3
18
|
## 1.10.0-next.0
|
|
4
19
|
|
|
5
20
|
### Minor Changes
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@backstage/config-loader",
|
|
3
|
-
"version": "1.10.0
|
|
3
|
+
"version": "1.10.0",
|
|
4
4
|
"description": "Config loading functionality used by Backstage backend, and CLI",
|
|
5
5
|
"backstage": {
|
|
6
6
|
"role": "node-library"
|
|
@@ -36,10 +36,10 @@
|
|
|
36
36
|
"test": "backstage-cli package test"
|
|
37
37
|
},
|
|
38
38
|
"dependencies": {
|
|
39
|
-
"@backstage/cli-common": "0.1.15",
|
|
40
|
-
"@backstage/config": "1.3.2",
|
|
41
|
-
"@backstage/errors": "1.2.7",
|
|
42
|
-
"@backstage/types": "1.2.1",
|
|
39
|
+
"@backstage/cli-common": "^0.1.15",
|
|
40
|
+
"@backstage/config": "^1.3.2",
|
|
41
|
+
"@backstage/errors": "^1.2.7",
|
|
42
|
+
"@backstage/types": "^1.2.1",
|
|
43
43
|
"@types/json-schema": "^7.0.6",
|
|
44
44
|
"ajv": "^8.10.0",
|
|
45
45
|
"chokidar": "^3.5.2",
|
|
@@ -53,9 +53,10 @@
|
|
|
53
53
|
"yaml": "^2.0.0"
|
|
54
54
|
},
|
|
55
55
|
"devDependencies": {
|
|
56
|
-
"@backstage/backend-test-utils": "1.3.1
|
|
57
|
-
"@backstage/cli": "0.31.0
|
|
56
|
+
"@backstage/backend-test-utils": "^1.3.1",
|
|
57
|
+
"@backstage/cli": "^0.31.0",
|
|
58
58
|
"@types/json-schema-merge-allof": "^0.6.0",
|
|
59
|
+
"@types/minimist": "^1.2.5",
|
|
59
60
|
"msw": "^1.0.0",
|
|
60
61
|
"zen-observable": "^0.10.0"
|
|
61
62
|
},
|