@cubejs-backend/testing-shared 0.30.20 → 0.30.28

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.
package/CHANGELOG.md CHANGED
@@ -3,6 +3,36 @@
3
3
  All notable changes to this project will be documented in this file.
4
4
  See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
5
5
 
6
+ ## [0.30.28](https://github.com/cube-js/cube.js/compare/v0.30.27...v0.30.28) (2022-06-27)
7
+
8
+ **Note:** Version bump only for package @cubejs-backend/testing-shared
9
+
10
+
11
+
12
+
13
+
14
+ ## [0.30.27](https://github.com/cube-js/cube.js/compare/v0.30.26...v0.30.27) (2022-06-24)
15
+
16
+
17
+ ### Bug Fixes
18
+
19
+ * **questdb-driver:** schema query error due to system tables ([#4762](https://github.com/cube-js/cube.js/issues/4762)) ([5571a70](https://github.com/cube-js/cube.js/commit/5571a70a987b18e6d28b3200a482b76054f2639b))
20
+
21
+
22
+
23
+
24
+
25
+ ## [0.30.25](https://github.com/cube-js/cube.js/compare/v0.30.24...v0.30.25) (2022-06-16)
26
+
27
+
28
+ ### Features
29
+
30
+ * logging cubesql queries errors ([#4550](https://github.com/cube-js/cube.js/issues/4550)) ([10021c3](https://github.com/cube-js/cube.js/commit/10021c34f28348183fd30584d8bb97a97103b91e))
31
+
32
+
33
+
34
+
35
+
6
36
  ## [0.30.20](https://github.com/cube-js/cube.js/compare/v0.30.19...v0.30.20) (2022-06-11)
7
37
 
8
38
  **Note:** Version bump only for package @cubejs-backend/testing-shared
@@ -5,7 +5,7 @@ const testcontainers_1 = require("testcontainers");
5
5
  const db_runner_abstract_1 = require("./db-runner.abstract");
6
6
  class QuestDBRunner extends db_runner_abstract_1.DbRunnerAbstract {
7
7
  static startContainer(options) {
8
- const version = process.env.TEST_QUEST_DB_VERSION || options.version || '6.2.1';
8
+ const version = process.env.TEST_QUEST_DB_VERSION || options.version || '6.4.1';
9
9
  const container = new testcontainers_1.GenericContainer(`questdb/questdb:${version}`)
10
10
  .withExposedPorts(8812)
11
11
  .withStartupTimeout(10 * 1000);
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@cubejs-backend/testing-shared",
3
- "version": "0.30.20",
3
+ "version": "0.30.28",
4
4
  "description": "Cube.js Testing Helpers",
5
5
  "author": "Cube Dev, Inc.",
6
6
  "license": "Apache-2.0",
@@ -21,9 +21,9 @@
21
21
  ],
22
22
  "dependencies": {
23
23
  "@cubejs-backend/dotenv": "^9.0.2",
24
- "@cubejs-backend/query-orchestrator": "^0.30.20",
25
- "@cubejs-backend/schema-compiler": "^0.30.20",
26
- "@cubejs-backend/shared": "^0.30.20",
24
+ "@cubejs-backend/query-orchestrator": "^0.30.25",
25
+ "@cubejs-backend/schema-compiler": "^0.30.28",
26
+ "@cubejs-backend/shared": "^0.30.25",
27
27
  "dedent": "^0.7.0",
28
28
  "testcontainers": "^7.5.0"
29
29
  },
@@ -52,5 +52,5 @@
52
52
  "eslintConfig": {
53
53
  "extends": "../cubejs-linter"
54
54
  },
55
- "gitHead": "345f2456c55e89dccadbabda54349943aa7f934e"
55
+ "gitHead": "9740f8eeacc71eab343162801d7da9085aadedea"
56
56
  }