@backstage/backend-test-utils 0.1.15 → 0.1.17-next.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 +7 -7
package/CHANGELOG.md CHANGED
@@ -1,5 +1,40 @@
1
1
  # @backstage/backend-test-utils
2
2
 
3
+ ## 0.1.17-next.0
4
+
5
+ ### Patch Changes
6
+
7
+ - 2441d1cf59: chore(deps): bump `knex` from 0.95.6 to 1.0.2
8
+
9
+ This also replaces `sqlite3` with `@vscode/sqlite3` 5.0.7
10
+
11
+ - Updated dependencies
12
+ - @backstage/cli@0.13.2-next.0
13
+ - @backstage/backend-common@0.10.7-next.0
14
+
15
+ ## 0.1.16
16
+
17
+ ### Patch Changes
18
+
19
+ - Updated dependencies
20
+ - @backstage/cli@0.13.1
21
+ - @backstage/backend-common@0.10.6
22
+
23
+ ## 0.1.16-next.1
24
+
25
+ ### Patch Changes
26
+
27
+ - Updated dependencies
28
+ - @backstage/cli@0.13.1-next.1
29
+ - @backstage/backend-common@0.10.6-next.0
30
+
31
+ ## 0.1.16-next.0
32
+
33
+ ### Patch Changes
34
+
35
+ - Updated dependencies
36
+ - @backstage/cli@0.13.1-next.0
37
+
3
38
  ## 0.1.15
4
39
 
5
40
  ### Patch Changes
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@backstage/backend-test-utils",
3
3
  "description": "Test helpers library for Backstage backends",
4
- "version": "0.1.15",
4
+ "version": "0.1.17-next.0",
5
5
  "main": "dist/index.cjs.js",
6
6
  "types": "dist/index.d.ts",
7
7
  "private": false,
@@ -30,22 +30,22 @@
30
30
  "clean": "backstage-cli clean"
31
31
  },
32
32
  "dependencies": {
33
- "@backstage/backend-common": "^0.10.5",
34
- "@backstage/cli": "^0.13.0",
33
+ "@backstage/backend-common": "^0.10.7-next.0",
34
+ "@backstage/cli": "^0.13.2-next.0",
35
35
  "@backstage/config": "^0.1.13",
36
- "knex": "^0.95.1",
36
+ "@vscode/sqlite3": "^5.0.7",
37
+ "knex": "^1.0.2",
37
38
  "mysql2": "^2.2.5",
38
39
  "pg": "^8.3.0",
39
- "sqlite3": "^5.0.1",
40
40
  "testcontainers": "^8.1.2",
41
41
  "uuid": "^8.0.0"
42
42
  },
43
43
  "devDependencies": {
44
- "@backstage/cli": "^0.13.0",
44
+ "@backstage/cli": "^0.13.2-next.0",
45
45
  "jest": "^26.0.1"
46
46
  },
47
47
  "files": [
48
48
  "dist"
49
49
  ],
50
- "gitHead": "493394603a2c47ea1d141159af9bc7bb84fac9e5"
50
+ "gitHead": "e6f167225d843beeb974c287c3364d951b587626"
51
51
  }