@backstage/backend-test-utils 0.2.7-next.2 → 0.2.7
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 +16 -0
- package/package.json +8 -8
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,21 @@
|
|
|
1
1
|
# @backstage/backend-test-utils
|
|
2
2
|
|
|
3
|
+
## 0.2.7
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- a250ad775f: Added `createMockDirectory()` to help out with file system mocking in tests.
|
|
8
|
+
- 5ddc03813e: Remove third type parameter used for `MockInstance`, in order to be compatible with older versions of `@types/jest`.
|
|
9
|
+
- 74491c9602: Updated to import `HostDiscovery` from `@backstage/backend-app-api`.
|
|
10
|
+
- Updated dependencies
|
|
11
|
+
- @backstage/backend-common@0.19.8
|
|
12
|
+
- @backstage/plugin-auth-node@0.4.0
|
|
13
|
+
- @backstage/errors@1.2.3
|
|
14
|
+
- @backstage/backend-app-api@0.5.6
|
|
15
|
+
- @backstage/backend-plugin-api@0.6.6
|
|
16
|
+
- @backstage/config@1.1.1
|
|
17
|
+
- @backstage/types@1.1.1
|
|
18
|
+
|
|
3
19
|
## 0.2.7-next.2
|
|
4
20
|
|
|
5
21
|
### Patch Changes
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@backstage/backend-test-utils",
|
|
3
3
|
"description": "Test helpers library for Backstage backends",
|
|
4
|
-
"version": "0.2.7
|
|
4
|
+
"version": "0.2.7",
|
|
5
5
|
"main": "./dist/index.cjs.js",
|
|
6
6
|
"types": "./dist/index.d.ts",
|
|
7
7
|
"publishConfig": {
|
|
@@ -39,12 +39,12 @@
|
|
|
39
39
|
"start": "backstage-cli package start"
|
|
40
40
|
},
|
|
41
41
|
"dependencies": {
|
|
42
|
-
"@backstage/backend-app-api": "^0.5.6
|
|
43
|
-
"@backstage/backend-common": "^0.19.8
|
|
44
|
-
"@backstage/backend-plugin-api": "^0.6.6
|
|
45
|
-
"@backstage/config": "^1.1.1
|
|
46
|
-
"@backstage/errors": "^1.2.3
|
|
47
|
-
"@backstage/plugin-auth-node": "^0.4.0
|
|
42
|
+
"@backstage/backend-app-api": "^0.5.6",
|
|
43
|
+
"@backstage/backend-common": "^0.19.8",
|
|
44
|
+
"@backstage/backend-plugin-api": "^0.6.6",
|
|
45
|
+
"@backstage/config": "^1.1.1",
|
|
46
|
+
"@backstage/errors": "^1.2.3",
|
|
47
|
+
"@backstage/plugin-auth-node": "^0.4.0",
|
|
48
48
|
"@backstage/types": "^1.1.1",
|
|
49
49
|
"better-sqlite3": "^8.0.0",
|
|
50
50
|
"express": "^4.17.1",
|
|
@@ -61,7 +61,7 @@
|
|
|
61
61
|
"@types/jest": "*"
|
|
62
62
|
},
|
|
63
63
|
"devDependencies": {
|
|
64
|
-
"@backstage/cli": "^0.23.0
|
|
64
|
+
"@backstage/cli": "^0.23.0",
|
|
65
65
|
"@types/supertest": "^2.0.8",
|
|
66
66
|
"supertest": "^6.1.3"
|
|
67
67
|
},
|