@backstage/backend-test-utils 0.1.16-next.0 → 0.1.17

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 +40 -0
  2. package/package.json +7 -7
package/CHANGELOG.md CHANGED
@@ -1,5 +1,45 @@
1
1
  # @backstage/backend-test-utils
2
2
 
3
+ ## 0.1.17
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
13
+ - @backstage/backend-common@0.10.7
14
+
15
+ ## 0.1.17-next.0
16
+
17
+ ### Patch Changes
18
+
19
+ - 2441d1cf59: chore(deps): bump `knex` from 0.95.6 to 1.0.2
20
+
21
+ This also replaces `sqlite3` with `@vscode/sqlite3` 5.0.7
22
+
23
+ - Updated dependencies
24
+ - @backstage/cli@0.13.2-next.0
25
+ - @backstage/backend-common@0.10.7-next.0
26
+
27
+ ## 0.1.16
28
+
29
+ ### Patch Changes
30
+
31
+ - Updated dependencies
32
+ - @backstage/cli@0.13.1
33
+ - @backstage/backend-common@0.10.6
34
+
35
+ ## 0.1.16-next.1
36
+
37
+ ### Patch Changes
38
+
39
+ - Updated dependencies
40
+ - @backstage/cli@0.13.1-next.1
41
+ - @backstage/backend-common@0.10.6-next.0
42
+
3
43
  ## 0.1.16-next.0
4
44
 
5
45
  ### 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.16-next.0",
4
+ "version": "0.1.17",
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.1-next.0",
33
+ "@backstage/backend-common": "^0.10.7",
34
+ "@backstage/cli": "^0.13.2",
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.1-next.0",
44
+ "@backstage/cli": "^0.13.2",
45
45
  "jest": "^26.0.1"
46
46
  },
47
47
  "files": [
48
48
  "dist"
49
49
  ],
50
- "gitHead": "a28838ac5c80c7332caa6ca0569d2ec85151784f"
50
+ "gitHead": "4f4bc77a4152d372b10a4e8d97d92f00e23f3b56"
51
51
  }