@backstage/config-loader 1.5.1-next.1 → 1.5.1
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 +14 -0
- package/package.json +6 -6
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,19 @@
|
|
|
1
1
|
# @backstage/config-loader
|
|
2
2
|
|
|
3
|
+
## 1.5.1
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- 0b55f773a7: Removed some unused dependencies
|
|
8
|
+
- 30c553c1d2: Updated dependency `typescript-json-schema` to `^0.61.0`.
|
|
9
|
+
- 773ea341d2: The `FileConfigSource` will now retry file reading after a short delay if it reads an empty file. This is to avoid flakiness during watch mode where change events can trigger before the file content has been written.
|
|
10
|
+
- a4617c422a: Added `watch` option to configuration loaders that can be used to disable file watching by setting it to `false`.
|
|
11
|
+
- Updated dependencies
|
|
12
|
+
- @backstage/errors@1.2.3
|
|
13
|
+
- @backstage/cli-common@0.1.13
|
|
14
|
+
- @backstage/config@1.1.1
|
|
15
|
+
- @backstage/types@1.1.1
|
|
16
|
+
|
|
3
17
|
## 1.5.1-next.1
|
|
4
18
|
|
|
5
19
|
### 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": "1.5.1
|
|
4
|
+
"version": "1.5.1",
|
|
5
5
|
"publishConfig": {
|
|
6
6
|
"access": "public",
|
|
7
7
|
"main": "dist/index.cjs.js",
|
|
@@ -33,9 +33,9 @@
|
|
|
33
33
|
"start": "backstage-cli package start"
|
|
34
34
|
},
|
|
35
35
|
"dependencies": {
|
|
36
|
-
"@backstage/cli-common": "^0.1.13
|
|
37
|
-
"@backstage/config": "^1.1.1
|
|
38
|
-
"@backstage/errors": "^1.2.3
|
|
36
|
+
"@backstage/cli-common": "^0.1.13",
|
|
37
|
+
"@backstage/config": "^1.1.1",
|
|
38
|
+
"@backstage/errors": "^1.2.3",
|
|
39
39
|
"@backstage/types": "^1.1.1",
|
|
40
40
|
"@types/json-schema": "^7.0.6",
|
|
41
41
|
"ajv": "^8.10.0",
|
|
@@ -51,8 +51,8 @@
|
|
|
51
51
|
"yaml": "^2.0.0"
|
|
52
52
|
},
|
|
53
53
|
"devDependencies": {
|
|
54
|
-
"@backstage/backend-test-utils": "^0.2.7
|
|
55
|
-
"@backstage/cli": "^0.23.0
|
|
54
|
+
"@backstage/backend-test-utils": "^0.2.7",
|
|
55
|
+
"@backstage/cli": "^0.23.0",
|
|
56
56
|
"@types/json-schema-merge-allof": "^0.6.0",
|
|
57
57
|
"@types/mock-fs": "^4.10.0",
|
|
58
58
|
"msw": "^1.0.0",
|