@cubejs-backend/mssql-driver 0.30.61 → 0.30.69

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.69](https://github.com/cube-js/cube.js/compare/v0.30.68...v0.30.69) (2022-09-13)
7
+
8
+
9
+ ### Features
10
+
11
+ * **base-driver:** Split BaseDriver to @cubejs-backend/base-driver ([#5283](https://github.com/cube-js/cube.js/issues/5283)) ([ca7f9d2](https://github.com/cube-js/cube.js/commit/ca7f9d280c3518e012683c23b82175ec1f96d2a8))
12
+
13
+
14
+
15
+
16
+
17
+ ## [0.30.66](https://github.com/cube-js/cube.js/compare/v0.30.65...v0.30.66) (2022-09-08)
18
+
19
+
20
+ ### Bug Fixes
21
+
22
+ * driver's constructor parameters initializers ([#5258](https://github.com/cube-js/cube.js/issues/5258)) ([08324a5](https://github.com/cube-js/cube.js/commit/08324a50c29d8f1dad138bfdc1396038cd7ae462))
23
+
24
+
25
+
26
+
27
+
28
+ ## [0.30.63](https://github.com/cube-js/cube.js/compare/v0.30.62...v0.30.63) (2022-09-05)
29
+
30
+ **Note:** Version bump only for package @cubejs-backend/mssql-driver
31
+
32
+
33
+
34
+
35
+
6
36
  ## [0.30.61](https://github.com/cube-js/cube.js/compare/v0.30.60...v0.30.61) (2022-09-01)
7
37
 
8
38
  **Note:** Version bump only for package @cubejs-backend/mssql-driver
@@ -1,5 +1,5 @@
1
1
  const sql = require('mssql');
2
- const { BaseDriver } = require('@cubejs-backend/query-orchestrator');
2
+ const { BaseDriver } = require('@cubejs-backend/base-driver');
3
3
 
4
4
  const GenericTypeToMSSql = {
5
5
  string: 'nvarchar(max)',
@@ -21,7 +21,7 @@ class MSSqlDriver extends BaseDriver {
21
21
  return 2;
22
22
  }
23
23
 
24
- constructor(config) {
24
+ constructor(config = {}) {
25
25
  super();
26
26
  this.config = {
27
27
  server: process.env.CUBEJS_DB_HOST,
package/package.json CHANGED
@@ -2,7 +2,7 @@
2
2
  "name": "@cubejs-backend/mssql-driver",
3
3
  "description": "Cube.js MS SQL database driver",
4
4
  "author": "Cube Dev, Inc.",
5
- "version": "0.30.61",
5
+ "version": "0.30.69",
6
6
  "repository": {
7
7
  "type": "git",
8
8
  "url": "https://github.com/cube-js/cube.js.git",
@@ -13,12 +13,12 @@
13
13
  },
14
14
  "main": "driver/MSSqlDriver.js",
15
15
  "dependencies": {
16
- "@cubejs-backend/query-orchestrator": "^0.30.61",
16
+ "@cubejs-backend/base-driver": "^0.30.69",
17
17
  "mssql": "^6.1.0"
18
18
  },
19
19
  "license": "Apache-2.0",
20
20
  "publishConfig": {
21
21
  "access": "public"
22
22
  },
23
- "gitHead": "a1ab332dcc72449b8e8c9a1622e1fc018197f9f1"
23
+ "gitHead": "f37e23c24d10ea8ae9b5aa8bf3a8823ac299aab4"
24
24
  }