@backstage/backend-test-utils 0.3.7-next.1 → 0.3.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 +15 -0
- package/package.json +6 -6
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,20 @@
|
|
|
1
1
|
# @backstage/backend-test-utils
|
|
2
2
|
|
|
3
|
+
## 0.3.7
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- 3256f14: `startTestBackend` will now add placeholder plugins when a modules are provided without their parent plugin.
|
|
8
|
+
- 007e7ea: Added mock of the new `listPublicServiceKeys` method for `AuthService`.
|
|
9
|
+
- Updated dependencies
|
|
10
|
+
- @backstage/backend-common@0.21.7
|
|
11
|
+
- @backstage/backend-app-api@0.7.0
|
|
12
|
+
- @backstage/backend-plugin-api@0.6.17
|
|
13
|
+
- @backstage/plugin-auth-node@0.4.12
|
|
14
|
+
- @backstage/config@1.2.0
|
|
15
|
+
- @backstage/errors@1.2.4
|
|
16
|
+
- @backstage/types@1.1.1
|
|
17
|
+
|
|
3
18
|
## 0.3.7-next.1
|
|
4
19
|
|
|
5
20
|
### Patch Changes
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@backstage/backend-test-utils",
|
|
3
|
-
"version": "0.3.7
|
|
3
|
+
"version": "0.3.7",
|
|
4
4
|
"description": "Test helpers library for Backstage backends",
|
|
5
5
|
"backstage": {
|
|
6
6
|
"role": "node-library"
|
|
@@ -42,12 +42,12 @@
|
|
|
42
42
|
"test": "backstage-cli package test"
|
|
43
43
|
},
|
|
44
44
|
"dependencies": {
|
|
45
|
-
"@backstage/backend-app-api": "^0.7.0
|
|
46
|
-
"@backstage/backend-common": "^0.21.7
|
|
47
|
-
"@backstage/backend-plugin-api": "^0.6.17
|
|
45
|
+
"@backstage/backend-app-api": "^0.7.0",
|
|
46
|
+
"@backstage/backend-common": "^0.21.7",
|
|
47
|
+
"@backstage/backend-plugin-api": "^0.6.17",
|
|
48
48
|
"@backstage/config": "^1.2.0",
|
|
49
49
|
"@backstage/errors": "^1.2.4",
|
|
50
|
-
"@backstage/plugin-auth-node": "^0.4.12
|
|
50
|
+
"@backstage/plugin-auth-node": "^0.4.12",
|
|
51
51
|
"@backstage/types": "^1.1.1",
|
|
52
52
|
"better-sqlite3": "^9.0.0",
|
|
53
53
|
"cookie": "^0.6.0",
|
|
@@ -62,7 +62,7 @@
|
|
|
62
62
|
"uuid": "^9.0.0"
|
|
63
63
|
},
|
|
64
64
|
"devDependencies": {
|
|
65
|
-
"@backstage/cli": "^0.26.3
|
|
65
|
+
"@backstage/cli": "^0.26.3",
|
|
66
66
|
"@types/supertest": "^2.0.8",
|
|
67
67
|
"supertest": "^6.1.3"
|
|
68
68
|
},
|