@backstage/backend-test-utils 1.1.0-next.3 → 1.1.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 +21 -0
- package/package.json +11 -11
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,26 @@
|
|
|
1
1
|
# @backstage/backend-test-utils
|
|
2
2
|
|
|
3
|
+
## 1.1.0
|
|
4
|
+
|
|
5
|
+
### Minor Changes
|
|
6
|
+
|
|
7
|
+
- 5064827: Made it possible to construct `mockServices.database` with a given knex instance
|
|
8
|
+
|
|
9
|
+
### Patch Changes
|
|
10
|
+
|
|
11
|
+
- 7aae8e3: The `mockServices.discovery.factory()` factory now uses the mocked discovery service as its implementation, avoid the need for configuration.
|
|
12
|
+
- eb82994: Removed unused `msw` dependency.
|
|
13
|
+
- 4e58bc7: Upgrade to uuid v11 internally
|
|
14
|
+
- Updated dependencies
|
|
15
|
+
- @backstage/config@1.3.0
|
|
16
|
+
- @backstage/plugin-events-node@0.4.5
|
|
17
|
+
- @backstage/backend-defaults@0.5.3
|
|
18
|
+
- @backstage/types@1.2.0
|
|
19
|
+
- @backstage/plugin-auth-node@0.5.4
|
|
20
|
+
- @backstage/backend-plugin-api@1.0.2
|
|
21
|
+
- @backstage/backend-app-api@1.0.2
|
|
22
|
+
- @backstage/errors@1.2.5
|
|
23
|
+
|
|
3
24
|
## 1.1.0-next.3
|
|
4
25
|
|
|
5
26
|
### Patch Changes
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@backstage/backend-test-utils",
|
|
3
|
-
"version": "1.1.0
|
|
3
|
+
"version": "1.1.0",
|
|
4
4
|
"description": "Test helpers library for Backstage backends",
|
|
5
5
|
"backstage": {
|
|
6
6
|
"role": "node-library"
|
|
@@ -49,14 +49,14 @@
|
|
|
49
49
|
"test": "backstage-cli package test"
|
|
50
50
|
},
|
|
51
51
|
"dependencies": {
|
|
52
|
-
"@backstage/backend-app-api": "1.0.2
|
|
53
|
-
"@backstage/backend-defaults": "0.5.3
|
|
54
|
-
"@backstage/backend-plugin-api": "1.0.2
|
|
55
|
-
"@backstage/config": "1.
|
|
56
|
-
"@backstage/errors": "1.2.
|
|
57
|
-
"@backstage/plugin-auth-node": "0.5.4
|
|
58
|
-
"@backstage/plugin-events-node": "0.4.5
|
|
59
|
-
"@backstage/types": "1.
|
|
52
|
+
"@backstage/backend-app-api": "^1.0.2",
|
|
53
|
+
"@backstage/backend-defaults": "^0.5.3",
|
|
54
|
+
"@backstage/backend-plugin-api": "^1.0.2",
|
|
55
|
+
"@backstage/config": "^1.3.0",
|
|
56
|
+
"@backstage/errors": "^1.2.5",
|
|
57
|
+
"@backstage/plugin-auth-node": "^0.5.4",
|
|
58
|
+
"@backstage/plugin-events-node": "^0.4.5",
|
|
59
|
+
"@backstage/types": "^1.2.0",
|
|
60
60
|
"@keyv/memcache": "^1.3.5",
|
|
61
61
|
"@keyv/redis": "^2.5.3",
|
|
62
62
|
"@types/express": "^4.17.6",
|
|
@@ -74,11 +74,11 @@
|
|
|
74
74
|
"pg-connection-string": "^2.3.0",
|
|
75
75
|
"testcontainers": "^10.0.0",
|
|
76
76
|
"textextensions": "^5.16.0",
|
|
77
|
-
"uuid": "^
|
|
77
|
+
"uuid": "^11.0.0",
|
|
78
78
|
"yn": "^4.0.0"
|
|
79
79
|
},
|
|
80
80
|
"devDependencies": {
|
|
81
|
-
"@backstage/cli": "0.29.0
|
|
81
|
+
"@backstage/cli": "^0.29.0",
|
|
82
82
|
"@types/supertest": "^2.0.8",
|
|
83
83
|
"supertest": "^7.0.0"
|
|
84
84
|
},
|