@backstage/backend-test-utils 1.10.0-next.2 → 1.10.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 +21 -0
  2. package/package.json +11 -11
package/CHANGELOG.md CHANGED
@@ -1,5 +1,26 @@
1
1
  # @backstage/backend-test-utils
2
2
 
3
+ ## 1.10.0
4
+
5
+ ### Minor Changes
6
+
7
+ - d57b13b: Added support for Postgres 18 to the available `TestDatabases`.
8
+
9
+ Note that the set of _default_ databases to test against for users of the `TestDatabases` class was also updated to include Postgres 14 and 18, instead of 13 and 17. If you need to override this, you can pass in an explicit `ids` argument, for example `ids: ['POSTGRES_17', 'POSTGRES_13', 'SQLITE_3']`.
10
+
11
+ ### Patch Changes
12
+
13
+ - f3001fd: Tweak some of the mock services to have more precise types
14
+ - 05f60e1: Refactored constructor parameter properties to explicit property declarations for compatibility with TypeScript's `erasableSyntaxOnly` setting. This internal refactoring maintains all existing functionality while ensuring TypeScript compilation compatibility.
15
+ - Updated dependencies
16
+ - @backstage/backend-defaults@0.13.1
17
+ - @backstage/backend-plugin-api@1.5.0
18
+ - @backstage/backend-app-api@1.3.0
19
+ - @backstage/plugin-permission-common@0.9.3
20
+ - @backstage/plugin-events-node@0.4.17
21
+ - @backstage/plugin-auth-node@0.6.9
22
+ - @backstage/config@1.3.6
23
+
3
24
  ## 1.10.0-next.2
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.10.0-next.2",
3
+ "version": "1.10.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.3.0-next.1",
61
- "@backstage/backend-defaults": "0.13.1-next.1",
62
- "@backstage/backend-plugin-api": "1.5.0-next.2",
63
- "@backstage/config": "1.3.6-next.0",
64
- "@backstage/errors": "1.2.7",
65
- "@backstage/plugin-auth-node": "0.6.9-next.1",
66
- "@backstage/plugin-events-node": "0.4.17-next.1",
67
- "@backstage/plugin-permission-common": "0.9.3-next.1",
68
- "@backstage/types": "1.2.2",
60
+ "@backstage/backend-app-api": "^1.3.0",
61
+ "@backstage/backend-defaults": "^0.13.1",
62
+ "@backstage/backend-plugin-api": "^1.5.0",
63
+ "@backstage/config": "^1.3.6",
64
+ "@backstage/errors": "^1.2.7",
65
+ "@backstage/plugin-auth-node": "^0.6.9",
66
+ "@backstage/plugin-events-node": "^0.4.17",
67
+ "@backstage/plugin-permission-common": "^0.9.3",
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.20.4"
92
92
  },
93
93
  "devDependencies": {
94
- "@backstage/cli": "0.34.5-next.1",
94
+ "@backstage/cli": "^0.34.5",
95
95
  "@types/jest": "*",
96
96
  "@types/lodash": "^4.14.151",
97
97
  "@types/supertest": "^2.0.8",