@backstage/backend-test-utils 1.11.0-next.1 → 1.11.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 +20 -0
- package/package.json +11 -11
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,25 @@
|
|
|
1
1
|
# @backstage/backend-test-utils
|
|
2
2
|
|
|
3
|
+
## 1.11.0
|
|
4
|
+
|
|
5
|
+
### Minor Changes
|
|
6
|
+
|
|
7
|
+
- 42abfb1: Added `createServiceMock`, a public utility for creating `ServiceMock` instances for custom service refs. This allows plugin authors to define mock creators for their own services following the same pattern as the built-in `mockServices` mocks.
|
|
8
|
+
|
|
9
|
+
### Patch Changes
|
|
10
|
+
|
|
11
|
+
- f1d29b4: Updated `startTestBackend` to support factory-based extension points (v1.1 format) in addition to the existing direct implementation format.
|
|
12
|
+
- 7455dae: Use node prefix on native imports
|
|
13
|
+
- 68eb322: Added `@types/jest` as an optional peer dependency, since jest types are exposed in the public API surface.
|
|
14
|
+
- 69d880e: Bump to latest zod to ensure it has the latest features
|
|
15
|
+
- Updated dependencies
|
|
16
|
+
- @backstage/backend-app-api@1.5.0
|
|
17
|
+
- @backstage/backend-plugin-api@1.7.0
|
|
18
|
+
- @backstage/backend-defaults@0.15.2
|
|
19
|
+
- @backstage/plugin-auth-node@0.6.13
|
|
20
|
+
- @backstage/plugin-permission-common@0.9.6
|
|
21
|
+
- @backstage/plugin-events-node@0.4.19
|
|
22
|
+
|
|
3
23
|
## 1.11.0-next.1
|
|
4
24
|
|
|
5
25
|
### Minor Changes
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@backstage/backend-test-utils",
|
|
3
|
-
"version": "1.11.0
|
|
3
|
+
"version": "1.11.0",
|
|
4
4
|
"description": "Test helpers library for Backstage backends",
|
|
5
5
|
"backstage": {
|
|
6
6
|
"role": "node-library"
|
|
@@ -57,15 +57,15 @@
|
|
|
57
57
|
"test": "backstage-cli package test"
|
|
58
58
|
},
|
|
59
59
|
"dependencies": {
|
|
60
|
-
"@backstage/backend-app-api": "1.5.0
|
|
61
|
-
"@backstage/backend-defaults": "0.15.2
|
|
62
|
-
"@backstage/backend-plugin-api": "1.7.0
|
|
63
|
-
"@backstage/config": "1.3.6",
|
|
64
|
-
"@backstage/errors": "1.2.7",
|
|
65
|
-
"@backstage/plugin-auth-node": "0.6.13
|
|
66
|
-
"@backstage/plugin-events-node": "0.4.19
|
|
67
|
-
"@backstage/plugin-permission-common": "0.9.6
|
|
68
|
-
"@backstage/types": "1.2.2",
|
|
60
|
+
"@backstage/backend-app-api": "^1.5.0",
|
|
61
|
+
"@backstage/backend-defaults": "^0.15.2",
|
|
62
|
+
"@backstage/backend-plugin-api": "^1.7.0",
|
|
63
|
+
"@backstage/config": "^1.3.6",
|
|
64
|
+
"@backstage/errors": "^1.2.7",
|
|
65
|
+
"@backstage/plugin-auth-node": "^0.6.13",
|
|
66
|
+
"@backstage/plugin-events-node": "^0.4.19",
|
|
67
|
+
"@backstage/plugin-permission-common": "^0.9.6",
|
|
68
|
+
"@backstage/types": "^1.2.2",
|
|
69
69
|
"@keyv/memcache": "^2.0.1",
|
|
70
70
|
"@keyv/redis": "^4.0.1",
|
|
71
71
|
"@keyv/valkey": "^1.0.1",
|
|
@@ -91,7 +91,7 @@
|
|
|
91
91
|
"zod-to-json-schema": "^3.25.1"
|
|
92
92
|
},
|
|
93
93
|
"devDependencies": {
|
|
94
|
-
"@backstage/cli": "0.35.4
|
|
94
|
+
"@backstage/cli": "^0.35.4",
|
|
95
95
|
"@types/jest": "*",
|
|
96
96
|
"@types/lodash": "^4.14.151",
|
|
97
97
|
"@types/supertest": "^2.0.8",
|