@backstage/backend-test-utils 1.11.5-next.0 → 1.11.5

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 +12 -0
  2. package/package.json +11 -11
package/CHANGELOG.md CHANGED
@@ -1,5 +1,17 @@
1
1
  # @backstage/backend-test-utils
2
2
 
3
+ ## 1.11.5
4
+
5
+ ### Patch Changes
6
+
7
+ - 41c56b3: Fixed MySQL test database failures by pinning the Docker image from the floating `mysql:8` tag to `mysql:8.4` and replacing a startup flag that was removed in MySQL 8.4. Connection pool reduced from 50 to 5 per test database, idle connections are now reaped after 5 seconds, and container connection limits raised to 1000 for both MySQL and Postgres to handle parallel Jest workers on high-core machines.
8
+ - Updated dependencies
9
+ - @backstage/backend-defaults@0.17.5
10
+ - @backstage/plugin-auth-node@0.7.3
11
+ - @backstage/backend-app-api@1.7.2
12
+ - @backstage/backend-plugin-api@1.9.3
13
+ - @backstage/plugin-events-node@0.4.24
14
+
3
15
  ## 1.11.5-next.0
4
16
 
5
17
  ### Patch Changes
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@backstage/backend-test-utils",
3
- "version": "1.11.5-next.0",
3
+ "version": "1.11.5",
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.7.2-next.0",
61
- "@backstage/backend-defaults": "0.17.4-next.0",
62
- "@backstage/backend-plugin-api": "1.9.3-next.0",
63
- "@backstage/config": "1.3.8",
64
- "@backstage/errors": "1.3.1",
65
- "@backstage/plugin-auth-node": "0.7.3-next.0",
66
- "@backstage/plugin-events-node": "0.4.24-next.0",
67
- "@backstage/plugin-permission-common": "0.9.9",
68
- "@backstage/types": "1.2.2",
60
+ "@backstage/backend-app-api": "^1.7.2",
61
+ "@backstage/backend-defaults": "^0.17.5",
62
+ "@backstage/backend-plugin-api": "^1.9.3",
63
+ "@backstage/config": "^1.3.8",
64
+ "@backstage/errors": "^1.3.1",
65
+ "@backstage/plugin-auth-node": "^0.7.3",
66
+ "@backstage/plugin-events-node": "^0.4.24",
67
+ "@backstage/plugin-permission-common": "^0.9.9",
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",
@@ -90,7 +90,7 @@
90
90
  "zod-to-json-schema": "^3.25.1"
91
91
  },
92
92
  "devDependencies": {
93
- "@backstage/cli": "0.36.4-next.0",
93
+ "@backstage/cli": "^0.36.4",
94
94
  "@types/jest": "*",
95
95
  "@types/lodash": "^4.14.151",
96
96
  "@types/supertest": "^2.0.8",