@backstage/backend-test-utils 1.1.0-next.2 → 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.
Files changed (2) hide show
  1. package/CHANGELOG.md +35 -0
  2. package/package.json +18 -11
package/CHANGELOG.md CHANGED
@@ -1,5 +1,40 @@
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
+
24
+ ## 1.1.0-next.3
25
+
26
+ ### Patch Changes
27
+
28
+ - Updated dependencies
29
+ - @backstage/plugin-events-node@0.4.5-next.3
30
+ - @backstage/backend-defaults@0.5.3-next.3
31
+ - @backstage/backend-app-api@1.0.2-next.2
32
+ - @backstage/backend-plugin-api@1.0.2-next.2
33
+ - @backstage/config@1.2.0
34
+ - @backstage/errors@1.2.4
35
+ - @backstage/types@1.1.1
36
+ - @backstage/plugin-auth-node@0.5.4-next.2
37
+
3
38
  ## 1.1.0-next.2
4
39
 
5
40
  ### Minor Changes
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@backstage/backend-test-utils",
3
- "version": "1.1.0-next.2",
3
+ "version": "1.1.0",
4
4
  "description": "Test helpers library for Backstage backends",
5
5
  "backstage": {
6
6
  "role": "node-library"
@@ -29,6 +29,13 @@
29
29
  },
30
30
  "main": "./dist/index.cjs.js",
31
31
  "types": "./dist/index.d.ts",
32
+ "typesVersions": {
33
+ "*": {
34
+ "index": [
35
+ "dist/index.d.ts"
36
+ ]
37
+ }
38
+ },
32
39
  "files": [
33
40
  "dist"
34
41
  ],
@@ -42,14 +49,14 @@
42
49
  "test": "backstage-cli package test"
43
50
  },
44
51
  "dependencies": {
45
- "@backstage/backend-app-api": "1.0.2-next.2",
46
- "@backstage/backend-defaults": "0.5.3-next.2",
47
- "@backstage/backend-plugin-api": "1.0.2-next.2",
48
- "@backstage/config": "1.2.0",
49
- "@backstage/errors": "1.2.4",
50
- "@backstage/plugin-auth-node": "0.5.4-next.2",
51
- "@backstage/plugin-events-node": "0.4.5-next.2",
52
- "@backstage/types": "1.1.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",
53
60
  "@keyv/memcache": "^1.3.5",
54
61
  "@keyv/redis": "^2.5.3",
55
62
  "@types/express": "^4.17.6",
@@ -67,11 +74,11 @@
67
74
  "pg-connection-string": "^2.3.0",
68
75
  "testcontainers": "^10.0.0",
69
76
  "textextensions": "^5.16.0",
70
- "uuid": "^9.0.0",
77
+ "uuid": "^11.0.0",
71
78
  "yn": "^4.0.0"
72
79
  },
73
80
  "devDependencies": {
74
- "@backstage/cli": "0.29.0-next.2",
81
+ "@backstage/cli": "^0.29.0",
75
82
  "@types/supertest": "^2.0.8",
76
83
  "supertest": "^7.0.0"
77
84
  },